mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
516 lines
15 KiB
TypeScript
516 lines
15 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { CancellationToken } from 'vs/base/common/cancellation';
|
|
import { Emitter, Event } from 'vs/base/common/event';
|
|
import { Disposable, DisposableStore, dispose, IDisposable } from 'vs/base/common/lifecycle';
|
|
import { keys } from 'vs/base/common/map';
|
|
import { URI, UriComponents } from 'vs/base/common/uri';
|
|
import { generateUuid } from 'vs/base/common/uuid';
|
|
import { IRange } from 'vs/editor/common/core/range';
|
|
import * as modes from 'vs/editor/common/modes';
|
|
import { ExtensionIdentifier } from 'vs/platform/extensions/common/extensions';
|
|
import { Registry } from 'vs/platform/registry/common/platform';
|
|
import { extHostNamedCustomer } from 'vs/workbench/api/common/extHostCustomers';
|
|
import { Extensions as PanelExtensions, PanelDescriptor, PanelRegistry } from 'vs/workbench/browser/panel';
|
|
import { ICommentInfo, ICommentService } from 'vs/workbench/contrib/comments/browser/commentService';
|
|
import { CommentsPanel, COMMENTS_PANEL_ID, COMMENTS_PANEL_TITLE } from 'vs/workbench/contrib/comments/browser/commentsPanel';
|
|
import { IPanelService } from 'vs/workbench/services/panel/common/panelService';
|
|
import { CommentProviderFeatures, ExtHostCommentsShape, ExtHostContext, IExtHostContext, MainContext, MainThreadCommentsShape } from '../common/extHost.protocol';
|
|
|
|
|
|
export class MainThreadCommentThread implements modes.CommentThread {
|
|
private _input?: modes.CommentInput;
|
|
get input(): modes.CommentInput | undefined {
|
|
return this._input;
|
|
}
|
|
|
|
set input(value: modes.CommentInput | undefined) {
|
|
this._input = value;
|
|
this._onDidChangeInput.fire(value);
|
|
}
|
|
|
|
private _onDidChangeInput = new Emitter<modes.CommentInput | undefined>();
|
|
get onDidChangeInput(): Event<modes.CommentInput | undefined> { return this._onDidChangeInput.event; }
|
|
|
|
private _label: string;
|
|
|
|
get label(): string {
|
|
return this._label;
|
|
}
|
|
|
|
set label(label: string) {
|
|
this._label = label;
|
|
this._onDidChangeLabel.fire(this._label);
|
|
}
|
|
|
|
private _contextValue: string | undefined;
|
|
|
|
get contextValue(): string | undefined {
|
|
return this._contextValue;
|
|
}
|
|
|
|
set contextValue(context: string | undefined) {
|
|
this._contextValue = context;
|
|
}
|
|
|
|
private _onDidChangeLabel = new Emitter<string>();
|
|
readonly onDidChangeLabel: Event<string> = this._onDidChangeLabel.event;
|
|
|
|
private _comments: modes.Comment[] | undefined;
|
|
|
|
public get comments(): modes.Comment[] | undefined {
|
|
return this._comments;
|
|
}
|
|
|
|
public set comments(newComments: modes.Comment[] | undefined) {
|
|
this._comments = newComments;
|
|
this._onDidChangeComments.fire(this._comments);
|
|
}
|
|
|
|
private _onDidChangeComments = new Emitter<modes.Comment[] | undefined>();
|
|
get onDidChangeComments(): Event<modes.Comment[] | undefined> { return this._onDidChangeComments.event; }
|
|
|
|
set range(range: IRange) {
|
|
this._range = range;
|
|
this._onDidChangeRange.fire(this._range);
|
|
}
|
|
|
|
get range(): IRange {
|
|
return this._range;
|
|
}
|
|
|
|
private _onDidChangeRange = new Emitter<IRange>();
|
|
public onDidChangeRange = this._onDidChangeRange.event;
|
|
|
|
private _collapsibleState: modes.CommentThreadCollapsibleState | undefined;
|
|
get collapsibleState() {
|
|
return this._collapsibleState;
|
|
}
|
|
|
|
set collapsibleState(newState: modes.CommentThreadCollapsibleState | undefined) {
|
|
this._collapsibleState = newState;
|
|
this._onDidChangeCollasibleState.fire(this._collapsibleState);
|
|
}
|
|
|
|
private _onDidChangeCollasibleState = new Emitter<modes.CommentThreadCollapsibleState | undefined>();
|
|
public onDidChangeCollasibleState = this._onDidChangeCollasibleState.event;
|
|
|
|
private _isDisposed: boolean;
|
|
|
|
get isDisposed(): boolean {
|
|
return this._isDisposed;
|
|
}
|
|
|
|
constructor(
|
|
public commentThreadHandle: number,
|
|
public controllerHandle: number,
|
|
public extensionId: string,
|
|
public threadId: string,
|
|
public resource: string,
|
|
private _range: IRange
|
|
) {
|
|
this._isDisposed = false;
|
|
}
|
|
|
|
batchUpdate(
|
|
range: IRange,
|
|
label: string,
|
|
contextValue: string | undefined,
|
|
comments: modes.Comment[],
|
|
collapsibleState: modes.CommentThreadCollapsibleState) {
|
|
this._range = range;
|
|
this._label = label;
|
|
this._contextValue = contextValue;
|
|
this._comments = comments;
|
|
this._collapsibleState = collapsibleState;
|
|
}
|
|
|
|
dispose() {
|
|
this._isDisposed = true;
|
|
this._onDidChangeCollasibleState.dispose();
|
|
this._onDidChangeComments.dispose();
|
|
this._onDidChangeInput.dispose();
|
|
this._onDidChangeLabel.dispose();
|
|
this._onDidChangeRange.dispose();
|
|
}
|
|
|
|
toJSON(): any {
|
|
return {
|
|
$mid: 7,
|
|
commentControlHandle: this.controllerHandle,
|
|
commentThreadHandle: this.commentThreadHandle,
|
|
};
|
|
}
|
|
}
|
|
|
|
export class MainThreadCommentController {
|
|
get handle(): number {
|
|
return this._handle;
|
|
}
|
|
|
|
get id(): string {
|
|
return this._id;
|
|
}
|
|
|
|
get contextValue(): string {
|
|
return this._id;
|
|
}
|
|
|
|
get proxy(): ExtHostCommentsShape {
|
|
return this._proxy;
|
|
}
|
|
|
|
get label(): string {
|
|
return this._label;
|
|
}
|
|
|
|
private _reactions: modes.CommentReaction[] | undefined;
|
|
|
|
get reactions() {
|
|
return this._reactions;
|
|
}
|
|
|
|
set reactions(reactions: modes.CommentReaction[] | undefined) {
|
|
this._reactions = reactions;
|
|
}
|
|
|
|
private readonly _threads: Map<number, MainThreadCommentThread> = new Map<number, MainThreadCommentThread>();
|
|
public activeCommentThread?: MainThreadCommentThread;
|
|
|
|
get features(): CommentProviderFeatures {
|
|
return this._features;
|
|
}
|
|
|
|
constructor(
|
|
private readonly _proxy: ExtHostCommentsShape,
|
|
private readonly _commentService: ICommentService,
|
|
private readonly _handle: number,
|
|
private readonly _uniqueId: string,
|
|
private readonly _id: string,
|
|
private readonly _label: string,
|
|
private _features: CommentProviderFeatures
|
|
) { }
|
|
|
|
updateFeatures(features: CommentProviderFeatures) {
|
|
this._features = features;
|
|
}
|
|
|
|
createCommentThread(extensionId: string,
|
|
commentThreadHandle: number,
|
|
threadId: string,
|
|
resource: UriComponents,
|
|
range: IRange,
|
|
): modes.CommentThread {
|
|
let thread = new MainThreadCommentThread(
|
|
commentThreadHandle,
|
|
this.handle,
|
|
extensionId,
|
|
threadId,
|
|
URI.revive(resource).toString(),
|
|
range
|
|
);
|
|
|
|
this._threads.set(commentThreadHandle, thread);
|
|
|
|
this._commentService.updateComments(this._uniqueId, {
|
|
added: [thread],
|
|
removed: [],
|
|
changed: []
|
|
});
|
|
|
|
return thread;
|
|
}
|
|
|
|
updateCommentThread(commentThreadHandle: number,
|
|
threadId: string,
|
|
resource: UriComponents,
|
|
range: IRange,
|
|
label: string,
|
|
contextValue: string | undefined,
|
|
comments: modes.Comment[],
|
|
collapsibleState: modes.CommentThreadCollapsibleState): void {
|
|
let thread = this.getKnownThread(commentThreadHandle);
|
|
thread.batchUpdate(range, label, contextValue, comments, collapsibleState);
|
|
|
|
this._commentService.updateComments(this._uniqueId, {
|
|
added: [],
|
|
removed: [],
|
|
changed: [thread]
|
|
});
|
|
}
|
|
|
|
deleteCommentThread(commentThreadHandle: number) {
|
|
let thread = this.getKnownThread(commentThreadHandle);
|
|
this._threads.delete(commentThreadHandle);
|
|
|
|
this._commentService.updateComments(this._uniqueId, {
|
|
added: [],
|
|
removed: [thread],
|
|
changed: []
|
|
});
|
|
|
|
thread.dispose();
|
|
}
|
|
|
|
deleteCommentThreadMain(commentThreadId: string) {
|
|
this._threads.forEach(thread => {
|
|
if (thread.threadId === commentThreadId) {
|
|
this._proxy.$deleteCommentThread(this._handle, thread.commentThreadHandle);
|
|
}
|
|
});
|
|
}
|
|
|
|
updateInput(input: string) {
|
|
let thread = this.activeCommentThread;
|
|
|
|
if (thread && thread.input) {
|
|
let commentInput = thread.input;
|
|
commentInput.value = input;
|
|
thread.input = commentInput;
|
|
}
|
|
}
|
|
|
|
private getKnownThread(commentThreadHandle: number): MainThreadCommentThread {
|
|
const thread = this._threads.get(commentThreadHandle);
|
|
if (!thread) {
|
|
throw new Error('unknown thread');
|
|
}
|
|
return thread;
|
|
}
|
|
|
|
async getDocumentComments(resource: URI, token: CancellationToken) {
|
|
let ret: modes.CommentThread[] = [];
|
|
for (let thread of keys(this._threads)) {
|
|
const commentThread = this._threads.get(thread)!;
|
|
if (commentThread.resource === resource.toString()) {
|
|
ret.push(commentThread);
|
|
}
|
|
}
|
|
|
|
let commentingRanges = await this._proxy.$provideCommentingRanges(this.handle, resource, token);
|
|
|
|
return <ICommentInfo>{
|
|
owner: this._uniqueId,
|
|
label: this.label,
|
|
threads: ret,
|
|
commentingRanges: {
|
|
resource: resource,
|
|
ranges: commentingRanges || []
|
|
}
|
|
};
|
|
}
|
|
|
|
async getCommentingRanges(resource: URI, token: CancellationToken): Promise<IRange[]> {
|
|
let commentingRanges = await this._proxy.$provideCommentingRanges(this.handle, resource, token);
|
|
return commentingRanges || [];
|
|
}
|
|
|
|
async toggleReaction(uri: URI, thread: modes.CommentThread, comment: modes.Comment, reaction: modes.CommentReaction, token: CancellationToken): Promise<void> {
|
|
return this._proxy.$toggleReaction(this._handle, thread.commentThreadHandle, uri, comment, reaction);
|
|
}
|
|
|
|
getAllComments(): MainThreadCommentThread[] {
|
|
let ret: MainThreadCommentThread[] = [];
|
|
for (let thread of keys(this._threads)) {
|
|
ret.push(this._threads.get(thread)!);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
createCommentThreadTemplate(resource: UriComponents, range: IRange): void {
|
|
this._proxy.$createCommentThreadTemplate(this.handle, resource, range);
|
|
}
|
|
|
|
async updateCommentThreadTemplate(threadHandle: number, range: IRange) {
|
|
await this._proxy.$updateCommentThreadTemplate(this.handle, threadHandle, range);
|
|
}
|
|
|
|
toJSON(): any {
|
|
return {
|
|
$mid: 6,
|
|
handle: this.handle
|
|
};
|
|
}
|
|
}
|
|
|
|
@extHostNamedCustomer(MainContext.MainThreadComments)
|
|
export class MainThreadComments extends Disposable implements MainThreadCommentsShape {
|
|
private readonly _proxy: ExtHostCommentsShape;
|
|
private _documentProviders = new Map<number, IDisposable>();
|
|
private _workspaceProviders = new Map<number, IDisposable>();
|
|
private _handlers = new Map<number, string>();
|
|
private _commentControllers = new Map<number, MainThreadCommentController>();
|
|
|
|
private _activeCommentThread?: MainThreadCommentThread;
|
|
private readonly _activeCommentThreadDisposables = this._register(new DisposableStore());
|
|
|
|
private _openPanelListener: IDisposable | null;
|
|
|
|
|
|
constructor(
|
|
extHostContext: IExtHostContext,
|
|
@ICommentService private readonly _commentService: ICommentService,
|
|
@IPanelService private readonly _panelService: IPanelService
|
|
) {
|
|
super();
|
|
this._proxy = extHostContext.getProxy(ExtHostContext.ExtHostComments);
|
|
|
|
this._register(this._commentService.onDidChangeActiveCommentThread(async thread => {
|
|
let handle = (thread as MainThreadCommentThread).controllerHandle;
|
|
let controller = this._commentControllers.get(handle);
|
|
|
|
if (!controller) {
|
|
return;
|
|
}
|
|
|
|
this._activeCommentThreadDisposables.clear();
|
|
this._activeCommentThread = thread as MainThreadCommentThread;
|
|
controller.activeCommentThread = this._activeCommentThread;
|
|
}));
|
|
}
|
|
|
|
$registerCommentController(handle: number, id: string, label: string): void {
|
|
const providerId = generateUuid();
|
|
this._handlers.set(handle, providerId);
|
|
|
|
const provider = new MainThreadCommentController(this._proxy, this._commentService, handle, providerId, id, label, {});
|
|
this._commentService.registerCommentController(providerId, provider);
|
|
this._commentControllers.set(handle, provider);
|
|
|
|
const commentsPanelAlreadyConstructed = this._panelService.getPanels().some(panel => panel.id === COMMENTS_PANEL_ID);
|
|
if (!commentsPanelAlreadyConstructed) {
|
|
this.registerPanel(commentsPanelAlreadyConstructed);
|
|
this.registerOpenPanelListener(commentsPanelAlreadyConstructed);
|
|
}
|
|
this._commentService.setWorkspaceComments(String(handle), []);
|
|
}
|
|
|
|
$unregisterCommentController(handle: number): void {
|
|
const providerId = this._handlers.get(handle);
|
|
if (typeof providerId !== 'string') {
|
|
throw new Error('unknown handler');
|
|
}
|
|
this._commentService.unregisterCommentController(providerId);
|
|
this._handlers.delete(handle);
|
|
this._commentControllers.delete(handle);
|
|
}
|
|
|
|
$updateCommentControllerFeatures(handle: number, features: CommentProviderFeatures): void {
|
|
let provider = this._commentControllers.get(handle);
|
|
|
|
if (!provider) {
|
|
return undefined;
|
|
}
|
|
|
|
provider.updateFeatures(features);
|
|
}
|
|
|
|
$createCommentThread(handle: number,
|
|
commentThreadHandle: number,
|
|
threadId: string,
|
|
resource: UriComponents,
|
|
range: IRange,
|
|
extensionId: ExtensionIdentifier
|
|
): modes.CommentThread | undefined {
|
|
let provider = this._commentControllers.get(handle);
|
|
|
|
if (!provider) {
|
|
return undefined;
|
|
}
|
|
|
|
return provider.createCommentThread(extensionId.value, commentThreadHandle, threadId, resource, range);
|
|
}
|
|
|
|
$updateCommentThread(handle: number,
|
|
commentThreadHandle: number,
|
|
threadId: string,
|
|
resource: UriComponents,
|
|
range: IRange,
|
|
label: string,
|
|
contextValue: string | undefined,
|
|
comments: modes.Comment[],
|
|
collapsibleState: modes.CommentThreadCollapsibleState): void {
|
|
let provider = this._commentControllers.get(handle);
|
|
|
|
if (!provider) {
|
|
return undefined;
|
|
}
|
|
|
|
return provider.updateCommentThread(commentThreadHandle, threadId, resource, range, label, contextValue, comments, collapsibleState);
|
|
}
|
|
|
|
$deleteCommentThread(handle: number, commentThreadHandle: number) {
|
|
let provider = this._commentControllers.get(handle);
|
|
|
|
if (!provider) {
|
|
return;
|
|
}
|
|
|
|
return provider.deleteCommentThread(commentThreadHandle);
|
|
}
|
|
|
|
private registerPanel(commentsPanelAlreadyConstructed: boolean) {
|
|
if (!commentsPanelAlreadyConstructed) {
|
|
Registry.as<PanelRegistry>(PanelExtensions.Panels).registerPanel(new PanelDescriptor(
|
|
CommentsPanel,
|
|
COMMENTS_PANEL_ID,
|
|
COMMENTS_PANEL_TITLE,
|
|
'commentsPanel',
|
|
10
|
|
));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* If the comments panel has never been opened, the constructor for it has not yet run so it has
|
|
* no listeners for comment threads being set or updated. Listen for the panel opening for the
|
|
* first time and send it comments then.
|
|
*/
|
|
private registerOpenPanelListener(commentsPanelAlreadyConstructed: boolean) {
|
|
if (!commentsPanelAlreadyConstructed && !this._openPanelListener) {
|
|
this._openPanelListener = this._panelService.onDidPanelOpen(e => {
|
|
if (e.panel.getId() === COMMENTS_PANEL_ID) {
|
|
keys(this._commentControllers).forEach(handle => {
|
|
let threads = this._commentControllers.get(handle)!.getAllComments();
|
|
|
|
if (threads.length) {
|
|
const providerId = this.getHandler(handle);
|
|
this._commentService.setWorkspaceComments(providerId, threads);
|
|
}
|
|
});
|
|
|
|
if (this._openPanelListener) {
|
|
this._openPanelListener.dispose();
|
|
this._openPanelListener = null;
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
private getHandler(handle: number) {
|
|
if (!this._handlers.has(handle)) {
|
|
throw new Error('Unknown handler');
|
|
}
|
|
return this._handlers.get(handle)!;
|
|
}
|
|
|
|
$onDidCommentThreadsChange(handle: number, event: modes.CommentThreadChangedEvent) {
|
|
// notify comment service
|
|
const providerId = this.getHandler(handle);
|
|
this._commentService.updateComments(providerId, event);
|
|
}
|
|
|
|
dispose(): void {
|
|
super.dispose();
|
|
this._workspaceProviders.forEach(value => dispose(value));
|
|
this._workspaceProviders.clear();
|
|
this._documentProviders.forEach(value => dispose(value));
|
|
this._documentProviders.clear();
|
|
}
|
|
}
|