本文整理匯總了TypeScript中electron.app.setBadgeCount方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript app.setBadgeCount方法的具體用法?TypeScript app.setBadgeCount怎麽用?TypeScript app.setBadgeCount使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類electron.app
的用法示例。
在下文中一共展示了app.setBadgeCount方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: updateBadge
function updateBadge(conversations: Conversation[]): void {
// Ignore `Sindre messaged you` blinking
if (!Array.isArray(conversations)) {
return;
}
const messageCount = conversations.filter(({unread}) => unread).length;
if (is.macos || is.linux) {
if (config.get('showUnreadBadge')) {
app.setBadgeCount(messageCount);
}
if (is.macos && config.get('bounceDockOnMessage') && prevMessageCount !== messageCount) {
app.dock.bounce('informational');
prevMessageCount = messageCount;
}
}
if (is.linux || is.windows) {
if (config.get('showUnreadBadge')) {
tray.setBadge(messageCount > 0);
}
if (config.get('flashWindowOnMessage')) {
mainWindow.flashFrame(messageCount !== 0);
}
}
if (is.windows) {
if (config.get('showUnreadBadge')) {
if (messageCount === 0) {
mainWindow.setOverlayIcon(null, '');
} else {
// Delegate drawing of overlay icon to renderer process
mainWindow.webContents.send('render-overlay-icon', messageCount);
}
}
}
}
示例2: after
after(() => {
// Remove the badge.
app.setBadgeCount(0)
})
示例3: beforeEach
beforeEach(() => { returnValue = app.setBadgeCount(expectedBadgeCount) })
示例4: updateBadgeCount
private updateBadgeCount(count?: number) {
if (typeof count !== 'undefined') {
app.setBadgeCount(count);
this.lastUnreadCount = count;
}
}