123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- // Copyright (c) Jupyter Development Team.
- // Distributed under the terms of the Modified BSD License.
- import { CodeEditor } from '@jupyterlab/codeeditor';
- import { IDataConnector, Text, Debouncer } from '@jupyterlab/coreutils';
- import { MimeModel, IRenderMimeRegistry } from '@jupyterlab/rendermime';
- import { ReadonlyJSONObject } from '@phosphor/coreutils';
- import { IDisposable } from '@phosphor/disposable';
- import { ISignal, Signal } from '@phosphor/signaling';
- import { IInspector } from './tokens';
- /**
- * An object that handles code inspection.
- */
- export class InspectionHandler implements IDisposable, IInspector.IInspectable {
- /**
- * Construct a new inspection handler for a widget.
- */
- constructor(options: InspectionHandler.IOptions) {
- this._connector = options.connector;
- this._rendermime = options.rendermime;
- this._debouncer = new Debouncer(this.onEditorChange.bind(this), 250);
- }
- /**
- * A signal emitted when the inspector should clear all items.
- */
- get cleared(): ISignal<InspectionHandler, void> {
- return this._cleared;
- }
- /**
- * A signal emitted when the handler is disposed.
- */
- get disposed(): ISignal<InspectionHandler, void> {
- return this._disposed;
- }
- /**
- * A signal emitted when an inspector value is generated.
- */
- get inspected(): ISignal<InspectionHandler, IInspector.IInspectorUpdate> {
- return this._inspected;
- }
- /**
- * The editor widget used by the inspection handler.
- */
- get editor(): CodeEditor.IEditor | null {
- return this._editor;
- }
- set editor(newValue: CodeEditor.IEditor | null) {
- if (newValue === this._editor) {
- return;
- }
- // Remove all of our listeners.
- Signal.disconnectReceiver(this);
- let editor = (this._editor = newValue);
- if (editor) {
- // Clear the inspector in preparation for a new editor.
- this._cleared.emit(void 0);
- // Call onEditorChange to cover the case where the user changes
- // the active cell
- this.onEditorChange();
- editor.model.selections.changed.connect(this._onChange, this);
- editor.model.value.changed.connect(this._onChange, this);
- }
- }
- /**
- * Indicates whether the handler makes API inspection requests or stands by.
- *
- * #### Notes
- * The use case for this attribute is to limit the API traffic when no
- * inspector is visible.
- */
- get standby(): boolean {
- return this._standby;
- }
- set standby(value: boolean) {
- this._standby = value;
- }
- /**
- * Get whether the inspection handler is disposed.
- *
- * #### Notes
- * This is a read-only property.
- */
- get isDisposed(): boolean {
- return this._isDisposed;
- }
- /**
- * Dispose of the resources used by the handler.
- */
- dispose(): void {
- if (this.isDisposed) {
- return;
- }
- this._isDisposed = true;
- this._disposed.emit(void 0);
- Signal.clearData(this);
- }
- /**
- * Handle a text changed signal from an editor.
- *
- * #### Notes
- * Update the hints inspector based on a text change.
- */
- protected onEditorChange(): void {
- // If the handler is in standby mode, bail.
- if (this._standby) {
- return;
- }
- const editor = this.editor;
- if (!editor) {
- return;
- }
- const text = editor.model.value.text;
- const position = editor.getCursorPosition();
- const offset = Text.jsIndexToCharIndex(editor.getOffsetAt(position), text);
- const update: IInspector.IInspectorUpdate = { content: null };
- const pending = ++this._pending;
- void this._connector
- .fetch({ offset, text })
- .then(reply => {
- // If handler has been disposed or a newer request is pending, bail.
- if (this.isDisposed || pending !== this._pending) {
- this._inspected.emit(update);
- return;
- }
- const { data } = reply;
- const mimeType = this._rendermime.preferredMimeType(data);
- if (mimeType) {
- const widget = this._rendermime.createRenderer(mimeType);
- const model = new MimeModel({ data });
- void widget.renderModel(model);
- update.content = widget;
- }
- this._inspected.emit(update);
- })
- .catch(reason => {
- // Since almost all failures are benign, fail silently.
- this._inspected.emit(update);
- });
- }
- /**
- * Handle changes to the editor state, debouncing.
- */
- private _onChange(): void {
- void this._debouncer.invoke();
- }
- private _cleared = new Signal<InspectionHandler, void>(this);
- private _connector: IDataConnector<
- InspectionHandler.IReply,
- void,
- InspectionHandler.IRequest
- >;
- private _disposed = new Signal<this, void>(this);
- private _editor: CodeEditor.IEditor | null = null;
- private _inspected = new Signal<this, IInspector.IInspectorUpdate>(this);
- private _isDisposed = false;
- private _pending = 0;
- private _rendermime: IRenderMimeRegistry;
- private _standby = true;
- private _debouncer: Debouncer;
- }
- /**
- * A namespace for inspection handler statics.
- */
- export namespace InspectionHandler {
- /**
- * The instantiation options for an inspection handler.
- */
- export interface IOptions {
- /**
- * The connector used to make inspection requests.
- *
- * #### Notes
- * The only method of this connector that will ever be called is `fetch`, so
- * it is acceptable for the other methods to be simple functions that return
- * rejected promises.
- */
- connector: IDataConnector<IReply, void, IRequest>;
- /**
- * The mime renderer for the inspection handler.
- */
- rendermime: IRenderMimeRegistry;
- }
- /**
- * A reply to an inspection request.
- */
- export interface IReply {
- /**
- * The MIME bundle data returned from an inspection request.
- */
- data: ReadonlyJSONObject;
- /**
- * Any metadata that accompanies the MIME bundle returning from a request.
- */
- metadata: ReadonlyJSONObject;
- }
- /**
- * The details of an inspection request.
- */
- export interface IRequest {
- /**
- * The cursor offset position within the text being inspected.
- */
- offset: number;
- /**
- * The text being inspected.
- */
- text: string;
- }
- }
|