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


TypeScript NotificationsModel.notify方法代码示例

本文整理汇总了TypeScript中vs/workbench/common/notifications.NotificationsModel.notify方法的典型用法代码示例。如果您正苦于以下问题:TypeScript NotificationsModel.notify方法的具体用法?TypeScript NotificationsModel.notify怎么用?TypeScript NotificationsModel.notify使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在vs/workbench/common/notifications.NotificationsModel的用法示例。


在下文中一共展示了NotificationsModel.notify方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: test

	test('Model', () => {
		const model = new NotificationsModel();

		let lastEvent: INotificationChangeEvent;
		model.onDidNotificationChange(e => {
			lastEvent = e;
		});

		let item1: INotification = { severity: Severity.Error, message: 'Error Message', actions: { primary: [new Action('id', 'label')] } };
		let item2: INotification = { severity: Severity.Warning, message: 'Warning Message', source: 'Some Source' };
		let item2Duplicate: INotification = { severity: Severity.Warning, message: 'Warning Message', source: 'Some Source' };
		let item3: INotification = { severity: Severity.Info, message: 'Info Message' };

		let item1Handle = model.notify(item1);
		assert.equal(lastEvent.item.severity, item1.severity);
		assert.equal(lastEvent.item.message.value, item1.message);
		assert.equal(lastEvent.index, 0);
		assert.equal(lastEvent.kind, NotificationChangeType.ADD);

		let item2Handle = model.notify(item2);
		assert.equal(lastEvent.item.severity, item2.severity);
		assert.equal(lastEvent.item.message.value, item2.message);
		assert.equal(lastEvent.index, 0);
		assert.equal(lastEvent.kind, NotificationChangeType.ADD);

		model.notify(item3);
		assert.equal(lastEvent.item.severity, item3.severity);
		assert.equal(lastEvent.item.message.value, item3.message);
		assert.equal(lastEvent.index, 0);
		assert.equal(lastEvent.kind, NotificationChangeType.ADD);

		assert.equal(model.notifications.length, 3);

		let called = 0;
		item1Handle.onDidClose(() => {
			called++;
		});

		item1Handle.close();
		assert.equal(called, 1);
		assert.equal(model.notifications.length, 2);
		assert.equal(lastEvent.item.severity, item1.severity);
		assert.equal(lastEvent.item.message.value, item1.message);
		assert.equal(lastEvent.index, 2);
		assert.equal(lastEvent.kind, NotificationChangeType.REMOVE);

		model.notify(item2Duplicate);
		assert.equal(model.notifications.length, 2);
		assert.equal(lastEvent.item.severity, item2Duplicate.severity);
		assert.equal(lastEvent.item.message.value, item2Duplicate.message);
		assert.equal(lastEvent.index, 0);
		assert.equal(lastEvent.kind, NotificationChangeType.ADD);

		item2Handle.close();
		assert.equal(model.notifications.length, 1);
		assert.equal(lastEvent.item.severity, item2Duplicate.severity);
		assert.equal(lastEvent.item.message.value, item2Duplicate.message);
		assert.equal(lastEvent.index, 0);
		assert.equal(lastEvent.kind, NotificationChangeType.REMOVE);

		model.notifications[0].expand();
		assert.equal(lastEvent.item.severity, item3.severity);
		assert.equal(lastEvent.item.message.value, item3.message);
		assert.equal(lastEvent.index, 0);
		assert.equal(lastEvent.kind, NotificationChangeType.CHANGE);
	});
开发者ID:AllureFer,项目名称:vscode,代码行数:66,代码来源:notifications.test.ts


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