本文整理汇总了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);
});