当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript app.setBadgeCount方法代码示例

本文整理汇总了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);
			}
		}
	}
}
开发者ID:kusamakura,项目名称:caprine,代码行数:40,代码来源:index.ts

示例2: after

 after(() => {
   // Remove the badge.
   app.setBadgeCount(0)
 })
开发者ID:malept,项目名称:electron,代码行数:4,代码来源:api-app-spec.ts

示例3: beforeEach

 beforeEach(() => { returnValue = app.setBadgeCount(expectedBadgeCount) })
开发者ID:malept,项目名称:electron,代码行数:1,代码来源:api-app-spec.ts

示例4: updateBadgeCount

 private updateBadgeCount(count?: number) {
   if (typeof count !== 'undefined') {
     app.setBadgeCount(count);
     this.lastUnreadCount = count;
   }
 }
开发者ID:wireapp,项目名称:wire-desktop,代码行数:6,代码来源:TrayHandler.ts


注:本文中的electron.app.setBadgeCount方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。