123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946 |
- // Copyright (c) Jupyter Development Team.
- // Distributed under the terms of the Modified BSD License.
- import { JupyterFrontEnd } from '@jupyterlab/application';
- import { VDomRenderer, ToolbarButtonComponent } from '@jupyterlab/apputils';
- import { ServiceManager } from '@jupyterlab/services';
- import { ISettingRegistry } from '@jupyterlab/settingregistry';
- import {
- Button,
- caretDownIcon,
- caretRightIcon,
- Collapse,
- InputGroup,
- jupyterIcon,
- listingsInfoIcon,
- refreshIcon
- } from '@jupyterlab/ui-components';
- import { Message } from '@lumino/messaging';
- import * as React from 'react';
- import ReactPaginate from 'react-paginate';
- import { ListModel, IEntry, Action } from './model';
- import { isJupyterOrg } from './npm';
- // TODO: Replace pagination with lazy loading of lower search results
- /**
- * Icons with custom styling bound.
- */
- const caretDownIconStyled = caretDownIcon.bindprops({
- height: 'auto',
- width: '20px'
- });
- const caretRightIconStyled = caretRightIcon.bindprops({
- height: 'auto',
- width: '20px'
- });
- const badgeSize = 32;
- const badgeQuerySize = Math.floor(devicePixelRatio * badgeSize);
- /**
- * Search bar VDOM component.
- */
- export class SearchBar extends React.Component<
- SearchBar.IProperties,
- SearchBar.IState
- > {
- constructor(props: SearchBar.IProperties) {
- super(props);
- this.state = {
- value: ''
- };
- }
- /**
- * Render the list view using the virtual DOM.
- */
- render(): React.ReactNode {
- return (
- <div className="jp-extensionmanager-search-bar">
- <InputGroup
- className="jp-extensionmanager-search-wrapper"
- type="text"
- placeholder={this.props.placeholder}
- onChange={this.handleChange}
- value={this.state.value}
- rightIcon="ui-components:search"
- disabled={this.props.disabled}
- />
- </div>
- );
- }
- /**
- * Handler for search input changes.
- */
- handleChange = (e: React.FormEvent<HTMLElement>) => {
- const target = e.target as HTMLInputElement;
- this.setState({
- value: target.value
- });
- };
- }
- /**
- * The namespace for search bar statics.
- */
- export namespace SearchBar {
- /**
- * React properties for search bar component.
- */
- export interface IProperties {
- /**
- * The placeholder string to use in the search bar input field when empty.
- */
- placeholder: string;
- disabled: boolean;
- settings: ISettingRegistry.ISettings;
- }
- /**
- * React state for search bar component.
- */
- export interface IState {
- /**
- * The value of the search bar input field.
- */
- value: string;
- }
- }
- /**
- * Create a build prompt as a react element.
- *
- * @param props Configuration of the build prompt.
- */
- function BuildPrompt(props: BuildPrompt.IProperties): React.ReactElement<any> {
- return (
- <div className="jp-extensionmanager-buildprompt">
- <div className="jp-extensionmanager-buildmessage">
- A build is needed to include the latest changes
- </div>
- <Button onClick={props.performBuild} minimal small>
- Rebuild
- </Button>
- <Button onClick={props.ignoreBuild} minimal small>
- Ignore
- </Button>
- </div>
- );
- }
- /**
- * The namespace for build prompt statics.
- */
- namespace BuildPrompt {
- /**
- * Properties for build prompt react component.
- */
- export interface IProperties {
- /**
- * Callback for when a build is requested.
- */
- performBuild: () => void;
- /**
- * Callback for when a build notice is dismissed.
- */
- ignoreBuild: () => void;
- }
- }
- function getExtensionGitHubUser(entry: IEntry) {
- if (entry.url && entry.url.startsWith('https://github.com/')) {
- return entry.url.split('/')[3];
- }
- return null;
- }
- /**
- * VDOM for visualizing an extension entry.
- */
- function ListEntry(props: ListEntry.IProperties): React.ReactElement<any> {
- const { entry, listMode, viewType } = props;
- const flagClasses = [];
- if (entry.status && ['ok', 'warning', 'error'].indexOf(entry.status) !== -1) {
- flagClasses.push(`jp-extensionmanager-entry-${entry.status}`);
- }
- let title = entry.name;
- const entryIsJupyterOrg = isJupyterOrg(entry.name);
- if (entryIsJupyterOrg) {
- title = `${entry.name} (Developed by Project Jupyter)`;
- }
- const githubUser = getExtensionGitHubUser(entry);
- if (
- listMode === 'block' &&
- entry.blockedExtensionsEntry &&
- viewType === 'searchResult'
- ) {
- return <li></li>;
- }
- if (
- listMode === 'allow' &&
- !entry.allowedExtensionsEntry &&
- viewType === 'searchResult'
- ) {
- return <li></li>;
- }
- if (listMode === 'block' && entry.blockedExtensionsEntry?.name) {
- flagClasses.push(`jp-extensionmanager-entry-should-be-uninstalled`);
- }
- if (listMode === 'allow' && !entry.allowedExtensionsEntry) {
- flagClasses.push(`jp-extensionmanager-entry-should-be-uninstalled`);
- }
- return (
- <li
- className={`jp-extensionmanager-entry ${flagClasses.join(' ')}`}
- title={title}
- style={{ display: 'flex' }}
- >
- <div style={{ marginRight: '8px' }}>
- {githubUser && (
- <img
- src={`https://github.com/${githubUser}.png?size=${badgeQuerySize}`}
- style={{ width: '32px', height: '32px' }}
- />
- )}
- {!githubUser && (
- <div style={{ width: `${badgeSize}px`, height: `${badgeSize}px` }} />
- )}
- </div>
- <div className="jp-extensionmanager-entry-description">
- <div className="jp-extensionmanager-entry-title">
- <div className="jp-extensionmanager-entry-name">
- <a href={entry.url} target="_blank" rel="noopener noreferrer">
- {entry.name}
- </a>
- </div>
- {entry.blockedExtensionsEntry && (
- <ToolbarButtonComponent
- icon={listingsInfoIcon}
- iconLabel={`${entry.name} extension has been blockedExtensionsed since install. Please uninstall immediately and contact your blockedExtensions administrator.`}
- onClick={() =>
- window.open(
- 'https://jupyterlab.readthedocs.io/en/stable/user/extensions.html'
- )
- }
- />
- )}
- {!entry.allowedExtensionsEntry &&
- viewType === 'installed' &&
- listMode === 'allow' && (
- <ToolbarButtonComponent
- icon={listingsInfoIcon}
- iconLabel={`${entry.name} extension has been removed from the allowedExtensions since installation. Please uninstall immediately and contact your allowedExtensions administrator.`}
- onClick={() =>
- window.open(
- 'https://jupyterlab.readthedocs.io/en/stable/user/extensions.html'
- )
- }
- />
- )}
- {entryIsJupyterOrg && (
- <jupyterIcon.react
- className="jp-extensionmanager-is-jupyter-org"
- top="1px"
- height="auto"
- width="1em"
- />
- )}
- </div>
- <div className="jp-extensionmanager-entry-content">
- <div className="jp-extensionmanager-entry-description">
- {entry.description}
- </div>
- <div className="jp-extensionmanager-entry-buttons">
- {!entry.installed &&
- !entry.blockedExtensionsEntry &&
- !(!entry.allowedExtensionsEntry && listMode === 'allow') &&
- ListModel.isDisclaimed() && (
- <Button
- onClick={() => props.performAction('install', entry)}
- minimal
- small
- >
- Install
- </Button>
- )}
- {ListModel.entryHasUpdate(entry) &&
- !entry.blockedExtensionsEntry &&
- !(!entry.allowedExtensionsEntry && listMode === 'allow') &&
- ListModel.isDisclaimed() && (
- <Button
- onClick={() => props.performAction('install', entry)}
- minimal
- small
- >
- Update
- </Button>
- )}
- {entry.installed && (
- <Button
- onClick={() => props.performAction('uninstall', entry)}
- minimal
- small
- >
- Uninstall
- </Button>
- )}
- {entry.enabled && (
- <Button
- onClick={() => props.performAction('disable', entry)}
- minimal
- small
- >
- Disable
- </Button>
- )}
- {entry.installed && !entry.enabled && (
- <Button
- onClick={() => props.performAction('enable', entry)}
- minimal
- small
- >
- Enable
- </Button>
- )}
- </div>
- </div>
- </div>
- </li>
- );
- }
- /**
- * The namespace for extension entry statics.
- */
- export namespace ListEntry {
- export interface IProperties {
- /**
- * The entry to visualize.
- */
- entry: IEntry;
- /**
- * The list mode to apply.
- */
- listMode: 'block' | 'allow' | 'default' | 'invalid';
- /**
- * The requested view type.
- */
- viewType: 'installed' | 'searchResult';
- /**
- * Callback to use for performing an action on the entry.
- */
- performAction: (action: Action, entry: IEntry) => void;
- }
- }
- /**
- * List view widget for extensions
- */
- export function ListView(props: ListView.IProperties): React.ReactElement<any> {
- const entryViews = [];
- for (const entry of props.entries) {
- entryViews.push(
- <ListEntry
- entry={entry}
- listMode={props.listMode}
- viewType={props.viewType}
- key={entry.name}
- performAction={props.performAction}
- />
- );
- }
- let pagination;
- if (props.numPages > 1) {
- pagination = (
- <div className="jp-extensionmanager-pagination">
- <ReactPaginate
- previousLabel={'<'}
- nextLabel={'>'}
- breakLabel={<a href="">...</a>}
- breakClassName={'break-me'}
- pageCount={props.numPages}
- marginPagesDisplayed={2}
- pageRangeDisplayed={5}
- onPageChange={(data: { selected: number }) =>
- props.onPage(data.selected)
- }
- containerClassName={'pagination'}
- activeClassName={'active'}
- />
- </div>
- );
- }
- const listview = (
- <ul className="jp-extensionmanager-listview">{entryViews}</ul>
- );
- return (
- <div className="jp-extensionmanager-listview-wrapper">
- {entryViews.length > 0 ? (
- listview
- ) : (
- <div key="message" className="jp-extensionmanager-listview-message">
- No entries
- </div>
- )}
- {pagination}
- </div>
- );
- }
- /**
- * The namespace for list view widget statics.
- */
- export namespace ListView {
- export interface IProperties {
- /**
- * The extension entries to display.
- */
- entries: ReadonlyArray<IEntry>;
- /**
- * The number of pages that can be viewed via pagination.
- */
- numPages: number;
- /**
- * The list mode to apply.
- */
- listMode: 'block' | 'allow' | 'default' | 'invalid';
- /**
- * The requested view type.
- */
- viewType: 'installed' | 'searchResult';
- /**
- * The callback to use for changing the page
- */
- onPage: (page: number) => void;
- /**
- * Callback to use for performing an action on an entry.
- */
- performAction: (action: Action, entry: IEntry) => void;
- }
- }
- function ErrorMessage(props: ErrorMessage.IProperties) {
- return (
- <div key="error-msg" className="jp-extensionmanager-error">
- {props.children}
- </div>
- );
- }
- namespace ErrorMessage {
- export interface IProperties {
- children: React.ReactNode;
- }
- }
- /**
- *
- */
- export class CollapsibleSection extends React.Component<
- CollapsibleSection.IProperties,
- CollapsibleSection.IState
- > {
- constructor(props: CollapsibleSection.IProperties) {
- super(props);
- this.state = {
- isOpen: props.isOpen ? true : false
- };
- }
- /**
- * Render the collapsible section using the virtual DOM.
- */
- render(): React.ReactNode {
- let icon = this.state.isOpen ? caretDownIconStyled : caretRightIconStyled;
- let isOpen = this.state.isOpen;
- let className = 'jp-extensionmanager-headerText';
- if (this.props.disabled) {
- icon = caretRightIconStyled;
- isOpen = false;
- className = 'jp-extensionmanager-headerTextDisabled';
- }
- return (
- <>
- <header>
- <ToolbarButtonComponent
- icon={icon}
- onClick={() => {
- this.handleCollapse();
- }}
- />
- <span className={className}>{this.props.header}</span>
- {!this.props.disabled && this.props.headerElements}
- </header>
- <Collapse isOpen={isOpen}>{this.props.children}</Collapse>
- </>
- );
- }
- /**
- * Handler for search input changes.
- */
- handleCollapse() {
- this.setState(
- {
- isOpen: !this.state.isOpen
- },
- () => {
- if (this.props.onCollapse) {
- this.props.onCollapse(this.state.isOpen);
- }
- }
- );
- }
- UNSAFE_componentWillReceiveProps(nextProps: CollapsibleSection.IProperties) {
- if (nextProps.forceOpen) {
- this.setState({
- isOpen: true
- });
- }
- }
- }
- /**
- * The namespace for collapsible section statics.
- */
- export namespace CollapsibleSection {
- /**
- * React properties for collapsible section component.
- */
- export interface IProperties {
- /**
- * The header string for section list.
- */
- header: string;
- /**
- * Whether the view will be expanded or collapsed initially, defaults to open.
- */
- isOpen?: boolean;
- /**
- * Handle collapse event.
- */
- onCollapse?: (isOpen: boolean) => void;
- /**
- * Any additional elements to add to the header.
- */
- headerElements?: React.ReactNode;
- /**
- * If given, this will be diplayed instead of the children.
- */
- errorMessage?: string | null;
- /**
- * If true, the section will be collapsed and will not respond
- * to open nor close actions.
- */
- disabled?: boolean;
- /**
- * If true, the section will be opened if not disabled.
- */
- forceOpen?: boolean;
- }
- /**
- * React state for collapsible section component.
- */
- export interface IState {
- /**
- * Whether the section is expanded or collapsed.
- */
- isOpen: boolean;
- }
- }
- /**
- * The main view for the discovery extension.
- */
- export class ExtensionView extends VDomRenderer<ListModel> {
- private _settings: ISettingRegistry.ISettings;
- private _forceOpen: boolean;
- constructor(
- app: JupyterFrontEnd,
- serviceManager: ServiceManager,
- settings: ISettingRegistry.ISettings
- ) {
- super(new ListModel(app, serviceManager, settings));
- this._settings = settings;
- this._forceOpen = false;
- this.addClass('jp-extensionmanager-view');
- }
- /**
- * The search input node.
- */
- get inputNode(): HTMLInputElement {
- return this.node.querySelector(
- '.jp-extensionmanager-search-wrapper input'
- ) as HTMLInputElement;
- }
- /**
- * Render the extension view using the virtual DOM.
- */
- protected render(): React.ReactElement<any>[] {
- const model = this.model!;
- if (!model.listMode) {
- return [<div key="empty"></div>];
- }
- if (model.listMode === 'invalid') {
- return [
- <div style={{ padding: 8 }} key="invalid">
- <div>
- The extension manager is disabled. Please contact your system
- administrator to verify the listings configuration.
- </div>
- <div>
- <a
- href="https://jupyterlab.readthedocs.io/en/stable/user/extensions.html"
- target="_blank"
- rel="noopener noreferrer"
- >
- Read more in the JupyterLab documentation.
- </a>
- </div>
- </div>
- ];
- }
- const pages = Math.ceil(model.totalEntries / model.pagination);
- const elements = [
- <SearchBar
- key="searchbar"
- placeholder="SEARCH"
- disabled={!ListModel.isDisclaimed()}
- settings={this._settings}
- />
- ];
- if (model.promptBuild) {
- elements.push(
- <BuildPrompt
- key="promt"
- performBuild={() => {
- model.performBuild();
- }}
- ignoreBuild={() => {
- model.ignoreBuildRecommendation();
- }}
- />
- );
- }
- // Indicator element for pending actions:
- elements.push(
- <div
- key="pending"
- className={`jp-extensionmanager-pending ${
- model.hasPendingActions() ? 'jp-mod-hasPending' : ''
- }`}
- />
- );
- const content = [];
- content.push(
- <CollapsibleSection
- key="warning-section"
- isOpen={!ListModel.isDisclaimed()}
- disabled={false}
- header={'Warning'}
- >
- <div className="jp-extensionmanager-disclaimer">
- <div>
- The JupyterLab development team is excited to have a robust
- third-party extension community. However, we do not review
- third-party extensions, and some extensions may introduce security
- risks or contain malicious code that runs on your machine.
- </div>
- <div style={{ paddingTop: 8 }}>
- {ListModel.isDisclaimed() && (
- <Button
- className="jp-extensionmanager-disclaimer-disable"
- onClick={(e: React.MouseEvent<Element, MouseEvent>) => {
- this._settings.set('disclaimed', false).catch(reason => {
- console.error(
- `Something went wrong when setting disclaimed.\n${reason}`
- );
- });
- }}
- >
- Disable
- </Button>
- )}
- {!ListModel.isDisclaimed() && (
- <Button
- className="jp-extensionmanager-disclaimer-enable"
- onClick={(e: React.MouseEvent<Element, MouseEvent>) => {
- this._forceOpen = true;
- this._settings.set('disclaimed', true).catch(reason => {
- console.error(
- `Something went wrong when setting disclaimed.\n${reason}`
- );
- });
- }}
- >
- Enable
- </Button>
- )}
- </div>
- </div>
- </CollapsibleSection>
- );
- if (!model.initialized) {
- content.push(
- <div key="loading-placeholder" className="jp-extensionmanager-loader">
- Updating extensions list
- </div>
- );
- } else if (model.serverConnectionError !== null) {
- content.push(
- <ErrorMessage key="error-msg">
- <p>
- Error communicating with server extension. Consult the documentation
- for how to ensure that it is enabled.
- </p>
- <p>Reason given:</p>
- <pre>{model.serverConnectionError}</pre>
- </ErrorMessage>
- );
- } else if (model.serverRequirementsError !== null) {
- content.push(
- <ErrorMessage key="server-requirements-error">
- <p>
- The server has some missing requirements for installing extensions.
- </p>
- <p>Details:</p>
- <pre>{model.serverRequirementsError}</pre>
- </ErrorMessage>
- );
- } else {
- // List installed and discovery sections
- const installedContent = [];
- if (model.installedError !== null) {
- installedContent.push(
- <ErrorMessage key="install-error">
- {`Error querying installed extensions${
- model.installedError ? `: ${model.installedError}` : '.'
- }`}
- </ErrorMessage>
- );
- } else {
- installedContent.push(
- <ListView
- key="installed-items"
- listMode={model.listMode}
- viewType={'installed'}
- entries={model.installed}
- numPages={1}
- onPage={value => {
- /* no-op */
- }}
- performAction={this.onAction.bind(this)}
- />
- );
- }
- content.push(
- <CollapsibleSection
- key="installed-section"
- isOpen={ListModel.isDisclaimed()}
- forceOpen={this._forceOpen}
- disabled={!ListModel.isDisclaimed()}
- header="Installed"
- headerElements={
- <ToolbarButtonComponent
- key="refresh-button"
- icon={refreshIcon}
- onClick={() => {
- model.refreshInstalled();
- }}
- tooltip="Refresh extension list"
- />
- }
- >
- {installedContent}
- </CollapsibleSection>
- );
- const searchContent = [];
- if (model.searchError !== null) {
- searchContent.push(
- <ErrorMessage key="search-error">
- {`Error searching for extensions${
- model.searchError ? `: ${model.searchError}` : '.'
- }`}
- </ErrorMessage>
- );
- } else {
- searchContent.push(
- <ListView
- key="search-items"
- listMode={model.listMode}
- viewType={'searchResult'}
- // Filter out installed extensions:
- entries={model.searchResult.filter(
- entry => model.installed.indexOf(entry) === -1
- )}
- numPages={pages}
- onPage={value => {
- this.onPage(value);
- }}
- performAction={this.onAction.bind(this)}
- />
- );
- }
- content.push(
- <CollapsibleSection
- key="search-section"
- isOpen={ListModel.isDisclaimed()}
- forceOpen={this._forceOpen}
- disabled={!ListModel.isDisclaimed()}
- header={model.query ? 'Search Results' : 'Discover'}
- onCollapse={(isOpen: boolean) => {
- if (isOpen && model.query === null) {
- model.query = '';
- }
- }}
- >
- {searchContent}
- </CollapsibleSection>
- );
- }
- elements.push(
- <div key="content" className="jp-extensionmanager-content">
- {content}
- </div>
- );
- // Reset the force open for future usage.
- this._forceOpen = false;
- return elements;
- }
- /**
- * Callback handler for the user specifies a new search query.
- *
- * @param value The new query.
- */
- onSearch(value: string) {
- this.model!.query = value;
- }
- /**
- * Callback handler for the user changes the page of the search result pagination.
- *
- * @param value The pagination page number.
- */
- onPage(value: number) {
- this.model!.page = value;
- }
- /**
- * Callback handler for when the user wants to perform an action on an extension.
- *
- * @param action The action to perform.
- * @param entry The entry to perform the action on.
- */
- onAction(action: Action, entry: IEntry) {
- switch (action) {
- case 'install':
- return this.model!.install(entry);
- case 'uninstall':
- return this.model!.uninstall(entry);
- case 'enable':
- return this.model!.enable(entry);
- case 'disable':
- return this.model!.disable(entry);
- default:
- throw new Error(`Invalid action: ${action}`);
- }
- }
- /**
- * Handle the DOM events for the command palette.
- *
- * @param event - The DOM event sent to the command palette.
- *
- * #### Notes
- * This method implements the DOM `EventListener` interface and is
- * called in response to events on the command palette's DOM node.
- * It should not be called directly by user code.
- */
- handleEvent(event: Event): void {
- switch (event.type) {
- case 'input':
- this.onSearch(this.inputNode.value);
- break;
- case 'focus':
- case 'blur':
- this._toggleFocused();
- break;
- default:
- break;
- }
- }
- /**
- * A message handler invoked on a `'before-attach'` message.
- */
- protected onBeforeAttach(msg: Message): void {
- this.node.addEventListener('input', this);
- this.node.addEventListener('focus', this, true);
- this.node.addEventListener('blur', this, true);
- }
- /**
- * A message handler invoked on an `'after-detach'` message.
- */
- protected onAfterDetach(msg: Message): void {
- this.node.removeEventListener('input', this);
- this.node.removeEventListener('focus', this, true);
- this.node.removeEventListener('blur', this, true);
- }
- /**
- * A message handler invoked on an `'activate-request'` message.
- */
- protected onActivateRequest(msg: Message): void {
- if (this.isAttached) {
- const input = this.inputNode;
- if (input) {
- input.focus();
- input.select();
- }
- }
- }
- /**
- * Toggle the focused modifier based on the input node focus state.
- */
- private _toggleFocused(): void {
- const focused = document.activeElement === this.inputNode;
- this.toggleClass('lm-mod-focused', focused);
- }
- }
|