UNPKG

@jupyterlab/filebrowser

Version:
340 lines 9.96 kB
// Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. import { showErrorMessage } from '@jupyterlab/apputils'; import { ServerConnection } from '@jupyterlab/services'; import { nullTranslator } from '@jupyterlab/translation'; import { SidePanel } from '@jupyterlab/ui-components'; import { Panel } from '@lumino/widgets'; import { BreadCrumbs } from './crumbs'; import { DirListing } from './listing'; /** * The class name added to file browsers. */ const FILE_BROWSER_CLASS = 'jp-FileBrowser'; /** * The class name added to file browser panel (gather filter, breadcrumbs and listing). */ const FILE_BROWSER_PANEL_CLASS = 'jp-FileBrowser-Panel'; /** * The class name added to the filebrowser crumbs node. */ const CRUMBS_CLASS = 'jp-FileBrowser-crumbs'; /** * The class name added to the filebrowser toolbar node. */ const TOOLBAR_CLASS = 'jp-FileBrowser-toolbar'; /** * The class name added to the filebrowser listing node. */ const LISTING_CLASS = 'jp-FileBrowser-listing'; /** * A widget which hosts a file browser. * * The widget uses the Jupyter Contents API to retrieve contents, * and presents itself as a flat list of files and directories with * breadcrumbs. */ export class FileBrowser extends SidePanel { /** * Construct a new file browser. * * @param options - The file browser options. */ constructor(options) { var _a; super({ content: new Panel(), translator: options.translator }); this._directoryPending = null; this._filePending = null; this._showLastModifiedColumn = true; this._showFileSizeColumn = false; this._showHiddenFiles = false; this._showFileCheckboxes = false; this._sortNotebooksFirst = false; this.addClass(FILE_BROWSER_CLASS); this.toolbar.addClass(TOOLBAR_CLASS); this.id = options.id; const translator = (this.translator = (_a = options.translator) !== null && _a !== void 0 ? _a : nullTranslator); const model = (this.model = options.model); const renderer = options.renderer; model.connectionFailure.connect(this._onConnectionFailure, this); this._manager = model.manager; // a11y this.toolbar.node.setAttribute('role', 'navigation'); this.toolbar.node.setAttribute('aria-label', this._trans.__('file browser')); // File browser widgets container this.mainPanel = new Panel(); this.mainPanel.addClass(FILE_BROWSER_PANEL_CLASS); this.mainPanel.title.label = this._trans.__('File Browser'); this.crumbs = new BreadCrumbs({ model, translator }); this.crumbs.addClass(CRUMBS_CLASS); this.listing = this.createDirListing({ model, renderer, translator }); this.listing.addClass(LISTING_CLASS); this.mainPanel.addWidget(this.crumbs); this.mainPanel.addWidget(this.listing); this.addWidget(this.mainPanel); if (options.restore !== false) { void model.restore(this.id); } } /** * Whether to show active file in file browser */ get navigateToCurrentDirectory() { return this._navigateToCurrentDirectory; } set navigateToCurrentDirectory(value) { this._navigateToCurrentDirectory = value; } /** * Whether to show the last modified column */ get showLastModifiedColumn() { return this._showLastModifiedColumn; } set showLastModifiedColumn(value) { if (this.listing.setColumnVisibility) { this.listing.setColumnVisibility('last_modified', value); this._showLastModifiedColumn = value; } else { console.warn('Listing does not support toggling column visibility'); } } /** * Whether to show the file size column */ get showFileSizeColumn() { return this._showFileSizeColumn; } set showFileSizeColumn(value) { if (this.listing.setColumnVisibility) { this.listing.setColumnVisibility('file_size', value); this._showFileSizeColumn = value; } else { console.warn('Listing does not support toggling column visibility'); } } /** * Whether to show hidden files */ get showHiddenFiles() { return this._showHiddenFiles; } set showHiddenFiles(value) { this.model.showHiddenFiles(value); this._showHiddenFiles = value; } /** * Whether to show checkboxes next to files and folders */ get showFileCheckboxes() { return this._showFileCheckboxes; } set showFileCheckboxes(value) { if (this.listing.setColumnVisibility) { this.listing.setColumnVisibility('is_selected', value); this._showFileCheckboxes = value; } else { console.warn('Listing does not support toggling column visibility'); } } /** * Whether to sort notebooks above other files */ get sortNotebooksFirst() { return this._sortNotebooksFirst; } set sortNotebooksFirst(value) { if (this.listing.setNotebooksFirstSorting) { this.listing.setNotebooksFirstSorting(value); this._sortNotebooksFirst = value; } else { console.warn('Listing does not support sorting notebooks first'); } } /** * Create an iterator over the listing's selected items. * * @returns A new iterator over the listing's selected items. */ selectedItems() { return this.listing.selectedItems(); } /** * Select an item by name. * * @param name - The name of the item to select. */ async selectItemByName(name) { await this.listing.selectItemByName(name); } clearSelectedItems() { this.listing.clearSelectedItems(); } /** * Rename the first currently selected item. * * @returns A promise that resolves with the new name of the item. */ rename() { return this.listing.rename(); } /** * Cut the selected items. */ cut() { this.listing.cut(); } /** * Copy the selected items. */ copy() { this.listing.copy(); } /** * Paste the items from the clipboard. * * @returns A promise that resolves when the operation is complete. */ paste() { return this.listing.paste(); } async _createNew(options) { try { const model = await this._manager.newUntitled(options); await this.listing.selectItemByName(model.name, true); await this.rename(); return model; } catch (err) { void showErrorMessage(this._trans.__('Error'), err); throw err; } } /** * Create a new directory */ async createNewDirectory() { if (this._directoryPending) { return this._directoryPending; } this._directoryPending = this._createNew({ path: this.model.path, type: 'directory' }); try { return await this._directoryPending; } finally { this._directoryPending = null; } } /** * Create a new file */ async createNewFile(options) { if (this._filePending) { return this._filePending; } this._filePending = this._createNew({ path: this.model.path, type: 'file', ext: options.ext }); try { return await this._filePending; } finally { this._filePending = null; } } /** * Delete the currently selected item(s). * * @returns A promise that resolves when the operation is complete. */ delete() { return this.listing.delete(); } /** * Duplicate the currently selected item(s). * * @returns A promise that resolves when the operation is complete. */ duplicate() { return this.listing.duplicate(); } /** * Download the currently selected item(s). */ download() { return this.listing.download(); } /** * cd .. * * Go up one level in the directory tree. */ async goUp() { return this.listing.goUp(); } /** * Shut down kernels on the applicable currently selected items. * * @returns A promise that resolves when the operation is complete. */ shutdownKernels() { return this.listing.shutdownKernels(); } /** * Select next item. */ selectNext() { this.listing.selectNext(); } /** * Select previous item. */ selectPrevious() { this.listing.selectPrevious(); } /** * Find a model given a click. * * @param event - The mouse event. * * @returns The model for the selected file. */ modelForClick(event) { return this.listing.modelForClick(event); } /** * Create the underlying DirListing instance. * * @param options - The DirListing constructor options. * * @returns The created DirListing instance. */ createDirListing(options) { return new DirListing(options); } /** * Handle a connection lost signal from the model. */ _onConnectionFailure(sender, args) { if (args instanceof ServerConnection.ResponseError && args.response.status === 404) { const title = this._trans.__('Directory not found'); args.message = this._trans.__('Directory not found: "%1"', this.model.path); void showErrorMessage(title, args); } } } //# sourceMappingURL=browser.js.map