mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-26 01:25:38 -05:00
900 lines
32 KiB
TypeScript
900 lines
32 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 { Event, Emitter } from 'vs/base/common/event';
|
|
import { IDisposable, dispose, Disposable, toDisposable } from 'vs/base/common/lifecycle';
|
|
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
|
|
import { IAction, ActionRunner, Action } from 'vs/base/common/actions';
|
|
import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding';
|
|
import { IContextMenuService } from 'vs/platform/contextview/browser/contextView';
|
|
import { IMenuService, MenuId, MenuItemAction } from 'vs/platform/actions/common/actions';
|
|
import { IContextKeyService } from 'vs/platform/contextkey/common/contextkey';
|
|
import { TreeItemCollapsibleState, ITreeViewDataProvider, TreeViewItemHandleArg, ViewContainer, ITreeItemLabel } from 'vs/workbench/common/views';
|
|
import { FileIconThemableWorkbenchTree } from 'vs/workbench/browser/parts/views/viewsViewlet';
|
|
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
|
|
import { IProgressService2 } from 'vs/platform/progress/common/progress';
|
|
import { IExtensionService } from 'vs/workbench/services/extensions/common/extensions';
|
|
import { IWorkbenchThemeService } from 'vs/workbench/services/themes/common/workbenchThemeService';
|
|
import { ICommandService } from 'vs/platform/commands/common/commands';
|
|
import * as DOM from 'vs/base/browser/dom';
|
|
import { IDataSource, ITree, IRenderer, ContextMenuEvent } from 'vs/base/parts/tree/browser/tree';
|
|
import { ResourceLabel } from 'vs/workbench/browser/labels';
|
|
import { ActionBar, IActionViewItemProvider, ActionViewItem } from 'vs/base/browser/ui/actionbar/actionbar';
|
|
import { URI } from 'vs/base/common/uri';
|
|
import { basename } from 'vs/base/common/path';
|
|
import { LIGHT, FileThemeIcon, FolderThemeIcon, registerThemingParticipant } from 'vs/platform/theme/common/themeService';
|
|
import { FileKind } from 'vs/platform/files/common/files';
|
|
import { WorkbenchTreeController } from 'vs/platform/list/browser/listService';
|
|
import { IMouseEvent } from 'vs/base/browser/mouseEvent';
|
|
import { localize } from 'vs/nls';
|
|
import { timeout } from 'vs/base/common/async';
|
|
import { CollapseAllAction } from 'vs/base/parts/tree/browser/treeDefaults';
|
|
import { editorFindMatchHighlight, editorFindMatchHighlightBorder, textLinkForeground, textCodeBlockBackground, focusBorder } from 'vs/platform/theme/common/colorRegistry';
|
|
import { IMarkdownString } from 'vs/base/common/htmlContent';
|
|
import { isString } from 'vs/base/common/types';
|
|
import { renderMarkdown, RenderOptions } from 'vs/base/browser/htmlContentRenderer';
|
|
import { onUnexpectedError } from 'vs/base/common/errors';
|
|
import { IOpenerService } from 'vs/platform/opener/common/opener';
|
|
import { IMarkdownRenderResult } from 'vs/editor/contrib/markdown/markdownRenderer';
|
|
import { ILabelService } from 'vs/platform/label/common/label';
|
|
import { dirname } from 'vs/base/common/resources';
|
|
|
|
import { ITreeItem, ITreeView } from 'sql/workbench/common/views';
|
|
import { IOEShimService } from 'sql/workbench/parts/objectExplorer/common/objectExplorerViewTreeShim';
|
|
import { equalsIgnoreCase } from 'vs/base/common/strings';
|
|
import { NodeContextKey } from 'sql/workbench/parts/dataExplorer/common/nodeContext';
|
|
import { fillInActionBarActions, fillInContextMenuActions, ContextAwareMenuEntryActionViewItem } from 'vs/platform/actions/browser/menuEntryActionViewItem';
|
|
|
|
class TitleMenus implements IDisposable {
|
|
|
|
private disposables: IDisposable[] = [];
|
|
private titleDisposable: IDisposable = Disposable.None;
|
|
private titleActions: IAction[] = [];
|
|
private titleSecondaryActions: IAction[] = [];
|
|
|
|
private _onDidChangeTitle = new Emitter<void>();
|
|
get onDidChangeTitle(): Event<void> { return this._onDidChangeTitle.event; }
|
|
|
|
constructor(
|
|
id: string,
|
|
@IContextKeyService private contextKeyService: IContextKeyService,
|
|
@IMenuService private menuService: IMenuService,
|
|
) {
|
|
if (this.titleDisposable) {
|
|
this.titleDisposable.dispose();
|
|
this.titleDisposable = Disposable.None;
|
|
}
|
|
|
|
const _contextKeyService = this.contextKeyService.createScoped();
|
|
_contextKeyService.createKey('view', id);
|
|
|
|
const titleMenu = this.menuService.createMenu(MenuId.ViewTitle, _contextKeyService);
|
|
const updateActions = () => {
|
|
this.titleActions = [];
|
|
this.titleSecondaryActions = [];
|
|
fillInActionBarActions(titleMenu, undefined, { primary: this.titleActions, secondary: this.titleSecondaryActions });
|
|
this._onDidChangeTitle.fire();
|
|
};
|
|
|
|
const listener = titleMenu.onDidChange(updateActions);
|
|
updateActions();
|
|
|
|
this.titleDisposable = toDisposable(() => {
|
|
listener.dispose();
|
|
titleMenu.dispose();
|
|
_contextKeyService.dispose();
|
|
this.titleActions = [];
|
|
this.titleSecondaryActions = [];
|
|
});
|
|
}
|
|
|
|
getTitleActions(): IAction[] {
|
|
return this.titleActions;
|
|
}
|
|
|
|
getTitleSecondaryActions(): IAction[] {
|
|
return this.titleSecondaryActions;
|
|
}
|
|
|
|
dispose(): void {
|
|
this.disposables = dispose(this.disposables);
|
|
}
|
|
}
|
|
|
|
class Root implements ITreeItem {
|
|
label = { label: 'root' };
|
|
handle = '0';
|
|
parentHandle = null;
|
|
collapsibleState = TreeItemCollapsibleState.Expanded;
|
|
children = void 0;
|
|
}
|
|
|
|
const noDataProviderMessage = localize('no-dataprovider', "There is no data provider registered that can provide view data.");
|
|
|
|
export class CustomTreeView extends Disposable implements ITreeView {
|
|
|
|
private isVisible: boolean = false;
|
|
private activated: boolean = false;
|
|
private _hasIconForParentNode = false;
|
|
private _hasIconForLeafNode = false;
|
|
private _showCollapseAllAction = false;
|
|
|
|
private focused: boolean = false;
|
|
private domNode: HTMLElement;
|
|
private treeContainer: HTMLElement;
|
|
private _messageValue: string | IMarkdownString | undefined;
|
|
private messageElement: HTMLDivElement;
|
|
private tree: FileIconThemableWorkbenchTree;
|
|
private root: ITreeItem;
|
|
private elementsToRefresh: ITreeItem[] = [];
|
|
private menus: TitleMenus;
|
|
|
|
private markdownRenderer: MarkdownRenderer;
|
|
private markdownResult: IMarkdownRenderResult;
|
|
|
|
private _onDidExpandItem: Emitter<ITreeItem> = this._register(new Emitter<ITreeItem>());
|
|
readonly onDidExpandItem: Event<ITreeItem> = this._onDidExpandItem.event;
|
|
|
|
private _onDidCollapseItem: Emitter<ITreeItem> = this._register(new Emitter<ITreeItem>());
|
|
readonly onDidCollapseItem: Event<ITreeItem> = this._onDidCollapseItem.event;
|
|
|
|
private _onDidChangeSelection: Emitter<ITreeItem[]> = this._register(new Emitter<ITreeItem[]>());
|
|
readonly onDidChangeSelection: Event<ITreeItem[]> = this._onDidChangeSelection.event;
|
|
|
|
private _onDidChangeVisibility: Emitter<boolean> = this._register(new Emitter<boolean>());
|
|
readonly onDidChangeVisibility: Event<boolean> = this._onDidChangeVisibility.event;
|
|
|
|
private _onDidChangeActions: Emitter<void> = this._register(new Emitter<void>());
|
|
readonly onDidChangeActions: Event<void> = this._onDidChangeActions.event;
|
|
|
|
private nodeContext: NodeContextKey;
|
|
|
|
constructor(
|
|
private id: string,
|
|
private container: ViewContainer,
|
|
@IExtensionService private extensionService: IExtensionService,
|
|
@IWorkbenchThemeService private themeService: IWorkbenchThemeService,
|
|
@IInstantiationService private instantiationService: IInstantiationService,
|
|
@ICommandService private commandService: ICommandService,
|
|
@IConfigurationService private configurationService: IConfigurationService,
|
|
@IProgressService2 private progressService: IProgressService2
|
|
) {
|
|
super();
|
|
this.root = new Root();
|
|
this.menus = this._register(instantiationService.createInstance(TitleMenus, this.id));
|
|
this._register(this.menus.onDidChangeTitle(() => this._onDidChangeActions.fire()));
|
|
this._register(this.themeService.onDidFileIconThemeChange(() => this.doRefresh([this.root]) /** soft refresh **/));
|
|
this._register(this.themeService.onThemeChange(() => this.doRefresh([this.root]) /** soft refresh **/));
|
|
this._register(this.configurationService.onDidChangeConfiguration(e => {
|
|
if (e.affectsConfiguration('explorer.decorations')) {
|
|
this.doRefresh([this.root]); /** soft refresh **/
|
|
}
|
|
}));
|
|
this.markdownRenderer = instantiationService.createInstance(MarkdownRenderer);
|
|
this._register(toDisposable(() => {
|
|
if (this.markdownResult) {
|
|
this.markdownResult.dispose();
|
|
}
|
|
}));
|
|
|
|
this.nodeContext = this._register(instantiationService.createInstance(NodeContextKey));
|
|
|
|
this.create();
|
|
}
|
|
|
|
private _dataProvider: ITreeViewDataProvider;
|
|
get dataProvider(): ITreeViewDataProvider {
|
|
return this._dataProvider;
|
|
}
|
|
|
|
set dataProvider(dataProvider: ITreeViewDataProvider) {
|
|
if (dataProvider) {
|
|
this._dataProvider = new class implements ITreeViewDataProvider {
|
|
getChildren(node?: ITreeItem): Promise<ITreeItem[]> {
|
|
if (node && node.children) {
|
|
return Promise.resolve(node.children);
|
|
}
|
|
const promise = node instanceof Root ? dataProvider.getChildren() : dataProvider.getChildren(node);
|
|
return promise.then(children => {
|
|
node.children = children;
|
|
return children;
|
|
});
|
|
}
|
|
};
|
|
this.updateMessage();
|
|
this.refresh();
|
|
} else {
|
|
this._dataProvider = null;
|
|
this.updateMessage();
|
|
}
|
|
}
|
|
|
|
private _message: string | IMarkdownString | undefined;
|
|
get message(): string | IMarkdownString | undefined {
|
|
return this._message;
|
|
}
|
|
|
|
set message(message: string | IMarkdownString | undefined) {
|
|
this._message = message;
|
|
this.updateMessage();
|
|
}
|
|
|
|
get hasIconForParentNode(): boolean {
|
|
return this._hasIconForParentNode;
|
|
}
|
|
|
|
get hasIconForLeafNode(): boolean {
|
|
return this._hasIconForLeafNode;
|
|
}
|
|
|
|
get visible(): boolean {
|
|
return this.isVisible;
|
|
}
|
|
|
|
get showCollapseAllAction(): boolean {
|
|
return this._showCollapseAllAction;
|
|
}
|
|
|
|
set showCollapseAllAction(showCollapseAllAction: boolean) {
|
|
if (this._showCollapseAllAction !== !!showCollapseAllAction) {
|
|
this._showCollapseAllAction = !!showCollapseAllAction;
|
|
this._onDidChangeActions.fire();
|
|
}
|
|
}
|
|
|
|
getPrimaryActions(): IAction[] {
|
|
if (this.showCollapseAllAction) {
|
|
const collapseAllAction = new Action('vs.tree.collapse', localize('collapse', "Collapse"), 'monaco-tree-action collapse-all', true, () => this.tree ? new CollapseAllAction(this.tree, true).run() : Promise.resolve());
|
|
return [...this.menus.getTitleActions(), collapseAllAction];
|
|
} else {
|
|
return this.menus.getTitleActions();
|
|
}
|
|
}
|
|
|
|
getSecondaryActions(): IAction[] {
|
|
return this.menus.getTitleSecondaryActions();
|
|
}
|
|
|
|
setVisibility(isVisible: boolean): void {
|
|
isVisible = !!isVisible;
|
|
if (this.isVisible === isVisible) {
|
|
return;
|
|
}
|
|
|
|
this.isVisible = isVisible;
|
|
if (this.isVisible) {
|
|
this.activate();
|
|
}
|
|
|
|
if (this.tree) {
|
|
if (this.isVisible) {
|
|
DOM.show(this.tree.getHTMLElement());
|
|
} else {
|
|
DOM.hide(this.tree.getHTMLElement()); // make sure the tree goes out of the tabindex world by hiding it
|
|
}
|
|
|
|
if (this.isVisible) {
|
|
this.tree.onVisible();
|
|
} else {
|
|
this.tree.onHidden();
|
|
}
|
|
|
|
if (this.isVisible && this.elementsToRefresh.length) {
|
|
this.doRefresh(this.elementsToRefresh);
|
|
this.elementsToRefresh = [];
|
|
}
|
|
}
|
|
|
|
this._onDidChangeVisibility.fire(this.isVisible);
|
|
}
|
|
|
|
focus(): void {
|
|
if (this.tree && this.root.children && this.root.children.length > 0) {
|
|
// Make sure the current selected element is revealed
|
|
const selectedElement = this.tree.getSelection()[0];
|
|
if (selectedElement) {
|
|
this.tree.reveal(selectedElement, 0.5);
|
|
}
|
|
|
|
// Pass Focus to Viewer
|
|
this.tree.domFocus();
|
|
} else {
|
|
this.domNode.focus();
|
|
}
|
|
}
|
|
|
|
show(container: HTMLElement): void {
|
|
DOM.append(container, this.domNode);
|
|
}
|
|
|
|
private create() {
|
|
this.domNode = DOM.$('.tree-explorer-viewlet-tree-view');
|
|
this.messageElement = DOM.append(this.domNode, DOM.$('.message'));
|
|
this.treeContainer = DOM.append(this.domNode, DOM.$('.customview-tree'));
|
|
const focusTracker = this._register(DOM.trackFocus(this.domNode));
|
|
this._register(focusTracker.onDidFocus(() => this.focused = true));
|
|
this._register(focusTracker.onDidBlur(() => this.focused = false));
|
|
}
|
|
|
|
private createTree() {
|
|
const actionItemProvider = (action: IAction) => action instanceof MenuItemAction ? this.instantiationService.createInstance(ContextAwareMenuEntryActionViewItem, action) : undefined;
|
|
const menus = this.instantiationService.createInstance(TreeMenus, this.id);
|
|
const dataSource = this.instantiationService.createInstance(TreeDataSource, this, this.container, this.id);
|
|
const renderer = this.instantiationService.createInstance(TreeRenderer, this.id, menus, actionItemProvider);
|
|
const controller = this.instantiationService.createInstance(TreeController, this.id, this.container.id, menus);
|
|
this.tree = this.instantiationService.createInstance(FileIconThemableWorkbenchTree, this.treeContainer, { dataSource, renderer, controller }, {});
|
|
this.tree.contextKeyService.createKey<boolean>(this.id, true);
|
|
this._register(this.tree);
|
|
this._register(this.tree.onDidChangeSelection(e => this.onSelection(e)));
|
|
this._register(this.tree.onDidExpandItem(e => this._onDidExpandItem.fire(e.item.getElement())));
|
|
this._register(this.tree.onDidCollapseItem(e => this._onDidCollapseItem.fire(e.item.getElement())));
|
|
this._register(this.tree.onDidChangeSelection(e => this._onDidChangeSelection.fire(e.selection)));
|
|
// Update resource context based on focused element
|
|
this._register(this.tree.onDidChangeFocus((e: { focus: ITreeItem }) => {
|
|
this.nodeContext.set({ node: e.focus, viewId: this.id });
|
|
}));
|
|
this.tree.setInput(this.root).then(() => this.updateContentAreas());
|
|
}
|
|
|
|
private updateMessage(): void {
|
|
if (this._message) {
|
|
this.showMessage(this._message);
|
|
} else if (!this.dataProvider) {
|
|
this.showMessage(noDataProviderMessage);
|
|
} else {
|
|
this.hideMessage();
|
|
}
|
|
this.updateContentAreas();
|
|
}
|
|
|
|
private showMessage(message: string | IMarkdownString): void {
|
|
DOM.removeClass(this.messageElement, 'hide');
|
|
if (this._messageValue !== message) {
|
|
this.resetMessageElement();
|
|
this._messageValue = message;
|
|
if (isString(this._messageValue)) {
|
|
this.messageElement.textContent = this._messageValue;
|
|
} else {
|
|
this.markdownResult = this.markdownRenderer.render(this._messageValue);
|
|
DOM.append(this.messageElement, this.markdownResult.element);
|
|
}
|
|
this.layout(this._size);
|
|
}
|
|
}
|
|
|
|
private hideMessage(): void {
|
|
this.resetMessageElement();
|
|
DOM.addClass(this.messageElement, 'hide');
|
|
this.layout(this._size);
|
|
}
|
|
|
|
private resetMessageElement(): void {
|
|
if (this.markdownResult) {
|
|
this.markdownResult.dispose();
|
|
this.markdownResult = null;
|
|
}
|
|
DOM.clearNode(this.messageElement);
|
|
}
|
|
|
|
private _size: number;
|
|
layout(size: number) {
|
|
if (size) {
|
|
this._size = size;
|
|
const treeSize = size - DOM.getTotalHeight(this.messageElement);
|
|
this.treeContainer.style.height = treeSize + 'px';
|
|
if (this.tree) {
|
|
this.tree.layout(treeSize);
|
|
}
|
|
}
|
|
}
|
|
|
|
getOptimalWidth(): number {
|
|
if (this.tree) {
|
|
const parentNode = this.tree.getHTMLElement();
|
|
const childNodes = ([] as HTMLElement[]).slice.call(parentNode.querySelectorAll('.outline-item-label > a'));
|
|
return DOM.getLargestChildWidth(parentNode, childNodes);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
refresh(elements?: ITreeItem[]): Promise<void> {
|
|
if (this.dataProvider && this.tree) {
|
|
elements = elements || [this.root];
|
|
for (const element of elements) {
|
|
element.children = null; // reset children
|
|
}
|
|
if (this.isVisible) {
|
|
return this.doRefresh(elements);
|
|
} else {
|
|
this.elementsToRefresh.push(...elements);
|
|
}
|
|
}
|
|
return Promise.resolve(null);
|
|
}
|
|
|
|
expand(itemOrItems: ITreeItem | ITreeItem[]): Promise<void> {
|
|
if (this.tree) {
|
|
itemOrItems = Array.isArray(itemOrItems) ? itemOrItems : [itemOrItems];
|
|
return this.tree.expandAll(itemOrItems);
|
|
}
|
|
return Promise.arguments(null);
|
|
}
|
|
|
|
collapse(itemOrItems: ITreeItem | ITreeItem[]): Thenable<void> {
|
|
if (this.tree) {
|
|
itemOrItems = Array.isArray(itemOrItems) ? itemOrItems : [itemOrItems];
|
|
return this.tree.collapseAll(itemOrItems);
|
|
}
|
|
return Promise.arguments(null);
|
|
}
|
|
|
|
setSelection(items: ITreeItem[]): void {
|
|
if (this.tree) {
|
|
this.tree.setSelection(items, { source: 'api' });
|
|
}
|
|
}
|
|
|
|
setFocus(item: ITreeItem): void {
|
|
if (this.tree) {
|
|
this.focus();
|
|
this.tree.setFocus(item);
|
|
}
|
|
}
|
|
|
|
reveal(item: ITreeItem): Promise<void> {
|
|
if (this.tree) {
|
|
return this.tree.reveal(item);
|
|
}
|
|
return Promise.arguments(null);
|
|
}
|
|
|
|
private activate() {
|
|
if (!this.activated) {
|
|
this.createTree();
|
|
this.progressService.withProgress({ location: this.container.id }, () => this.extensionService.activateByEvent(`onView:${this.id}`))
|
|
.then(() => timeout(2000))
|
|
.then(() => {
|
|
this.updateMessage();
|
|
});
|
|
this.activated = true;
|
|
}
|
|
}
|
|
|
|
private refreshing: boolean = false;
|
|
private doRefresh(elements: ITreeItem[]): Promise<void> {
|
|
if (this.tree) {
|
|
this.refreshing = true;
|
|
return Promise.all(elements.map(e => this.tree.refresh(e)))
|
|
.then(() => {
|
|
this.refreshing = false;
|
|
this.updateContentAreas();
|
|
if (this.focused) {
|
|
this.focus();
|
|
}
|
|
});
|
|
}
|
|
return Promise.resolve(null);
|
|
}
|
|
|
|
private updateContentAreas(): void {
|
|
const isTreeEmpty = !this.root.children || this.root.children.length === 0;
|
|
// Hide tree container only when there is a message and tree is empty and not refreshing
|
|
if (this._messageValue && isTreeEmpty && !this.refreshing) {
|
|
DOM.addClass(this.treeContainer, 'hide');
|
|
this.domNode.setAttribute('tabindex', '0');
|
|
} else {
|
|
DOM.removeClass(this.treeContainer, 'hide');
|
|
this.domNode.removeAttribute('tabindex');
|
|
}
|
|
}
|
|
|
|
private onSelection({ payload }: any): void {
|
|
if (payload && (!!payload.didClickOnTwistie || payload.source === 'api')) {
|
|
return;
|
|
}
|
|
const selection: ITreeItem = this.tree.getSelection()[0];
|
|
if (selection) {
|
|
if (selection.command) {
|
|
const originalEvent: KeyboardEvent | MouseEvent = payload && payload.originalEvent;
|
|
const isMouseEvent = payload && payload.origin === 'mouse';
|
|
const isDoubleClick = isMouseEvent && originalEvent && originalEvent.detail === 2;
|
|
|
|
if (!isMouseEvent || this.tree.openOnSingleClick || isDoubleClick) {
|
|
this.commandService.executeCommand(selection.command.id, ...(selection.command.arguments || []));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
class TreeDataSource implements IDataSource {
|
|
|
|
constructor(
|
|
private treeView: ITreeView,
|
|
private container: ViewContainer,
|
|
private id: string,
|
|
@IProgressService2 private progressService: IProgressService2,
|
|
@IOEShimService private objectExplorerService: IOEShimService
|
|
) {
|
|
}
|
|
|
|
getId(tree: ITree, node: ITreeItem): string {
|
|
return node.handle;
|
|
}
|
|
|
|
hasChildren(tree: ITree, node: ITreeItem): boolean {
|
|
if (node.childProvider) {
|
|
return this.objectExplorerService.providerExists(node.childProvider) && node.collapsibleState !== TreeItemCollapsibleState.None;
|
|
}
|
|
return this.treeView.dataProvider && node.collapsibleState !== TreeItemCollapsibleState.None;
|
|
}
|
|
|
|
getChildren(tree: ITree, node: ITreeItem): Promise<any[]> {
|
|
if (node.childProvider) {
|
|
return this.progressService.withProgress({ location: this.container.id }, () => this.objectExplorerService.getChildren(node, this.id)).catch(e => {
|
|
// if some error is caused we assume something tangently happened
|
|
// i.e the user could retry if they wanted.
|
|
// So in order to enable this we need to tell the tree to refresh this node so it will ask us for the data again
|
|
setTimeout(() => {
|
|
tree.collapse(node).then(() => tree.refresh(node));
|
|
});
|
|
return [];
|
|
});
|
|
}
|
|
if (this.treeView.dataProvider) {
|
|
return this.progressService.withProgress({ location: this.container.id }, () => this.treeView.dataProvider.getChildren(node));
|
|
}
|
|
return Promise.resolve([]);
|
|
}
|
|
|
|
shouldAutoexpand(tree: ITree, node: ITreeItem): boolean {
|
|
return node.collapsibleState === TreeItemCollapsibleState.Expanded;
|
|
}
|
|
|
|
getParent(tree: ITree, node: any): Promise<any> {
|
|
return Promise.resolve(null);
|
|
}
|
|
}
|
|
|
|
interface ITreeExplorerTemplateData {
|
|
resourceLabel: ResourceLabel;
|
|
icon: HTMLElement;
|
|
actionBar: ActionBar;
|
|
aligner: Aligner;
|
|
}
|
|
|
|
// todo@joh,sandy make this proper and contributable from extensions
|
|
registerThemingParticipant((theme, collector) => {
|
|
|
|
const findMatchHighlightColor = theme.getColor(editorFindMatchHighlight);
|
|
if (findMatchHighlightColor) {
|
|
collector.addRule(`.file-icon-themable-tree .monaco-tree-row .content .monaco-highlighted-label .highlight { color: unset !important; background-color: ${findMatchHighlightColor}; }`);
|
|
}
|
|
const findMatchHighlightColorBorder = theme.getColor(editorFindMatchHighlightBorder);
|
|
if (findMatchHighlightColorBorder) {
|
|
collector.addRule(`.file-icon-themable-tree .monaco-tree-row .content .monaco-highlighted-label .highlight { color: unset !important; border: 1px dotted ${findMatchHighlightColorBorder}; box-sizing: border-box; }`);
|
|
}
|
|
const link = theme.getColor(textLinkForeground);
|
|
if (link) {
|
|
collector.addRule(`.tree-explorer-viewlet-tree-view > .message a { color: ${link}; }`);
|
|
}
|
|
const focustBorderColor = theme.getColor(focusBorder);
|
|
if (focustBorderColor) {
|
|
collector.addRule(`.tree-explorer-viewlet-tree-view > .message a:focus { outline: 1px solid ${focustBorderColor}; outline-offset: -1px; }`);
|
|
}
|
|
const codeBackground = theme.getColor(textCodeBlockBackground);
|
|
if (codeBackground) {
|
|
collector.addRule(`.tree-explorer-viewlet-tree-view > .message code { background-color: ${codeBackground}; }`);
|
|
}
|
|
});
|
|
|
|
class TreeRenderer implements IRenderer {
|
|
|
|
private static readonly ITEM_HEIGHT = 22;
|
|
private static readonly TREE_TEMPLATE_ID = 'treeExplorer';
|
|
private static readonly MSSQL_TREE_TEMPLATE_ID = 'mssqltreeExplorer';
|
|
|
|
constructor(
|
|
private treeViewId: string,
|
|
private menus: TreeMenus,
|
|
private actionItemProvider: IActionViewItemProvider,
|
|
@IInstantiationService private instantiationService: IInstantiationService,
|
|
@IWorkbenchThemeService private themeService: IWorkbenchThemeService,
|
|
@IConfigurationService private configurationService: IConfigurationService,
|
|
@ILabelService private labelService: ILabelService
|
|
) {
|
|
}
|
|
|
|
getHeight(tree: ITree, element: any): number {
|
|
return TreeRenderer.ITEM_HEIGHT;
|
|
}
|
|
|
|
getTemplateId(tree: ITree, element: ITreeItem): string {
|
|
return equalsIgnoreCase(element.providerHandle, 'mssql') ? TreeRenderer.MSSQL_TREE_TEMPLATE_ID : TreeRenderer.TREE_TEMPLATE_ID;
|
|
}
|
|
|
|
renderTemplate(tree: ITree, templateId: string, container: HTMLElement): ITreeExplorerTemplateData {
|
|
DOM.addClass(container, 'custom-view-tree-node-item');
|
|
|
|
const icon = DOM.append(container, DOM.$('.custom-view-tree-node-item-icon'));
|
|
const resourceLabel = this.instantiationService.createInstance(ResourceLabel, container, { supportHighlights: true, donotSupportOcticons: true });
|
|
DOM.addClass(resourceLabel.element.element, 'custom-view-tree-node-item-resourceLabel');
|
|
const actionsContainer = DOM.append(resourceLabel.element.element, DOM.$('.actions'));
|
|
const actionBar = new ActionBar(actionsContainer, {
|
|
actionViewItemProvider: this.actionItemProvider,
|
|
actionRunner: new MultipleSelectionActionRunner(() => tree.getSelection())
|
|
});
|
|
|
|
return { resourceLabel, icon, actionBar, aligner: new Aligner(container, tree, this.themeService) };
|
|
}
|
|
|
|
renderElement(tree: ITree, node: ITreeItem, templateId: string, templateData: ITreeExplorerTemplateData): void {
|
|
const resource = node.resourceUri ? URI.revive(node.resourceUri) : null;
|
|
const treeItemLabel: ITreeItemLabel = node.label ? node.label : resource ? { label: basename(resource.path) } : void 0;
|
|
const description = isString(node.description) ? node.description : resource && node.description === true ? this.labelService.getUriLabel(dirname(resource), { relative: true }) : void 0;
|
|
const label = treeItemLabel ? treeItemLabel.label : void 0;
|
|
const matches = treeItemLabel && treeItemLabel.highlights ? treeItemLabel.highlights.map(([start, end]) => ({ start, end })) : void 0;
|
|
const icon = this.themeService.getTheme().type === LIGHT ? node.icon : node.iconDark;
|
|
const iconUrl = icon ? URI.revive(icon) : null;
|
|
const title = node.tooltip ? node.tooltip : resource ? void 0 : label;
|
|
const sqlIcon = node.sqlIcon;
|
|
|
|
// reset
|
|
templateData.resourceLabel.clear();
|
|
templateData.actionBar.clear();
|
|
|
|
if (resource || node.themeIcon) {
|
|
const fileDecorations = this.configurationService.getValue<{ colors: boolean, badges: boolean }>('explorer.decorations');
|
|
templateData.resourceLabel.element.setResource({ name: label, resource: resource ? resource : URI.parse('missing:_icon_resource') }, { fileKind: this.getFileKind(node), title, fileDecorations: fileDecorations, extraClasses: ['custom-view-tree-node-item-resourceLabel'], matches });
|
|
} else {
|
|
templateData.resourceLabel.element.setResource({ name: label, description }, { title, hideIcon: true, extraClasses: ['custom-view-tree-node-item-resourceLabel'], matches });
|
|
}
|
|
// clear out icons to prevent duplication from other templates
|
|
templateData.icon.className = '';
|
|
templateData.icon.style.backgroundImage = iconUrl ? `url('${iconUrl.toString(true)}')` : '';
|
|
DOM.toggleClass(templateData.icon, sqlIcon, !!sqlIcon);
|
|
DOM.toggleClass(templateData.icon, 'icon', !!sqlIcon);
|
|
DOM.toggleClass(templateData.icon, 'custom-view-tree-node-item-icon', !!iconUrl || !!sqlIcon);
|
|
templateData.actionBar.context = (<TreeViewItemHandleArg>{ $treeViewId: this.treeViewId, $treeItemHandle: node.handle });
|
|
templateData.actionBar.push(this.menus.getResourceActions(node), { icon: true, label: false });
|
|
|
|
templateData.aligner.treeItem = node;
|
|
}
|
|
|
|
private getFileKind(node: ITreeItem): FileKind {
|
|
if (node.themeIcon) {
|
|
switch (node.themeIcon.id) {
|
|
case FileThemeIcon.id:
|
|
return FileKind.FILE;
|
|
case FolderThemeIcon.id:
|
|
return FileKind.FOLDER;
|
|
}
|
|
}
|
|
return node.collapsibleState === TreeItemCollapsibleState.Collapsed || node.collapsibleState === TreeItemCollapsibleState.Expanded ? FileKind.FOLDER : FileKind.FILE;
|
|
}
|
|
|
|
disposeTemplate(tree: ITree, templateId: string, templateData: ITreeExplorerTemplateData): void {
|
|
templateData.resourceLabel.dispose();
|
|
templateData.actionBar.dispose();
|
|
templateData.aligner.dispose();
|
|
}
|
|
}
|
|
|
|
class Aligner extends Disposable {
|
|
|
|
private _treeItem: ITreeItem;
|
|
|
|
constructor(
|
|
private container: HTMLElement,
|
|
private tree: ITree,
|
|
private themeService: IWorkbenchThemeService
|
|
) {
|
|
super();
|
|
this._register(this.themeService.onDidFileIconThemeChange(() => this.render()));
|
|
}
|
|
|
|
set treeItem(treeItem: ITreeItem) {
|
|
this._treeItem = treeItem;
|
|
this.render();
|
|
}
|
|
|
|
private render(): void {
|
|
if (this._treeItem) {
|
|
DOM.toggleClass(this.container, 'align-icon-with-twisty', this.hasToAlignIconWithTwisty());
|
|
}
|
|
}
|
|
|
|
private hasToAlignIconWithTwisty(): boolean {
|
|
if (this._treeItem.collapsibleState !== TreeItemCollapsibleState.None) {
|
|
return false;
|
|
}
|
|
if (!this.hasIcon(this._treeItem)) {
|
|
return false;
|
|
|
|
}
|
|
const parent: ITreeItem = this.tree.getNavigator(this._treeItem).parent() || this.tree.getInput();
|
|
if (this.hasIcon(parent)) {
|
|
return false;
|
|
}
|
|
return parent.children && parent.children.every(c => c.collapsibleState === TreeItemCollapsibleState.None || !this.hasIcon(c));
|
|
}
|
|
|
|
private hasIcon(node: ITreeItem): boolean {
|
|
const icon = this.themeService.getTheme().type === LIGHT ? node.icon : node.iconDark;
|
|
if (icon) {
|
|
return true;
|
|
}
|
|
if (node.resourceUri || node.themeIcon) {
|
|
const fileIconTheme = this.themeService.getFileIconTheme();
|
|
const isFolder = node.themeIcon ? node.themeIcon.id === FolderThemeIcon.id : node.collapsibleState !== TreeItemCollapsibleState.None;
|
|
if (isFolder) {
|
|
return fileIconTheme.hasFileIcons && fileIconTheme.hasFolderIcons;
|
|
}
|
|
return fileIconTheme.hasFileIcons;
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
|
|
class TreeController extends WorkbenchTreeController {
|
|
|
|
constructor(
|
|
private treeViewId: string,
|
|
private containerId: string,
|
|
private menus: TreeMenus,
|
|
@IContextMenuService private contextMenuService: IContextMenuService,
|
|
@IKeybindingService private readonly _keybindingService: IKeybindingService,
|
|
@IConfigurationService configurationService: IConfigurationService
|
|
) {
|
|
super({}, configurationService);
|
|
}
|
|
|
|
protected shouldToggleExpansion(element: ITreeItem, event: IMouseEvent, origin: string): boolean {
|
|
return element.command ? this.isClickOnTwistie(event) : super.shouldToggleExpansion(element, event, origin);
|
|
}
|
|
|
|
onContextMenu(tree: ITree, node: ITreeItem, event: ContextMenuEvent): boolean {
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
|
|
tree.setFocus(node);
|
|
const actions = this.menus.getResourceContextActions(node);
|
|
if (!actions.length) {
|
|
return true;
|
|
}
|
|
const anchor = { x: event.posx, y: event.posy };
|
|
this.contextMenuService.showContextMenu({
|
|
getAnchor: () => anchor,
|
|
|
|
getActions: () => actions,
|
|
|
|
getActionViewItem: (action) => {
|
|
const keybinding = this._keybindingService.lookupKeybinding(action.id);
|
|
if (keybinding) {
|
|
return new ActionViewItem(action, action, { label: true, keybinding: keybinding.getLabel() });
|
|
}
|
|
return null;
|
|
},
|
|
|
|
onHide: (wasCancelled?: boolean) => {
|
|
if (wasCancelled) {
|
|
tree.domFocus();
|
|
}
|
|
},
|
|
|
|
getActionsContext: () => (<TreeViewItemHandleArg>{ $treeViewId: this.treeViewId, $treeItemHandle: node.handle, $treeItem: node, $treeContainerId: this.containerId }),
|
|
|
|
actionRunner: new MultipleSelectionActionRunner(() => tree.getSelection())
|
|
});
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|
|
class MultipleSelectionActionRunner extends ActionRunner {
|
|
|
|
constructor(private getSelectedResources: () => any[]) {
|
|
super();
|
|
}
|
|
|
|
runAction(action: IAction, context: any): Promise<any> {
|
|
if (action instanceof MenuItemAction) {
|
|
const selection = this.getSelectedResources();
|
|
const filteredSelection = selection.filter(s => s !== context);
|
|
|
|
if (selection.length === filteredSelection.length || selection.length === 1) {
|
|
return action.run(context);
|
|
}
|
|
|
|
return action.run(context, ...filteredSelection);
|
|
}
|
|
|
|
return super.runAction(action, context);
|
|
}
|
|
}
|
|
|
|
class TreeMenus extends Disposable implements IDisposable {
|
|
|
|
constructor(
|
|
private id: string,
|
|
@IContextKeyService private contextKeyService: IContextKeyService,
|
|
@IMenuService private menuService: IMenuService,
|
|
@IContextMenuService private contextMenuService: IContextMenuService
|
|
) {
|
|
super();
|
|
}
|
|
|
|
getResourceActions(element: ITreeItem): IAction[] {
|
|
return this.mergeActions([
|
|
this.getActions(MenuId.ViewItemContext, { key: 'viewItem', value: element.contextValue }).primary,
|
|
this.getActions(MenuId.DataExplorerContext, { key: 'viewItem', value: element.contextValue }).primary
|
|
]);
|
|
}
|
|
|
|
getResourceContextActions(element: ITreeItem): IAction[] {
|
|
return this.mergeActions([
|
|
this.getActions(MenuId.ViewItemContext, { key: 'viewItem', value: element.contextValue }).secondary,
|
|
this.getActions(MenuId.DataExplorerContext, { key: 'viewItem', value: element.contextValue }).secondary
|
|
]);
|
|
}
|
|
|
|
private mergeActions(actions: IAction[][]): IAction[] {
|
|
return actions.reduce((p, c) => p.concat(...c.filter(a => p.findIndex(x => x.id === a.id) === -1)), [] as IAction[]);
|
|
}
|
|
|
|
private getActions(menuId: MenuId, context: { key: string, value: string }): { primary: IAction[]; secondary: IAction[]; } {
|
|
const contextKeyService = this.contextKeyService.createScoped();
|
|
contextKeyService.createKey('view', this.id);
|
|
contextKeyService.createKey(context.key, context.value);
|
|
|
|
const menu = this.menuService.createMenu(menuId, contextKeyService);
|
|
const primary: IAction[] = [];
|
|
const secondary: IAction[] = [];
|
|
const result = { primary, secondary };
|
|
fillInContextMenuActions(menu, { shouldForwardArgs: true }, result, this.contextMenuService, g => /^inline/.test(g));
|
|
|
|
menu.dispose();
|
|
contextKeyService.dispose();
|
|
|
|
return result;
|
|
}
|
|
}
|
|
|
|
class MarkdownRenderer {
|
|
|
|
constructor(
|
|
@IOpenerService private readonly _openerService: IOpenerService
|
|
) {
|
|
}
|
|
|
|
private getOptions(disposeables: IDisposable[]): RenderOptions {
|
|
return {
|
|
actionHandler: {
|
|
callback: (content) => {
|
|
let uri: URI | undefined;
|
|
try {
|
|
uri = URI.parse(content);
|
|
} catch {
|
|
// ignore
|
|
}
|
|
if (uri && this._openerService) {
|
|
this._openerService.open(uri).catch(onUnexpectedError);
|
|
}
|
|
},
|
|
disposeables
|
|
}
|
|
};
|
|
}
|
|
|
|
render(markdown: IMarkdownString): IMarkdownRenderResult {
|
|
let disposeables: IDisposable[] = [];
|
|
const element: HTMLElement = markdown ? renderMarkdown(markdown, this.getOptions(disposeables)) : document.createElement('span');
|
|
return {
|
|
element,
|
|
dispose: () => dispose(disposeables)
|
|
};
|
|
}
|
|
}
|