本文整理匯總了TypeScript中vs/platform/message/common/message.IMessageService類的典型用法代碼示例。如果您正苦於以下問題:TypeScript IMessageService類的具體用法?TypeScript IMessageService怎麽用?TypeScript IMessageService使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了IMessageService類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: revealResourcesInOS
function revealResourcesInOS(resources: URI[], windowsService: IWindowsService, messageService: IMessageService): void {
if (resources.length) {
sequence(resources.map(r => () => windowsService.showItemInFolder(paths.normalize(r.fsPath, true))));
} else {
messageService.show(severity.Info, nls.localize('openFileToReveal', "Open a file first to reveal"));
}
}
示例2: resourcesToClipboard
function resourcesToClipboard(resources: URI[], clipboardService: IClipboardService, messageService: IMessageService): void {
if (resources.length) {
const lineDelimiter = isWindows ? '\r\n' : '\n';
const text = resources.map(r => r.scheme === Schemas.file ? labels.getPathLabel(r) : r.toString()).join(lineDelimiter);
clipboardService.writeText(text);
} else {
messageService.show(severity.Info, nls.localize('openFileToCopy', "Open a file first to copy its path"));
}
}
示例3:
this.toDispose.push(this.actionRunner.addListener(EventType.RUN, (e: any) => {
if (hideViewOnRun) {
this.contextViewService.hideContextView(false);
}
hideViewOnRun = false;
if (e.error && this.messageService) {
this.messageService.show(Severity.Error, e.error);
}
}));