1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237 |
- // Copyright (c) Jupyter Development Team.
- // Distributed under the terms of the Modified BSD License.
- import { Debouncer } from '@jupyterlab/coreutils';
- import { DocumentRegistry } from '@jupyterlab/docregistry';
- import { DockPanelSvg, TabBarSvg } from '@jupyterlab/ui-components';
- import { ArrayExt, find, IIterator, iter, toArray } from '@phosphor/algorithm';
- import { PromiseDelegate, Token } from '@phosphor/coreutils';
- import { Message, MessageLoop, IMessageHandler } from '@phosphor/messaging';
- import { ISignal, Signal } from '@phosphor/signaling';
- import {
- BoxLayout,
- BoxPanel,
- DockLayout,
- DockPanel,
- FocusTracker,
- Panel,
- SplitPanel,
- StackedPanel,
- TabBar,
- Title,
- Widget
- } from '@phosphor/widgets';
- import { JupyterFrontEnd } from './frontend';
- /**
- * The class name added to AppShell instances.
- */
- const APPLICATION_SHELL_CLASS = 'jp-LabShell';
- /**
- * The class name added to side bar instances.
- */
- const SIDEBAR_CLASS = 'jp-SideBar';
- /**
- * The class name added to the current widget's title.
- */
- const CURRENT_CLASS = 'jp-mod-current';
- /**
- * The class name added to the active widget's title.
- */
- const ACTIVE_CLASS = 'jp-mod-active';
- /**
- * The default rank of items added to a sidebar.
- */
- const DEFAULT_RANK = 500;
- const ACTIVITY_CLASS = 'jp-Activity';
- /* tslint:disable */
- /**
- * The JupyterLab application shell token.
- */
- export const ILabShell = new Token<ILabShell>(
- '@jupyterlab/application:ILabShell'
- );
- /* tslint:enable */
- /**
- * The JupyterLab application shell interface.
- */
- export interface ILabShell extends LabShell {}
- /**
- * The namespace for `ILabShell` type information.
- */
- export namespace ILabShell {
- /**
- * The areas of the application shell where widgets can reside.
- */
- export type Area = 'main' | 'header' | 'top' | 'left' | 'right' | 'bottom';
- /**
- * The restorable description of an area within the main dock panel.
- */
- export type AreaConfig = DockLayout.AreaConfig;
- /**
- * An arguments object for the changed signals.
- */
- export type IChangedArgs = FocusTracker.IChangedArgs<Widget>;
- /**
- * A description of the application's user interface layout.
- */
- export interface ILayout {
- /**
- * Indicates whether fetched session restore data was actually retrieved
- * from the state database or whether it is a fresh blank slate.
- *
- * #### Notes
- * This attribute is only relevant when the layout data is retrieved via a
- * `fetch` call. If it is set when being passed into `save`, it will be
- * ignored.
- */
- readonly fresh?: boolean;
- /**
- * The main area of the user interface.
- */
- readonly mainArea: IMainArea | null;
- /**
- * The left area of the user interface.
- */
- readonly leftArea: ISideArea | null;
- /**
- * The right area of the user interface.
- */
- readonly rightArea: ISideArea | null;
- }
- /**
- * The restorable description of the main application area.
- */
- export interface IMainArea {
- /**
- * The current widget that has application focus.
- */
- readonly currentWidget: Widget | null;
- /**
- * The contents of the main application dock panel.
- */
- readonly dock: DockLayout.ILayoutConfig | null;
- /**
- * The document mode (i.e., multiple/single) of the main dock panel.
- */
- readonly mode: DockPanel.Mode | null;
- }
- /**
- * The restorable description of a sidebar in the user interface.
- */
- export interface ISideArea {
- /**
- * A flag denoting whether the sidebar has been collapsed.
- */
- readonly collapsed: boolean;
- /**
- * The current widget that has side area focus.
- */
- readonly currentWidget: Widget | null;
- /**
- * The collection of widgets held by the sidebar.
- */
- readonly widgets: Array<Widget> | null;
- }
- }
- /**
- * The application shell for JupyterLab.
- */
- export class LabShell extends Widget implements JupyterFrontEnd.IShell {
- /**
- * Construct a new application shell.
- */
- constructor() {
- super();
- this.addClass(APPLICATION_SHELL_CLASS);
- this.id = 'main';
- let bottomPanel = (this._bottomPanel = new BoxPanel());
- let topPanel = (this._topPanel = new Panel());
- let hboxPanel = new BoxPanel();
- let dockPanel = (this._dockPanel = new DockPanelSvg({
- kind: 'dockPanelBar'
- }));
- let headerPanel = (this._headerPanel = new Panel());
- MessageLoop.installMessageHook(dockPanel, this._dockChildHook);
- let hsplitPanel = new SplitPanel();
- let leftHandler = (this._leftHandler = new Private.SideBarHandler('left'));
- let rightHandler = (this._rightHandler = new Private.SideBarHandler(
- 'right'
- ));
- let rootLayout = new BoxLayout();
- bottomPanel.id = 'jp-bottom-panel';
- topPanel.id = 'jp-top-panel';
- hboxPanel.id = 'jp-main-content-panel';
- dockPanel.id = 'jp-main-dock-panel';
- hsplitPanel.id = 'jp-main-split-panel';
- headerPanel.id = 'jp-header-panel';
- leftHandler.sideBar.addClass(SIDEBAR_CLASS);
- leftHandler.sideBar.addClass('jp-mod-left');
- leftHandler.stackedPanel.id = 'jp-left-stack';
- rightHandler.sideBar.addClass(SIDEBAR_CLASS);
- rightHandler.sideBar.addClass('jp-mod-right');
- rightHandler.stackedPanel.id = 'jp-right-stack';
- bottomPanel.direction = 'bottom-to-top';
- hboxPanel.spacing = 0;
- dockPanel.spacing = 5;
- hsplitPanel.spacing = 1;
- hboxPanel.direction = 'left-to-right';
- hsplitPanel.orientation = 'horizontal';
- SplitPanel.setStretch(leftHandler.stackedPanel, 0);
- SplitPanel.setStretch(dockPanel, 1);
- SplitPanel.setStretch(rightHandler.stackedPanel, 0);
- BoxPanel.setStretch(leftHandler.sideBar, 0);
- BoxPanel.setStretch(hsplitPanel, 1);
- BoxPanel.setStretch(rightHandler.sideBar, 0);
- hsplitPanel.addWidget(leftHandler.stackedPanel);
- hsplitPanel.addWidget(dockPanel);
- hsplitPanel.addWidget(rightHandler.stackedPanel);
- hboxPanel.addWidget(leftHandler.sideBar);
- hboxPanel.addWidget(hsplitPanel);
- hboxPanel.addWidget(rightHandler.sideBar);
- rootLayout.direction = 'top-to-bottom';
- rootLayout.spacing = 0; // TODO make this configurable?
- // Use relative sizing to set the width of the side panels.
- // This will still respect the min-size of children widget in the stacked
- // panel.
- hsplitPanel.setRelativeSizes([1, 2.5, 1]);
- BoxLayout.setStretch(headerPanel, 0);
- BoxLayout.setStretch(topPanel, 0);
- BoxLayout.setStretch(hboxPanel, 1);
- BoxLayout.setStretch(bottomPanel, 0);
- rootLayout.addWidget(headerPanel);
- rootLayout.addWidget(topPanel);
- rootLayout.addWidget(hboxPanel);
- rootLayout.addWidget(bottomPanel);
- // initially hiding header and bottom panel when no elements inside
- this._headerPanel.hide();
- this._bottomPanel.hide();
- this.layout = rootLayout;
- // Connect change listeners.
- this._tracker.currentChanged.connect(this._onCurrentChanged, this);
- this._tracker.activeChanged.connect(this._onActiveChanged, this);
- // Connect main layout change listener.
- this._dockPanel.layoutModified.connect(this._onLayoutModified, this);
- // Catch current changed events on the side handlers.
- this._leftHandler.sideBar.currentChanged.connect(
- this._onLayoutModified,
- this
- );
- this._rightHandler.sideBar.currentChanged.connect(
- this._onLayoutModified,
- this
- );
- }
- /**
- * A signal emitted when main area's active focus changes.
- */
- get activeChanged(): ISignal<this, ILabShell.IChangedArgs> {
- return this._activeChanged;
- }
- /**
- * The active widget in the shell's main area.
- */
- get activeWidget(): Widget | null {
- return this._tracker.activeWidget;
- }
- /**
- * A signal emitted when main area's current focus changes.
- */
- get currentChanged(): ISignal<this, ILabShell.IChangedArgs> {
- return this._currentChanged;
- }
- /**
- * The current widget in the shell's main area.
- */
- get currentWidget(): Widget | null {
- return this._tracker.currentWidget;
- }
- /**
- * A signal emitted when the main area's layout is modified.
- */
- get layoutModified(): ISignal<this, void> {
- return this._layoutModified;
- }
- /**
- * Whether the left area is collapsed.
- */
- get leftCollapsed(): boolean {
- return !this._leftHandler.sideBar.currentTitle;
- }
- /**
- * Whether the left area is collapsed.
- */
- get rightCollapsed(): boolean {
- return !this._rightHandler.sideBar.currentTitle;
- }
- /**
- * Whether JupyterLab is in presentation mode with the
- * `jp-mod-presentationMode` CSS class.
- */
- get presentationMode(): boolean {
- return this.hasClass('jp-mod-presentationMode');
- }
- /**
- * Enable/disable presentation mode (`jp-mod-presentationMode` CSS class) with
- * a boolean.
- */
- set presentationMode(value: boolean) {
- this.toggleClass('jp-mod-presentationMode', value);
- }
- /**
- * The main dock area's user interface mode.
- */
- get mode(): DockPanel.Mode {
- return this._dockPanel.mode;
- }
- set mode(mode: DockPanel.Mode) {
- const dock = this._dockPanel;
- if (mode === dock.mode) {
- return;
- }
- const applicationCurrentWidget = this.currentWidget;
- if (mode === 'single-document') {
- this._cachedLayout = dock.saveLayout();
- dock.mode = mode;
- // In case the active widget in the dock panel is *not* the active widget
- // of the application, defer to the application.
- if (this.currentWidget) {
- dock.activateWidget(this.currentWidget);
- }
- // Set the mode data attribute on the application shell node.
- this.node.dataset.shellMode = mode;
- return;
- }
- // Cache a reference to every widget currently in the dock panel.
- const widgets = toArray(dock.widgets());
- // Toggle back to multiple document mode.
- dock.mode = mode;
- // Restore the original layout.
- if (this._cachedLayout) {
- // Remove any disposed widgets in the cached layout and restore.
- Private.normalizeAreaConfig(dock, this._cachedLayout.main);
- dock.restoreLayout(this._cachedLayout);
- this._cachedLayout = null;
- }
- // Add any widgets created during single document mode, which have
- // subsequently been removed from the dock panel after the multiple document
- // layout has been restored. If the widget has add options cached for
- // it (i.e., if it has been placed with respect to another widget),
- // then take that into account.
- widgets.forEach(widget => {
- if (!widget.parent) {
- this._addToMainArea(widget, {
- ...this._mainOptionsCache.get(widget),
- activate: false
- });
- }
- });
- this._mainOptionsCache.clear();
- // In case the active widget in the dock panel is *not* the active widget
- // of the application, defer to the application.
- if (applicationCurrentWidget) {
- dock.activateWidget(applicationCurrentWidget);
- }
- // Set the mode data attribute on the applications shell node.
- this.node.dataset.shellMode = mode;
- }
- /**
- * Promise that resolves when state is first restored, returning layout
- * description.
- */
- get restored(): Promise<ILabShell.ILayout> {
- return this._restored.promise;
- }
- /**
- * Activate a widget in its area.
- */
- activateById(id: string): void {
- if (this._leftHandler.has(id)) {
- this._leftHandler.activate(id);
- return;
- }
- if (this._rightHandler.has(id)) {
- this._rightHandler.activate(id);
- return;
- }
- const dock = this._dockPanel;
- const widget = find(dock.widgets(), value => value.id === id);
- if (widget) {
- dock.activateWidget(widget);
- }
- }
- /*
- * Activate the next Tab in the active TabBar.
- */
- activateNextTab(): void {
- let current = this._currentTabBar();
- if (!current) {
- return;
- }
- let ci = current.currentIndex;
- if (ci === -1) {
- return;
- }
- if (ci < current.titles.length - 1) {
- current.currentIndex += 1;
- if (current.currentTitle) {
- current.currentTitle.owner.activate();
- }
- return;
- }
- if (ci === current.titles.length - 1) {
- let nextBar = this._adjacentBar('next');
- if (nextBar) {
- nextBar.currentIndex = 0;
- if (nextBar.currentTitle) {
- nextBar.currentTitle.owner.activate();
- }
- }
- }
- }
- /*
- * Activate the previous Tab in the active TabBar.
- */
- activatePreviousTab(): void {
- let current = this._currentTabBar();
- if (!current) {
- return;
- }
- let ci = current.currentIndex;
- if (ci === -1) {
- return;
- }
- if (ci > 0) {
- current.currentIndex -= 1;
- if (current.currentTitle) {
- current.currentTitle.owner.activate();
- }
- return;
- }
- if (ci === 0) {
- let prevBar = this._adjacentBar('previous');
- if (prevBar) {
- let len = prevBar.titles.length;
- prevBar.currentIndex = len - 1;
- if (prevBar.currentTitle) {
- prevBar.currentTitle.owner.activate();
- }
- }
- }
- }
- add(
- widget: Widget,
- area: ILabShell.Area = 'main',
- options?: DocumentRegistry.IOpenOptions
- ): void {
- switch (area || 'main') {
- case 'main':
- return this._addToMainArea(widget, options);
- case 'left':
- return this._addToLeftArea(widget, options);
- case 'right':
- return this._addToRightArea(widget, options);
- case 'header':
- return this._addToHeaderArea(widget, options);
- case 'top':
- return this._addToTopArea(widget, options);
- case 'bottom':
- return this._addToBottomArea(widget, options);
- default:
- throw new Error(`Invalid area: ${area}`);
- }
- }
- /**
- * Collapse the left area.
- */
- collapseLeft(): void {
- this._leftHandler.collapse();
- this._onLayoutModified();
- }
- /**
- * Collapse the right area.
- */
- collapseRight(): void {
- this._rightHandler.collapse();
- this._onLayoutModified();
- }
- /**
- * Dispose the shell.
- */
- dispose(): void {
- if (this.isDisposed) {
- return;
- }
- this._layoutDebouncer.dispose();
- super.dispose();
- }
- /**
- * Expand the left area.
- *
- * #### Notes
- * This will open the most recently used tab,
- * or the first tab if there is no most recently used.
- */
- expandLeft(): void {
- this._leftHandler.expand();
- this._onLayoutModified();
- }
- /**
- * Expand the right area.
- *
- * #### Notes
- * This will open the most recently used tab,
- * or the first tab if there is no most recently used.
- */
- expandRight(): void {
- this._rightHandler.expand();
- this._onLayoutModified();
- }
- /**
- * Close all widgets in the main area.
- */
- closeAll(): void {
- // Make a copy of all the widget in the dock panel (using `toArray()`)
- // before removing them because removing them while iterating through them
- // modifies the underlying data of the iterator.
- toArray(this._dockPanel.widgets()).forEach(widget => widget.close());
- }
- /**
- * True if the given area is empty.
- */
- isEmpty(area: ILabShell.Area): boolean {
- switch (area) {
- case 'left':
- return this._leftHandler.stackedPanel.widgets.length === 0;
- case 'main':
- return this._dockPanel.isEmpty;
- case 'header':
- return this._headerPanel.widgets.length === 0;
- case 'top':
- return this._topPanel.widgets.length === 0;
- case 'bottom':
- return this._bottomPanel.widgets.length === 0;
- case 'right':
- return this._rightHandler.stackedPanel.widgets.length === 0;
- default:
- return true;
- }
- }
- /**
- * Restore the layout state for the application shell.
- */
- restoreLayout(layout: ILabShell.ILayout): void {
- const { mainArea, leftArea, rightArea } = layout;
- // Rehydrate the main area.
- if (mainArea) {
- const { currentWidget, dock, mode } = mainArea;
- if (dock) {
- this._dockPanel.restoreLayout(dock);
- }
- if (mode) {
- this.mode = mode;
- }
- if (currentWidget) {
- this.activateById(currentWidget.id);
- }
- }
- // Rehydrate the left area.
- if (leftArea) {
- this._leftHandler.rehydrate(leftArea);
- }
- // Rehydrate the right area.
- if (rightArea) {
- this._rightHandler.rehydrate(rightArea);
- }
- if (!this._isRestored) {
- // Make sure all messages in the queue are finished before notifying
- // any extensions that are waiting for the promise that guarantees the
- // application state has been restored.
- MessageLoop.flush();
- this._restored.resolve(layout);
- }
- }
- /**
- * Save the dehydrated state of the application shell.
- */
- saveLayout(): ILabShell.ILayout {
- // If the application is in single document mode, use the cached layout if
- // available. Otherwise, default to querying the dock panel for layout.
- return {
- mainArea: {
- currentWidget: this._tracker.currentWidget,
- dock:
- this.mode === 'single-document'
- ? this._cachedLayout || this._dockPanel.saveLayout()
- : this._dockPanel.saveLayout(),
- mode: this._dockPanel.mode
- },
- leftArea: this._leftHandler.dehydrate(),
- rightArea: this._rightHandler.dehydrate()
- };
- }
- /**
- * Returns the widgets for an application area.
- */
- widgets(area?: ILabShell.Area): IIterator<Widget> {
- switch (area || 'main') {
- case 'main':
- return this._dockPanel.widgets();
- case 'left':
- return iter(this._leftHandler.sideBar.titles.map(t => t.owner));
- case 'right':
- return iter(this._rightHandler.sideBar.titles.map(t => t.owner));
- case 'header':
- return this._headerPanel.children();
- case 'top':
- return this._topPanel.children();
- case 'bottom':
- return this._bottomPanel.children();
- default:
- throw new Error(`Invalid area: ${area}`);
- }
- }
- /**
- * Handle `after-attach` messages for the application shell.
- */
- protected onAfterAttach(msg: Message): void {
- this.node.dataset.shellMode = this.mode;
- }
- /**
- * Add a widget to the left content area.
- *
- * #### Notes
- * Widgets must have a unique `id` property, which will be used as the DOM id.
- */
- private _addToLeftArea(
- widget: Widget,
- options?: DocumentRegistry.IOpenOptions
- ): void {
- if (!widget.id) {
- console.error('Widgets added to app shell must have unique id property.');
- return;
- }
- options = options || this._sideOptionsCache.get(widget) || {};
- this._sideOptionsCache.set(widget, options);
- let rank = 'rank' in options ? options.rank : DEFAULT_RANK;
- this._leftHandler.addWidget(widget, rank!);
- this._onLayoutModified();
- }
- /**
- * Add a widget to the main content area.
- *
- * #### Notes
- * Widgets must have a unique `id` property, which will be used as the DOM id.
- * All widgets added to the main area should be disposed after removal
- * (disposal before removal will remove the widget automatically).
- *
- * In the options, `ref` defaults to `null`, `mode` defaults to `'tab-after'`,
- * and `activate` defaults to `true`.
- */
- private _addToMainArea(
- widget: Widget,
- options?: DocumentRegistry.IOpenOptions
- ): void {
- if (!widget.id) {
- console.error('Widgets added to app shell must have unique id property.');
- return;
- }
- options = options || {};
- const dock = this._dockPanel;
- const mode = options.mode || 'tab-after';
- let ref: Widget | null = this.currentWidget;
- if (options.ref) {
- ref = find(dock.widgets(), value => value.id === options.ref!) || null;
- }
- // Add widget ID to tab so that we can get a handle on the tab's widget
- // (for context menu support)
- widget.title.dataset = { ...widget.title.dataset, id: widget.id };
- dock.addWidget(widget, { mode, ref });
- // The dock panel doesn't account for placement information while
- // in single document mode, so upon rehydrating any widgets that were
- // added will not be in the correct place. Cache the placement information
- // here so that we can later rehydrate correctly.
- if (dock.mode === 'single-document') {
- this._mainOptionsCache.set(widget, options);
- }
- if (options.activate !== false) {
- dock.activateWidget(widget);
- }
- }
- /**
- * Add a widget to the right content area.
- *
- * #### Notes
- * Widgets must have a unique `id` property, which will be used as the DOM id.
- */
- private _addToRightArea(
- widget: Widget,
- options?: DocumentRegistry.IOpenOptions
- ): void {
- if (!widget.id) {
- console.error('Widgets added to app shell must have unique id property.');
- return;
- }
- options = options || this._sideOptionsCache.get(widget) || {};
- const rank = 'rank' in options ? options.rank : DEFAULT_RANK;
- this._sideOptionsCache.set(widget, options);
- this._rightHandler.addWidget(widget, rank!);
- this._onLayoutModified();
- }
- /**
- * Add a widget to the top content area.
- *
- * #### Notes
- * Widgets must have a unique `id` property, which will be used as the DOM id.
- */
- private _addToTopArea(
- widget: Widget,
- options?: DocumentRegistry.IOpenOptions
- ): void {
- if (!widget.id) {
- console.error('Widgets added to app shell must have unique id property.');
- return;
- }
- // Temporary: widgets are added to the panel in order of insertion.
- this._topPanel.addWidget(widget);
- this._onLayoutModified();
- }
- /**
- * Add a widget to the header content area.
- *
- * #### Notes
- * Widgets must have a unique `id` property, which will be used as the DOM id.
- */
- private _addToHeaderArea(
- widget: Widget,
- options?: DocumentRegistry.IOpenOptions
- ): void {
- if (!widget.id) {
- console.error('Widgets added to app shell must have unique id property.');
- return;
- }
- // Temporary: widgets are added to the panel in order of insertion.
- this._headerPanel.addWidget(widget);
- this._onLayoutModified();
- if (this._headerPanel.isHidden) {
- this._headerPanel.show();
- }
- }
- /**
- * Add a widget to the bottom content area.
- *
- * #### Notes
- * Widgets must have a unique `id` property, which will be used as the DOM id.
- */
- private _addToBottomArea(
- widget: Widget,
- options?: DocumentRegistry.IOpenOptions
- ): void {
- if (!widget.id) {
- console.error('Widgets added to app shell must have unique id property.');
- return;
- }
- // Temporary: widgets are added to the panel in order of insertion.
- this._bottomPanel.addWidget(widget);
- this._onLayoutModified();
- if (this._bottomPanel.isHidden) {
- this._bottomPanel.show();
- }
- }
- /*
- * Return the tab bar adjacent to the current TabBar or `null`.
- */
- private _adjacentBar(direction: 'next' | 'previous'): TabBar<Widget> | null {
- const current = this._currentTabBar();
- if (!current) {
- return null;
- }
- const bars = toArray(this._dockPanel.tabBars());
- const len = bars.length;
- const index = bars.indexOf(current);
- if (direction === 'previous') {
- return index > 0 ? bars[index - 1] : index === 0 ? bars[len - 1] : null;
- }
- // Otherwise, direction is 'next'.
- return index < len - 1
- ? bars[index + 1]
- : index === len - 1
- ? bars[0]
- : null;
- }
- /*
- * Return the TabBar that has the currently active Widget or null.
- */
- private _currentTabBar(): TabBar<Widget> | null {
- const current = this._tracker.currentWidget;
- if (!current) {
- return null;
- }
- const title = current.title;
- const bars = this._dockPanel.tabBars();
- return find(bars, bar => bar.titles.indexOf(title) > -1) || null;
- }
- /**
- * Handle a change to the dock area active widget.
- */
- private _onActiveChanged(
- sender: any,
- args: FocusTracker.IChangedArgs<Widget>
- ): void {
- if (args.newValue) {
- args.newValue.title.className += ` ${ACTIVE_CLASS}`;
- }
- if (args.oldValue) {
- args.oldValue.title.className = args.oldValue.title.className.replace(
- ACTIVE_CLASS,
- ''
- );
- }
- this._activeChanged.emit(args);
- }
- /**
- * Handle a change to the dock area current widget.
- */
- private _onCurrentChanged(
- sender: any,
- args: FocusTracker.IChangedArgs<Widget>
- ): void {
- if (args.newValue) {
- args.newValue.title.className += ` ${CURRENT_CLASS}`;
- }
- if (args.oldValue) {
- args.oldValue.title.className = args.oldValue.title.className.replace(
- CURRENT_CLASS,
- ''
- );
- }
- this._currentChanged.emit(args);
- this._onLayoutModified();
- }
- /**
- * Handle a change to the layout.
- */
- private _onLayoutModified(): void {
- void this._layoutDebouncer.invoke();
- }
- /**
- * A message hook for child add/remove messages on the main area dock panel.
- */
- private _dockChildHook = (
- handler: IMessageHandler,
- msg: Message
- ): boolean => {
- switch (msg.type) {
- case 'child-added':
- (msg as Widget.ChildMessage).child.addClass(ACTIVITY_CLASS);
- this._tracker.add((msg as Widget.ChildMessage).child);
- break;
- case 'child-removed':
- (msg as Widget.ChildMessage).child.removeClass(ACTIVITY_CLASS);
- this._tracker.remove((msg as Widget.ChildMessage).child);
- break;
- default:
- break;
- }
- return true;
- };
- private _activeChanged = new Signal<this, ILabShell.IChangedArgs>(this);
- private _cachedLayout: DockLayout.ILayoutConfig | null = null;
- private _currentChanged = new Signal<this, ILabShell.IChangedArgs>(this);
- private _dockPanel: DockPanel;
- private _isRestored = false;
- private _layoutModified = new Signal<this, void>(this);
- private _layoutDebouncer = new Debouncer(() => {
- this._layoutModified.emit(undefined);
- }, 0);
- private _leftHandler: Private.SideBarHandler;
- private _restored = new PromiseDelegate<ILabShell.ILayout>();
- private _rightHandler: Private.SideBarHandler;
- private _tracker = new FocusTracker<Widget>();
- private _headerPanel: Panel;
- private _topPanel: Panel;
- private _bottomPanel: Panel;
- private _mainOptionsCache = new Map<Widget, DocumentRegistry.IOpenOptions>();
- private _sideOptionsCache = new Map<Widget, DocumentRegistry.IOpenOptions>();
- }
- namespace Private {
- /**
- * An object which holds a widget and its sort rank.
- */
- export interface IRankItem {
- /**
- * The widget for the item.
- */
- widget: Widget;
- /**
- * The sort rank of the widget.
- */
- rank: number;
- }
- /**
- * A less-than comparison function for side bar rank items.
- */
- export function itemCmp(first: IRankItem, second: IRankItem): number {
- return first.rank - second.rank;
- }
- /**
- * Removes widgets that have been disposed from an area config, mutates area.
- */
- export function normalizeAreaConfig(
- parent: DockPanel,
- area?: DockLayout.AreaConfig | null
- ): void {
- if (!area) {
- return;
- }
- if (area.type === 'tab-area') {
- area.widgets = area.widgets.filter(
- widget => !widget.isDisposed && widget.parent === parent
- ) as Widget[];
- return;
- }
- area.children.forEach(child => {
- normalizeAreaConfig(parent, child);
- });
- }
- /**
- * A class which manages a side bar and related stacked panel.
- */
- export class SideBarHandler {
- /**
- * Construct a new side bar handler.
- */
- constructor(side: string) {
- this._sideBar = new TabBarSvg<Widget>({
- kind: 'sideBar',
- insertBehavior: 'none',
- removeBehavior: 'none',
- allowDeselect: true
- });
- this._stackedPanel = new StackedPanel();
- this._sideBar.hide();
- this._stackedPanel.hide();
- this._lastCurrent = null;
- this._sideBar.currentChanged.connect(this._onCurrentChanged, this);
- this._sideBar.tabActivateRequested.connect(
- this._onTabActivateRequested,
- this
- );
- this._stackedPanel.widgetRemoved.connect(this._onWidgetRemoved, this);
- }
- /**
- * Get the tab bar managed by the handler.
- */
- get sideBar(): TabBar<Widget> {
- return this._sideBar;
- }
- /**
- * Get the stacked panel managed by the handler
- */
- get stackedPanel(): StackedPanel {
- return this._stackedPanel;
- }
- /**
- * Expand the sidebar.
- *
- * #### Notes
- * This will open the most recently used tab, or the first tab
- * if there is no most recently used.
- */
- expand(): void {
- const previous =
- this._lastCurrent || (this._items.length > 0 && this._items[0].widget);
- if (previous) {
- this.activate(previous.id);
- }
- }
- /**
- * Activate a widget residing in the side bar by ID.
- *
- * @param id - The widget's unique ID.
- */
- activate(id: string): void {
- let widget = this._findWidgetByID(id);
- if (widget) {
- this._sideBar.currentTitle = widget.title;
- widget.activate();
- }
- }
- /**
- * Test whether the sidebar has the given widget by id.
- */
- has(id: string): boolean {
- return this._findWidgetByID(id) !== null;
- }
- /**
- * Collapse the sidebar so no items are expanded.
- */
- collapse(): void {
- this._sideBar.currentTitle = null;
- }
- /**
- * Add a widget and its title to the stacked panel and side bar.
- *
- * If the widget is already added, it will be moved.
- */
- addWidget(widget: Widget, rank: number): void {
- widget.parent = null;
- widget.hide();
- let item = { widget, rank };
- let index = this._findInsertIndex(item);
- ArrayExt.insert(this._items, index, item);
- this._stackedPanel.insertWidget(index, widget);
- const title = this._sideBar.insertTab(index, widget.title);
- // Store the parent id in the title dataset
- // in order to dispatch click events to the right widget.
- title.dataset = { id: widget.id };
- this._refreshVisibility();
- }
- /**
- * Dehydrate the side bar data.
- */
- dehydrate(): ILabShell.ISideArea {
- let collapsed = this._sideBar.currentTitle === null;
- let widgets = toArray(this._stackedPanel.widgets);
- let currentWidget = widgets[this._sideBar.currentIndex];
- return { collapsed, currentWidget, widgets };
- }
- /**
- * Rehydrate the side bar.
- */
- rehydrate(data: ILabShell.ISideArea): void {
- if (data.currentWidget) {
- this.activate(data.currentWidget.id);
- } else if (data.collapsed) {
- this.collapse();
- }
- }
- /**
- * Find the insertion index for a rank item.
- */
- private _findInsertIndex(item: Private.IRankItem): number {
- return ArrayExt.upperBound(this._items, item, Private.itemCmp);
- }
- /**
- * Find the index of the item with the given widget, or `-1`.
- */
- private _findWidgetIndex(widget: Widget): number {
- return ArrayExt.findFirstIndex(this._items, i => i.widget === widget);
- }
- /**
- * Find the widget which owns the given title, or `null`.
- */
- private _findWidgetByTitle(title: Title<Widget>): Widget | null {
- let item = find(this._items, value => value.widget.title === title);
- return item ? item.widget : null;
- }
- /**
- * Find the widget with the given id, or `null`.
- */
- private _findWidgetByID(id: string): Widget | null {
- let item = find(this._items, value => value.widget.id === id);
- return item ? item.widget : null;
- }
- /**
- * Refresh the visibility of the side bar and stacked panel.
- */
- private _refreshVisibility(): void {
- this._sideBar.setHidden(this._sideBar.titles.length === 0);
- this._stackedPanel.setHidden(this._sideBar.currentTitle === null);
- }
- /**
- * Handle the `currentChanged` signal from the sidebar.
- */
- private _onCurrentChanged(
- sender: TabBar<Widget>,
- args: TabBar.ICurrentChangedArgs<Widget>
- ): void {
- const oldWidget = args.previousTitle
- ? this._findWidgetByTitle(args.previousTitle)
- : null;
- const newWidget = args.currentTitle
- ? this._findWidgetByTitle(args.currentTitle)
- : null;
- if (oldWidget) {
- oldWidget.hide();
- }
- if (newWidget) {
- newWidget.show();
- }
- this._lastCurrent = newWidget || oldWidget;
- this._refreshVisibility();
- }
- /**
- * Handle a `tabActivateRequest` signal from the sidebar.
- */
- private _onTabActivateRequested(
- sender: TabBar<Widget>,
- args: TabBar.ITabActivateRequestedArgs<Widget>
- ): void {
- args.title.owner.activate();
- }
- /*
- * Handle the `widgetRemoved` signal from the stacked panel.
- */
- private _onWidgetRemoved(sender: StackedPanel, widget: Widget): void {
- if (widget === this._lastCurrent) {
- this._lastCurrent = null;
- }
- ArrayExt.removeAt(this._items, this._findWidgetIndex(widget));
- this._sideBar.removeTab(widget.title);
- this._refreshVisibility();
- }
- private _items = new Array<Private.IRankItem>();
- private _sideBar: TabBar<Widget>;
- private _stackedPanel: StackedPanel;
- private _lastCurrent: Widget | null;
- }
- }
|