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

'use strict';

import { TPromise } from 'vs/base/common/winjs.base';
J
Joao Moreno 已提交
9
import { IChannel } from 'vs/base/parts/ipc/node/ipc';
10 11
import { IDialogService, IConfirmation, IConfirmationResult } from 'vs/platform/dialogs/common/dialogs';
import Severity from 'vs/base/common/severity';
J
Joao Moreno 已提交
12
import { Event } from 'vs/base/common/event';
13 14 15 16 17 18 19 20 21

export interface IDialogChannel extends IChannel {
	call(command: 'show'): TPromise<number>;
	call(command: 'confirm'): TPromise<IConfirmationResult>;
	call(command: string, arg?: any): TPromise<any>;
}

export class DialogChannel implements IDialogChannel {

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

	listen<T>(event: string): Event<T> {
		throw new Error('No event found');
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
	}

	call(command: string, args?: any[]): TPromise<any> {
		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> {
		return this.channel.call('show', [severity, message, options]);
	}

	confirm(confirmation: IConfirmation): TPromise<IConfirmationResult> {
		return this.channel.call('confirm', [confirmation]);
	}
}