123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224 |
- // Copyright (c) Jupyter Development Team.
- // Distributed under the terms of the Modified BSD License.
- import * as CodeMirror
- from 'codemirror';
- import {
- JSONExt
- } from '@phosphor/coreutils';
- import {
- ArrayExt
- } from '@phosphor/algorithm';
- import {
- IDisposable, DisposableDelegate
- } from '@phosphor/disposable';
- import {
- Signal
- } from '@phosphor/signaling';
- import {
- showDialog
- } from '@jupyterlab/apputils';
- import {
- CodeEditor
- } from '@jupyterlab/codeeditor';
- import {
- uuid
- } from '@jupyterlab/coreutils';
- import {
- IObservableMap, IObservableString, ICollaborator
- } from '@jupyterlab/observables';
- import {
- Mode
- } from './mode';
- import 'codemirror/addon/edit/matchbrackets.js';
- import 'codemirror/addon/edit/closebrackets.js';
- import 'codemirror/addon/comment/comment.js';
- import 'codemirror/addon/scroll/scrollpastend.js';
- import 'codemirror/addon/search/searchcursor';
- import 'codemirror/addon/search/search';
- import 'codemirror/keymap/emacs.js';
- import 'codemirror/keymap/sublime.js';
- import 'codemirror/keymap/vim.js';
- /**
- * The class name added to CodeMirrorWidget instances.
- */
- const EDITOR_CLASS = 'jp-CodeMirrorEditor';
- /**
- * The class name added to read only cell editor widgets.
- */
- const READ_ONLY_CLASS = 'jp-mod-readOnly';
- /**
- * The class name for the hover box for collaborator cursors.
- */
- const COLLABORATOR_CURSOR_CLASS = 'jp-CollaboratorCursor';
- /**
- * The class name for the hover box for collaborator cursors.
- */
- const COLLABORATOR_HOVER_CLASS = 'jp-CollaboratorCursor-hover';
- /**
- * The key code for the up arrow key.
- */
- const UP_ARROW = 38;
- /**
- * The key code for the down arrow key.
- */
- const DOWN_ARROW = 40;
- /**
- * The time that a collaborator name hover persists.
- */
- const HOVER_TIMEOUT = 1000;
- /**
- * CodeMirror editor.
- */
- export
- class CodeMirrorEditor implements CodeEditor.IEditor {
- /**
- * Construct a CodeMirror editor.
- */
- constructor(options: CodeMirrorEditor.IOptions) {
- let host = this.host = options.host;
- host.classList.add(EDITOR_CLASS);
- host.classList.add('jp-Editor');
- host.addEventListener('focus', this, true);
- host.addEventListener('blur', this, true);
- host.addEventListener('scroll', this, true);
- this._uuid = options.uuid || uuid();
- // Handle selection style.
- let style = options.selectionStyle || {};
- this._selectionStyle = {
- ...CodeEditor.defaultSelectionStyle,
- ...style as CodeEditor.ISelectionStyle
- };
- let model = this._model = options.model;
- let editor = this._editor = CodeMirror(host, {});
- Private.handleConfig(editor, options.config || {});
- let doc = editor.getDoc();
- // Handle initial values for text, mimetype, and selections.
- doc.setValue(model.value.text);
- this._onMimeTypeChanged();
- this._onCursorActivity();
- this._timer = window.setInterval(() => { this._checkSync(); }, 3000);
- // Connect to changes.
- model.value.changed.connect(this._onValueChanged, this);
- model.mimeTypeChanged.connect(this._onMimeTypeChanged, this);
- model.selections.changed.connect(this._onSelectionsChanged, this);
- CodeMirror.on(editor, 'keydown', (editor, event) => {
- let index = ArrayExt.findFirstIndex(this._keydownHandlers, handler => {
- if (handler(this, event) === true) {
- event.preventDefault();
- return true;
- }
- return false;
- });
- if (index === -1) {
- this.onKeydown(event);
- }
- });
- CodeMirror.on(editor, 'cursorActivity', () => this._onCursorActivity());
- CodeMirror.on(editor.getDoc(), 'beforeChange', (instance, change) => {
- this._beforeDocChanged(instance, change);
- });
- CodeMirror.on(editor.getDoc(), 'change', (instance, change) => {
- // Manually refresh after setValue to make sure editor is properly sized.
- if (change.origin === 'setValue' && this.hasFocus()) {
- this.refresh();
- }
- this._lastChange = change;
- });
- // Manually refresh on paste to make sure editor is properly sized.
- editor.getWrapperElement().addEventListener('paste', () => {
- if (this.hasFocus()) {
- this.refresh();
- }
- });
- }
- /**
- * A signal emitted when either the top or bottom edge is requested.
- */
- readonly edgeRequested = new Signal<this, CodeEditor.EdgeLocation>(this);
- /**
- * The DOM node that hosts the editor.
- */
- readonly host: HTMLElement;
- /**
- * The uuid of this editor;
- */
- get uuid(): string {
- return this._uuid;
- }
- set uuid(value: string) {
- this._uuid = value;
- }
- /**
- * The selection style of this editor.
- */
- get selectionStyle(): CodeEditor.ISelectionStyle {
- return this._selectionStyle;
- }
- set selectionStyle(value: CodeEditor.ISelectionStyle) {
- this._selectionStyle = value;
- }
- /**
- * Get the codemirror editor wrapped by the editor.
- */
- get editor(): CodeMirror.Editor {
- return this._editor;
- }
- /**
- * Get the codemirror doc wrapped by the widget.
- */
- get doc(): CodeMirror.Doc {
- return this._editor.getDoc();
- }
- /**
- * Get the number of lines in the editor.
- */
- get lineCount(): number {
- return this.doc.lineCount();
- }
- /**
- * Returns a model for this editor.
- */
- get model(): CodeEditor.IModel {
- return this._model;
- }
- /**
- * The height of a line in the editor in pixels.
- */
- get lineHeight(): number {
- return this._editor.defaultTextHeight();
- }
- /**
- * The widget of a character in the editor in pixels.
- */
- get charWidth(): number {
- return this._editor.defaultCharWidth();
- }
- /**
- * Tests whether the editor is disposed.
- */
- get isDisposed(): boolean {
- return this._isDisposed;
- }
- /**
- * Dispose of the resources held by the widget.
- */
- dispose(): void {
- if (this.isDisposed) {
- return;
- }
- this._isDisposed = true;
- this.host.removeEventListener('focus', this, true);
- this.host.removeEventListener('blur', this, true);
- this.host.removeEventListener('scroll', this, true);
- this._keydownHandlers.length = 0;
- window.clearInterval(this._timer);
- Signal.clearData(this);
- }
- /**
- * Get a config option for the editor.
- */
- getOption<K extends keyof CodeMirrorEditor.IConfig>(option: K): CodeMirrorEditor.IConfig[K] {
- return Private.getOption(this.editor, option);
- }
- /**
- * Set a config option for the editor.
- */
- setOption<K extends keyof CodeMirrorEditor.IConfig>(option: K, value: CodeMirrorEditor.IConfig[K]): void {
- Private.setOption(this.editor, option, value);
- }
- /**
- * Returns the content for the given line number.
- */
- getLine(line: number): string | undefined {
- return this.doc.getLine(line);
- }
- /**
- * Find an offset for the given position.
- */
- getOffsetAt(position: CodeEditor.IPosition): number {
- return this.doc.indexFromPos({
- ch: position.column,
- line: position.line
- });
- }
- /**
- * Find a position fot the given offset.
- */
- getPositionAt(offset: number): CodeEditor.IPosition {
- const { ch, line } = this.doc.posFromIndex(offset);
- return { line, column: ch };
- }
- /**
- * Undo one edit (if any undo events are stored).
- */
- undo(): void {
- this.doc.undo();
- }
- /**
- * Redo one undone edit.
- */
- redo(): void {
- this.doc.redo();
- }
- /**
- * Clear the undo history.
- */
- clearHistory(): void {
- this.doc.clearHistory();
- }
- /**
- * Brings browser focus to this editor text.
- */
- focus(): void {
- this._editor.focus();
- }
- /**
- * Test whether the editor has keyboard focus.
- */
- hasFocus(): boolean {
- return this._editor.hasFocus();
- }
- /**
- * Explicitly blur the editor.
- */
- blur(): void {
- this._editor.getInputField().blur();
- }
- /**
- * Repaint editor.
- */
- refresh(): void {
- this._editor.refresh();
- this._needsRefresh = false;
- }
- /**
- * Refresh the editor if it is focused;
- * otherwise postpone refreshing till focusing.
- */
- resizeToFit(): void {
- if (this.hasFocus()) {
- this.refresh();
- } else {
- this._needsRefresh = true;
- }
- this._clearHover();
- }
- /**
- * Add a keydown handler to the editor.
- *
- * @param handler - A keydown handler.
- *
- * @returns A disposable that can be used to remove the handler.
- */
- addKeydownHandler(handler: CodeEditor.KeydownHandler): IDisposable {
- this._keydownHandlers.push(handler);
- return new DisposableDelegate(() => {
- ArrayExt.removeAllWhere(this._keydownHandlers, val => val === handler);
- });
- }
- /**
- * Set the size of the editor in pixels.
- */
- setSize(dimension: CodeEditor.IDimension | null): void {
- if (dimension) {
- this._editor.setSize(dimension.width, dimension.height);
- } else {
- this._editor.setSize(null, null);
- }
- this._needsRefresh = false;
- }
- /**
- * Reveal the given position in the editor.
- */
- revealPosition(position: CodeEditor.IPosition): void {
- const cmPosition = this._toCodeMirrorPosition(position);
- this._editor.scrollIntoView(cmPosition);
- }
- /**
- * Reveal the given selection in the editor.
- */
- revealSelection(selection: CodeEditor.IRange): void {
- const range = this._toCodeMirrorRange(selection);
- this._editor.scrollIntoView(range);
- }
- /**
- * Get the window coordinates given a cursor position.
- */
- getCoordinateForPosition(position: CodeEditor.IPosition): CodeEditor.ICoordinate {
- const pos = this._toCodeMirrorPosition(position);
- const rect = this.editor.charCoords(pos, 'page');
- return rect as CodeEditor.ICoordinate;
- }
- /**
- * Get the cursor position given window coordinates.
- *
- * @param coordinate - The desired coordinate.
- *
- * @returns The position of the coordinates, or null if not
- * contained in the editor.
- */
- getPositionForCoordinate(coordinate: CodeEditor.ICoordinate): CodeEditor.IPosition | null {
- return this._toPosition(this.editor.coordsChar(coordinate)) || null;
- }
- /**
- * Returns the primary position of the cursor, never `null`.
- */
- getCursorPosition(): CodeEditor.IPosition {
- const cursor = this.doc.getCursor();
- return this._toPosition(cursor);
- }
- /**
- * Set the primary position of the cursor.
- *
- * #### Notes
- * This will remove any secondary cursors.
- */
- setCursorPosition(position: CodeEditor.IPosition): void {
- const cursor = this._toCodeMirrorPosition(position);
- this.doc.setCursor(cursor);
- // If the editor does not have focus, this cursor change
- // will get screened out in _onCursorsChanged(). Make an
- // exception for this method.
- if (!this.editor.hasFocus()) {
- this.model.selections.set(this.uuid, this.getSelections());
- }
- }
- /**
- * Returns the primary selection, never `null`.
- */
- getSelection(): CodeEditor.ITextSelection {
- return this.getSelections()[0];
- }
- /**
- * Set the primary selection. This will remove any secondary cursors.
- */
- setSelection(selection: CodeEditor.IRange): void {
- this.setSelections([selection]);
- }
- /**
- * Gets the selections for all the cursors, never `null` or empty.
- */
- getSelections(): CodeEditor.ITextSelection[] {
- const selections = this.doc.listSelections();
- if (selections.length > 0) {
- return selections.map(selection => this._toSelection(selection));
- }
- const cursor = this.doc.getCursor();
- const selection = this._toSelection({ anchor: cursor, head: cursor });
- return [selection];
- }
- /**
- * Sets the selections for all the cursors, should not be empty.
- * Cursors will be removed or added, as necessary.
- * Passing an empty array resets a cursor position to the start of a document.
- */
- setSelections(selections: CodeEditor.IRange[]): void {
- const cmSelections = this._toCodeMirrorSelections(selections);
- this.doc.setSelections(cmSelections, 0);
- }
- /**
- * Execute a codemirror command on the editor.
- *
- * @param command - The name of the command to execute.
- */
- execCommand(command: string): void {
- this._editor.execCommand(command);
- }
- /**
- * Handle keydown events from the editor.
- */
- protected onKeydown(event: KeyboardEvent): boolean {
- let position = this.getCursorPosition();
- let { line, column } = position;
- if (line === 0 && column === 0 && event.keyCode === UP_ARROW) {
- if (!event.shiftKey) {
- this.edgeRequested.emit('top');
- }
- return false;
- }
- let lastLine = this.lineCount - 1;
- let lastCh = this.getLine(lastLine)!.length;
- if (line === lastLine && column === lastCh
- && event.keyCode === DOWN_ARROW) {
- if (!event.shiftKey) {
- this.edgeRequested.emit('bottom');
- }
- return false;
- }
- return false;
- }
- /**
- * Converts selections to code mirror selections.
- */
- private _toCodeMirrorSelections(selections: CodeEditor.IRange[]): CodeMirror.Selection[] {
- if (selections.length > 0) {
- return selections.map(selection => this._toCodeMirrorSelection(selection));
- }
- const position = { line: 0, ch: 0 };
- return [{ anchor: position, head: position }];
- }
- /**
- * Handles a mime type change.
- */
- private _onMimeTypeChanged(): void {
- const mime = this._model.mimeType;
- let editor = this._editor;
- Mode.ensure(mime).then(spec => {
- editor.setOption('mode', spec.mime);
- });
- let extraKeys = editor.getOption('extraKeys') || {};
- const isCode = (mime !== 'text/plain') && (mime !== 'text/x-ipythongfm');
- if (isCode) {
- extraKeys['Backspace'] = 'delSpaceToPrevTabStop';
- } else {
- delete extraKeys['Backspace'];
- }
- editor.setOption('extraKeys', extraKeys);
- }
- /**
- * Handles a selections change.
- */
- private _onSelectionsChanged(selections: IObservableMap<CodeEditor.ITextSelection[]>, args: IObservableMap.IChangedArgs<CodeEditor.ITextSelection[]>): void {
- const uuid = args.key;
- if (uuid !== this.uuid) {
- this._cleanSelections(uuid);
- if (args.type !== 'remove' && args.newValue) {
- this._markSelections(uuid, args.newValue);
- }
- }
- }
- /**
- * Clean selections for the given uuid.
- */
- private _cleanSelections(uuid: string) {
- const markers = this.selectionMarkers[uuid];
- if (markers) {
- markers.forEach(marker => { marker.clear(); });
- }
- delete this.selectionMarkers[uuid];
- }
- /**
- * Marks selections.
- */
- private _markSelections(uuid: string, selections: CodeEditor.ITextSelection[]) {
- const markers: CodeMirror.TextMarker[] = [];
- // If we are marking selections corresponding to an active hover,
- // remove it.
- if (uuid === this._hoverId) {
- this._clearHover();
- }
- // If we can id the selection to a specific collaborator,
- // use that information.
- let collaborator: ICollaborator | undefined;
- if (this._model.modelDB.collaborators) {
- collaborator = this._model.modelDB.collaborators.get(uuid);
- }
- // Style each selection for the uuid.
- selections.forEach(selection => {
- // Only render selections if the start is not equal to the end.
- // In that case, we don't need to render the cursor.
- if (!JSONExt.deepEqual(selection.start, selection.end)) {
- const { anchor, head } = this._toCodeMirrorSelection(selection);
- let markerOptions: CodeMirror.TextMarkerOptions;
- if (collaborator) {
- markerOptions = this._toTextMarkerOptions({
- ...selection.style,
- color: collaborator.color
- });
- } else {
- markerOptions = this._toTextMarkerOptions(selection.style);
- }
- markers.push(this.doc.markText(anchor, head, markerOptions));
- } else if (collaborator) {
- let caret = this._getCaret(collaborator);
- markers.push(this.doc.setBookmark(
- this._toCodeMirrorPosition(selection.end), {widget: caret}));
- }
- });
- this.selectionMarkers[uuid] = markers;
- }
- /**
- * Handles a cursor activity event.
- */
- private _onCursorActivity(): void {
- // Only add selections if the editor has focus. This avoids unwanted
- // triggering of cursor activity due to collaborator actions.
- if (this._editor.hasFocus()) {
- const selections = this.getSelections();
- this.model.selections.set(this.uuid, selections);
- }
- }
- /**
- * Converts a code mirror selection to an editor selection.
- */
- private _toSelection(selection: CodeMirror.Selection): CodeEditor.ITextSelection {
- return {
- uuid: this.uuid,
- start: this._toPosition(selection.anchor),
- end: this._toPosition(selection.head),
- style: this.selectionStyle
- };
- }
- /**
- * Converts the selection style to a text marker options.
- */
- private _toTextMarkerOptions(style: CodeEditor.ISelectionStyle): CodeMirror.TextMarkerOptions {
- let r = parseInt(style.color.slice(1, 3), 16);
- let g = parseInt(style.color.slice(3, 5), 16);
- let b = parseInt(style.color.slice(5, 7), 16);
- let css = `background-color: rgba( ${r}, ${g}, ${b}, 0.15)`;
- return {
- className: style.className,
- title: style.displayName,
- css
- };
- }
- /**
- * Converts an editor selection to a code mirror selection.
- */
- private _toCodeMirrorSelection(selection: CodeEditor.IRange): CodeMirror.Selection {
- // Selections only appear to render correctly if the anchor
- // is before the head in the document. That is, reverse selections
- // do not appear as intended.
- let forward: boolean = (selection.start.line < selection.end.line) ||
- (selection.start.line === selection.end.line &&
- selection.start.column <= selection.end.column);
- let anchor = forward ? selection.start : selection.end;
- let head = forward ? selection.end : selection.start;
- return {
- anchor: this._toCodeMirrorPosition(anchor),
- head: this._toCodeMirrorPosition(head)
- };
- }
- /**
- * Converts an editor selection to a code mirror selection.
- */
- private _toCodeMirrorRange(range: CodeEditor.IRange): CodeMirror.Range {
- return {
- from: this._toCodeMirrorPosition(range.start),
- to: this._toCodeMirrorPosition(range.end)
- };
- }
- /**
- * Convert a code mirror position to an editor position.
- */
- private _toPosition(position: CodeMirror.Position) {
- return {
- line: position.line,
- column: position.ch
- };
- }
- /**
- * Convert an editor position to a code mirror position.
- */
- private _toCodeMirrorPosition(position: CodeEditor.IPosition) {
- return {
- line: position.line,
- ch: position.column
- };
- }
- /**
- * Handle model value changes.
- */
- private _onValueChanged(value: IObservableString, args: IObservableString.IChangedArgs): void {
- if (this._changeGuard) {
- return;
- }
- this._changeGuard = true;
- let doc = this.doc;
- switch (args.type) {
- case 'insert':
- let pos = doc.posFromIndex(args.start);
- doc.replaceRange(args.value, pos, pos);
- break;
- case 'remove':
- let from = doc.posFromIndex(args.start);
- let to = doc.posFromIndex(args.end);
- doc.replaceRange('', from, to);
- break;
- case 'set':
- doc.setValue(args.value);
- break;
- default:
- break;
- }
- this._changeGuard = false;
- }
- /**
- * Handles document changes.
- */
- private _beforeDocChanged(doc: CodeMirror.Doc, change: CodeMirror.EditorChange) {
- if (this._changeGuard) {
- return;
- }
- this._changeGuard = true;
- let value = this._model.value;
- let start = doc.indexFromPos(change.from);
- let end = doc.indexFromPos(change.to);
- let inserted = change.text.join('\n');
- if (end !== start) {
- value.remove(start, end);
- }
- if (inserted) {
- value.insert(start, inserted);
- }
- this._changeGuard = false;
- }
- /**
- * Handle the DOM events for the editor.
- *
- * @param event - The DOM event sent to the editor.
- *
- * #### Notes
- * This method implements the DOM `EventListener` interface and is
- * called in response to events on the editor's DOM node. It should
- * not be called directly by user code.
- */
- handleEvent(event: Event): void {
- switch (event.type) {
- case 'focus':
- this._evtFocus(event as FocusEvent);
- break;
- case 'blur':
- this._evtBlur(event as FocusEvent);
- break;
- case 'scroll':
- this._evtScroll();
- break;
- default:
- break;
- }
- }
- /**
- * Handle `focus` events for the editor.
- */
- private _evtFocus(event: FocusEvent): void {
- if (this._needsRefresh) {
- this.refresh();
- }
- this.host.classList.add('jp-mod-focused');
- }
- /**
- * Handle `blur` events for the editor.
- */
- private _evtBlur(event: FocusEvent): void {
- this.host.classList.remove('jp-mod-focused');
- }
- /**
- * Handle `scroll` events for the editor.
- */
- private _evtScroll(): void {
- // Remove any active hover.
- this._clearHover();
- }
- /**
- * Clear the hover for a caret, due to things like
- * scrolling, resizing, deactivation, etc, where
- * the position is no longer valid.
- */
- private _clearHover(): void {
- if (this._caretHover) {
- window.clearTimeout(this._hoverTimeout);
- document.body.removeChild(this._caretHover);
- this._caretHover = null;
- }
- }
- /**
- * Construct a caret element representing the position
- * of a collaborator's cursor.
- */
- private _getCaret(collaborator: ICollaborator): HTMLElement {
- let name = collaborator ? collaborator.displayName : 'Anonymous';
- let color = collaborator ? collaborator.color : this._selectionStyle.color;
- let caret: HTMLElement = document.createElement('span');
- caret.className = COLLABORATOR_CURSOR_CLASS;
- caret.style.borderBottomColor = color;
- caret.onmouseenter = () => {
- this._clearHover();
- this._hoverId = collaborator.sessionId;
- let rect = caret.getBoundingClientRect();
- // Construct and place the hover box.
- let hover = document.createElement('div');
- hover.className = COLLABORATOR_HOVER_CLASS;
- hover.style.left = String(rect.left) + 'px';
- hover.style.top = String(rect.bottom) + 'px';
- hover.textContent = name;
- hover.style.backgroundColor = color;
- // If the user mouses over the hover, take over the timer.
- hover.onmouseenter = () => {
- window.clearTimeout(this._hoverTimeout);
- };
- hover.onmouseleave = () => {
- this._hoverTimeout = window.setTimeout(() => {
- this._clearHover();
- }, HOVER_TIMEOUT);
- };
- this._caretHover = hover;
- document.body.appendChild(hover);
- };
- caret.onmouseleave = () => {
- this._hoverTimeout = window.setTimeout(() => {
- this._clearHover();
- }, HOVER_TIMEOUT);
- };
- return caret;
- }
- /**
- * Check for an out of sync editor.
- */
- private _checkSync(): void {
- let change = this._lastChange;
- if (!change) {
- return;
- }
- this._lastChange = null;
- let editor = this._editor;
- let doc = editor.getDoc();
- if (doc.getValue() === this._model.value.text) {
- return;
- }
- showDialog({
- title: 'Code Editor out of Sync',
- body: 'Please open your browser JavaScript console for bug report instructions'
- });
- console.log('Please paste the following to https://github.com/jupyterlab/jupyterlab/issues/2951');
- console.log(JSON.stringify({
- model: this._model.value.text,
- view: doc.getValue(),
- selections: this.getSelections(),
- cursor: this.getCursorPosition(),
- lineSep: editor.getOption('lineSeparator'),
- mode: editor.getOption('mode'),
- change
- }));
- }
- private _model: CodeEditor.IModel;
- private _editor: CodeMirror.Editor;
- protected selectionMarkers: { [key: string]: CodeMirror.TextMarker[] | undefined } = {};
- private _caretHover: HTMLElement | null;
- private _hoverTimeout: number;
- private _hoverId: string;
- private _keydownHandlers = new Array<CodeEditor.KeydownHandler>();
- private _changeGuard = false;
- private _selectionStyle: CodeEditor.ISelectionStyle;
- private _uuid = '';
- private _needsRefresh = false;
- private _isDisposed = false;
- private _lastChange: CodeMirror.EditorChange | null = null;
- private _timer = -1;
- }
- /**
- * The namespace for `CodeMirrorEditor` statics.
- */
- export
- namespace CodeMirrorEditor {
- /**
- * The options used to initialize a code mirror editor.
- */
- export
- interface IOptions extends CodeEditor.IOptions {
- /**
- * The configuration options for the editor.
- */
- config?: Partial<IConfig>;
- }
- /**
- * The configuration options for a codemirror editor.
- */
- export
- interface IConfig extends CodeEditor.IConfig {
- /**
- * The mode to use.
- */
- mode?: string | Mode.ISpec;
- /**
- * The theme to style the editor with.
- * You must make sure the CSS file defining the corresponding
- * .cm-s-[name] styles is loaded.
- */
- theme?: string;
- /**
- * Whether to use the context-sensitive indentation that the mode provides
- * (or just indent the same as the line before).
- */
- smartIndent?: boolean;
- /**
- * Configures whether the editor should re-indent the current line when a
- * character is typed that might change its proper indentation
- * (only works if the mode supports indentation).
- */
- electricChars?: boolean;
- /**
- * Configures the keymap to use. The default is "default", which is the
- * only keymap defined in codemirror.js itself.
- * Extra keymaps are found in the CodeMirror keymap directory.
- */
- keyMap?: string;
- /**
- * Can be used to specify extra keybindings for the editor, alongside the
- * ones defined by keyMap. Should be either null, or a valid keymap value.
- */
- extraKeys?: any;
- /**
- * Can be used to add extra gutters (beyond or instead of the line number
- * gutter).
- * Should be an array of CSS class names, each of which defines a width
- * (and optionally a background),
- * and which will be used to draw the background of the gutters.
- * May include the CodeMirror-linenumbers class, in order to explicitly
- * set the position of the line number gutter
- * (it will default to be to the right of all other gutters).
- * These class names are the keys passed to setGutterMarker.
- */
- gutters?: ReadonlyArray<string>;
- /**
- * Determines whether the gutter scrolls along with the content
- * horizontally (false)
- * or whether it stays fixed during horizontal scrolling (true,
- * the default).
- */
- fixedGutter?: boolean;
- /**
- * Whether the cursor should be drawn when a selection is active.
- */
- showCursorWhenSelecting?: boolean;
- /**
- * When fixedGutter is on, and there is a horizontal scrollbar, by default
- * the gutter will be visible to the left of this scrollbar. If this
- * option is set to true, it will be covered by an element with class
- * CodeMirror-gutter-filler.
- */
- coverGutterNextToScrollbar?: boolean;
- /**
- * Controls whether drag-and-drop is enabled.
- */
- dragDrop?: boolean;
- /**
- * Explicitly set the line separator for the editor.
- * By default (value null), the document will be split on CRLFs as well as
- * lone CRs and LFs, and a single LF will be used as line separator in all
- * output (such as getValue). When a specific string is given, lines will
- * only be split on that string, and output will, by default, use that
- * same separator.
- */
- lineSeparator?: string | null;
- /**
- * Chooses a scrollbar implementation. The default is "native", showing
- * native scrollbars. The core library also provides the "null" style,
- * which completely hides the scrollbars. Addons can implement additional
- * scrollbar models.
- */
- scrollbarStyle?: string;
- /**
- * When enabled, which is the default, doing copy or cut when there is no
- * selection will copy or cut the whole lines that have cursors on them.
- */
- lineWiseCopyCut?: boolean;
- /**
- * Whether to scroll past the end of the buffer.
- */
- scrollPastEnd?: boolean;
- }
- /**
- * The default configuration options for an editor.
- */
- export
- let defaultConfig: IConfig = {
- ...CodeEditor.defaultConfig,
- mode: 'null',
- theme: 'jupyter',
- smartIndent: true,
- electricChars: true,
- keyMap: 'default',
- extraKeys: null,
- gutters: Object.freeze([]),
- fixedGutter: true,
- showCursorWhenSelecting: false,
- coverGutterNextToScrollbar: false,
- dragDrop: true,
- lineSeparator: null,
- scrollbarStyle: 'native',
- lineWiseCopyCut: true,
- scrollPastEnd: false
- };
- /**
- * Add a command to CodeMirror.
- *
- * @param name - The name of the command to add.
- *
- * @param command - The command function.
- */
- export
- function addCommand(name: string, command: (cm: CodeMirror.Editor) => void) {
- CodeMirror.commands[name] = command;
- }
- }
- /**
- * The namespace for module private data.
- */
- namespace Private {
- /**
- * Handle the codemirror configuration options.
- */
- export
- function handleConfig(editor: CodeMirror.Editor, config: Partial<CodeMirrorEditor.IConfig>): void {
- let fullConfig: CodeMirrorEditor.IConfig = {
- ...CodeMirrorEditor.defaultConfig,
- ...config
- };
- let key: keyof CodeMirrorEditor.IConfig;
- for (key in fullConfig) {
- Private.setOption(editor, key, fullConfig[key]);
- }
- }
- /**
- * Indent or insert a tab as appropriate.
- */
- export
- function indentMoreOrinsertTab(cm: CodeMirror.Editor): void {
- let doc = cm.getDoc();
- let from = doc.getCursor('from');
- let to = doc.getCursor('to');
- let sel = !posEq(from, to);
- if (sel) {
- CodeMirror.commands['indentMore'](cm);
- return;
- }
- // Check for start of line.
- let line = doc.getLine(from.line);
- let before = line.slice(0, from.ch);
- if (/^\s*$/.test(before)) {
- CodeMirror.commands['indentMore'](cm);
- } else {
- CodeMirror.commands['insertSoftTab'](cm);
- }
- }
- /**
- * Delete spaces to the previous tab stob in a codemirror editor.
- */
- export
- function delSpaceToPrevTabStop(cm: CodeMirror.Editor): void {
- let doc = cm.getDoc();
- let from = doc.getCursor('from');
- let to = doc.getCursor('to');
- let sel = !posEq(from, to);
- if (sel) {
- let ranges = doc.listSelections();
- for (let i = ranges.length - 1; i >= 0; i--) {
- let head = ranges[i].head;
- let anchor = ranges[i].anchor;
- doc.replaceRange('', CodeMirror.Pos(head.line, head.ch), CodeMirror.Pos(anchor.line, anchor.ch));
- }
- return;
- }
- let cur = doc.getCursor();
- let tabsize = cm.getOption('tabSize');
- let chToPrevTabStop = cur.ch - (Math.ceil(cur.ch / tabsize) - 1) * tabsize;
- from = {ch: cur.ch - chToPrevTabStop, line: cur.line};
- let select = doc.getRange(from, cur);
- if (select.match(/^\ +$/) !== null) {
- doc.replaceRange('', from, cur);
- } else {
- CodeMirror.commands['delCharBefore'](cm);
- }
- }
- /**
- * Test whether two CodeMirror positions are equal.
- */
- export
- function posEq(a: CodeMirror.Position, b: CodeMirror.Position): boolean {
- return a.line === b.line && a.ch === b.ch;
- }
- /**
- * Get a config option for the editor.
- */
- export
- function getOption<K extends keyof CodeMirrorEditor.IConfig>(editor: CodeMirror.Editor, option: K): CodeMirrorEditor.IConfig[K] {
- switch (option) {
- case 'lineWrap':
- return editor.getOption('lineWrapping');
- case 'insertSpaces':
- return !editor.getOption('indentWithTabs');
- case 'tabSize':
- return editor.getOption('indentUnit');
- case 'autoClosingBrackets':
- return editor.getOption('autoCloseBrackets');
- default:
- return editor.getOption(option);
- }
- }
- /**
- * Set a config option for the editor.
- */
- export
- function setOption<K extends keyof CodeMirrorEditor.IConfig>(editor: CodeMirror.Editor, option: K, value: CodeMirrorEditor.IConfig[K]): void {
- switch (option) {
- case 'lineWrap':
- editor.setOption('lineWrapping', value);
- break;
- case 'tabSize':
- editor.setOption('indentUnit', value);
- break;
- case 'insertSpaces':
- editor.setOption('indentWithTabs', !value);
- break;
- case 'autoClosingBrackets':
- editor.setOption('autoCloseBrackets', value);
- break;
- case 'readOnly':
- let el = editor.getWrapperElement();
- if (value) {
- el.classList.add(READ_ONLY_CLASS);
- } else {
- el.classList.remove(READ_ONLY_CLASS);
- editor.getInputField().blur();
- }
- editor.setOption(option, value);
- break;
- default:
- editor.setOption(option, value);
- break;
- }
- }
- }
- /**
- * Add a CodeMirror command to delete until previous non blanking space
- * character or first multiple of tabsize tabstop.
- */
- CodeMirrorEditor.addCommand(
- 'delSpaceToPrevTabStop', Private.delSpaceToPrevTabStop
- );
- /**
- * Add a CodeMirror command to indent or insert a tab as appropriate.
- */
- CodeMirrorEditor.addCommand(
- 'indentMoreOrinsertTab', Private.indentMoreOrinsertTab
- );
|