dialogIpc.ts 1.8 KB
Newer Older
1 2 3 4 5 6
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

import { TPromise } from 'vs/base/common/winjs.base';
J
Joao Moreno 已提交
7
import { IChannel } from 'vs/base/parts/ipc/node/ipc';
8 9
import { IDialogService, IConfirmation, IConfirmationResult } from 'vs/platform/dialogs/common/dialogs';
import Severity from 'vs/base/common/severity';
J
Joao Moreno 已提交
10
import { Event } from 'vs/base/common/event';
11 12

export interface IDialogChannel extends IChannel {
J
Joao Moreno 已提交
13 14 15
	call(command: 'show'): Thenable<number>;
	call(command: 'confirm'): Thenable<IConfirmationResult>;
	call(command: string, arg?: any): Thenable<any>;
16 17 18 19
}

export class DialogChannel implements IDialogChannel {

J
Joao Moreno 已提交
20 21 22 23
	constructor(@IDialogService private dialogService: IDialogService) { }

	listen<T>(event: string): Event<T> {
		throw new Error('No event found');
24 25
	}

J
Joao Moreno 已提交
26
	call(command: string, args?: any[]): Thenable<any> {
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
		switch (command) {
			case 'show': return this.dialogService.show(args[0], args[1], args[2]);
			case 'confirm': return this.dialogService.confirm(args[0]);
		}
		return TPromise.wrapError(new Error('invalid command'));
	}
}

export class DialogChannelClient implements IDialogService {

	_serviceBrand: any;

	constructor(private channel: IDialogChannel) { }

	show(severity: Severity, message: string, options: string[]): TPromise<number> {
J
Joao Moreno 已提交
42
		return TPromise.wrap(this.channel.call('show', [severity, message, options]));
43 44 45
	}

	confirm(confirmation: IConfirmation): TPromise<IConfirmationResult> {
J
Joao Moreno 已提交
46
		return TPromise.wrap(this.channel.call('confirm', [confirmation]));
47 48
	}
}