-
-
Notifications
You must be signed in to change notification settings - Fork 193
Expand file tree
/
Copy pathEditorManager.js
More file actions
838 lines (728 loc) · 33.3 KB
/
EditorManager.js
File metadata and controls
838 lines (728 loc) · 33.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
/*
* GNU AGPL-3.0 License
*
* Copyright (c) 2021 - present core.ai . All rights reserved.
* Original work Copyright (c) 2012 - 2021 Adobe Systems Incorporated. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
* for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see https://opensource.org/licenses/AGPL-3.0.
*
*/
// @INCLUDE_IN_API_DOCS
/**
* EditorManager owns the UI for the editor area. This essentially mirrors the 'current document'
* property maintained by DocumentManager's model.
*
* Note that there is a little bit of unusual overlap between EditorManager and DocumentManager:
* because the Document state is actually stored in the CodeMirror editor UI, DocumentManager is
* not a pure headless model. Each Document encapsulates an editor instance, and thus EditorManager
* must have some knowledge about Document's internal state (we access its _editor property).
*
* This module dispatches the following events:
* - activeEditorChange -- Fires after the active editor (full or inline).
*
* Doesn't fire when editor temporarily loses focus to a non-editor
* control (e.g. search toolbar or modal dialog, or window deactivation).
*
* Does fire when focus moves between inline editor and its full-size container.
*
* This event tracks `MainViewManagers's `currentFileChange` event and all editor
* objects "focus" event.
*
* (e, editorGainingFocus:editor, editorLosingFocus:editor)
*
* The 2nd arg to the listener is which Editor became active; the 3rd arg is
* which Editor is deactivated as a result. Either one may be null.
* NOTE (#1257): `getFocusedEditor()` sometimes lags behind this event. Listeners
* should use the arguments or call `getActiveEditor()` to reliably see which Editor
* just gained focus.
*/
define(function (require, exports, module) {
// Load dependent modules
const Commands = require("command/Commands"),
EventDispatcher = require("utils/EventDispatcher"),
WorkspaceManager = require("view/WorkspaceManager"),
PreferencesManager = require("preferences/PreferencesManager"),
CommandManager = require("command/CommandManager"),
DocumentManager = require("document/DocumentManager"),
MainViewManager = require("view/MainViewManager"),
ViewStateManager = require("view/ViewStateManager"),
PerfUtils = require("utils/PerfUtils"),
Editor = require("editor/Editor").Editor,
InlineTextEditor = require("editor/InlineTextEditor").InlineTextEditor,
MultiRangeInlineEditor = require("editor/MultiRangeInlineEditor").MultiRangeInlineEditor,
Strings = require("strings"),
LanguageManager = require("language/LanguageManager"),
DeprecationWarning = require("utils/DeprecationWarning");
const EVENT_ACTIVE_EDITOR_CHANGED = "activeEditorChange";
/**
* Currently focused Editor (full-size, inline, or otherwise)
* @type {?Editor}
* @private
*/
var _lastFocusedEditor = null;
/**
* Registered inline-editor widget providers sorted descending by priority.
* @see {@link #registerInlineEditProvider}.
* @type {{priority:number, provider:function(...)}} array
* @private
*/
var _inlineEditProviders = [];
/**
* Registered inline documentation widget providers sorted descending by priority.
* @see {@link #registerInlineDocsProvider}.
* @type {{priority:number, provider:function(...)}}
* @private
*/
var _inlineDocsProviders = [];
/**
* DOM element to house any hidden editors created soley for inline widgets
* @private
* @type {jQuery}
*/
var _$hiddenEditorsContainer;
/**
* Retrieves the visible full-size Editor for the currently opened file in the ACTIVE_PANE
* @return {?Editor} editor of the current view or null
*/
function getCurrentFullEditor() {
var currentPath = MainViewManager.getCurrentlyViewedPath(MainViewManager.ACTIVE_PANE),
doc = currentPath && DocumentManager.getOpenDocumentForPath(currentPath);
return doc && doc._masterEditor;
}
/**
* Updates _viewStateCache from the given editor's actual current state
* @private
* @param {!Editor} editor - editor to cache data for
*/
function _saveEditorViewState(editor) {
ViewStateManager.updateViewState(editor);
}
/**
* Updates _viewStateCache from the given editor's actual current state
* @param {!Editor} editor - editor restore cached data
* @private
*/
function _restoreEditorViewState(editor) {
// We want to ignore the current state of the editor, so don't call __getViewState()
var viewState = ViewStateManager.getViewState(editor.document.file);
if (viewState) {
editor.restoreViewState(viewState);
}
}
/**
* Editor focus handler to change the currently active editor
* @private
* @param {?Editor} current - the editor that will be the active editor
*/
function _notifyActiveEditorChanged(current) {
// Skip if the Editor that gained focus was already the most recently focused editor.
// This may happen e.g. if the window loses then regains focus.
if (_lastFocusedEditor === current) {
return;
}
var previous = _lastFocusedEditor;
_lastFocusedEditor = current;
exports.trigger(EVENT_ACTIVE_EDITOR_CHANGED, current, previous);
}
/**
* Current File Changed handler
* MainViewManager dispatches a "currentFileChange" event whenever the currently viewed
* file changes. Which could mean that the previously viewed file has been closed or a
* non-editor view (image) has been given focus. _notifyAcitveEditorChanged is also hooked
* up to editor.focus to handle focus events for editors which handles changing focus between
* two editors but, because editormanager maintains a "_lastFocusedEditor" state, we have to
* "nullify" that state whenever the focus goes to a non-editor or when the current editor is closed
* @private
* @param {!jQuery.Event} e - event
* @param {?File} file - current file (can be null)
*/
function _handleCurrentFileChange(e, file) {
var doc = file && DocumentManager.getOpenDocumentForPath(file.fullPath);
_notifyActiveEditorChanged(doc && doc._masterEditor);
}
/**
* Creates a new Editor bound to the given Document.
* The editor is appended to the given container as a visible child.
* @private
* @param {!Document} doc Document for the Editor's content
* @param {!boolean} makeMasterEditor If true, the Editor will set itself as the private "master"
* Editor for the Document. If false, the Editor will attach to the Document as a "slave."
* @param {!jQueryObject} container Container to add the editor to.
* @param {{startLine: number, endLine: number}=} range If specified, range of lines within the document
* to display in this editor. Inclusive.
* @param {!Object} editorOptions If specified, contains editor options that can be passed to CodeMirror
* @return {Editor} the newly created editor.
*/
function _createEditorForDocument(doc, makeMasterEditor, container, range, editorOptions) {
var editor = new Editor(doc, makeMasterEditor, container, range, editorOptions);
editor.on("focus", function () {
_notifyActiveEditorChanged(editor);
});
editor.on("beforeDestroy", function () {
if (editor.$el.is(":visible")) {
_saveEditorViewState(editor);
}
});
return editor;
}
/**
* @private
* Finds an inline widget provider from the given list that can offer a widget for the current cursor
* position, and once the widget has been created inserts it into the editor.
*
* @param {!Editor} editor The host editor
* @param {{priority:number, provider:function(...)}} array providers
* prioritized list of providers
* @param {string=} defaultErrorMsg Default message to display if no providers return non-null
* @return {$.Promise} a promise that will be resolved when an InlineWidget
* is created or rejected if no inline providers have offered one.
*/
function _openInlineWidget(editor, providers, defaultErrorMsg) {
PerfUtils.markStart(PerfUtils.INLINE_WIDGET_OPEN);
// Run through inline-editor providers until one responds
var pos = editor.getCursorPos(),
inlinePromise,
i,
result = new $.Deferred(),
errorMsg,
providerRet;
// Query each provider in priority order. Provider may return:
// 1. `null` to indicate it does not apply to current cursor position
// 2. promise that should resolve to an InlineWidget
// 3. string which indicates provider does apply to current cursor position,
// but reason it could not create InlineWidget
//
// Keep looping until a provider is found. If a provider is not found,
// display the highest priority error message that was found, otherwise display
// default error message
for (i = 0; i < providers.length && !inlinePromise; i++) {
var provider = providers[i].provider;
providerRet = provider(editor, pos);
if (providerRet) {
if (providerRet.hasOwnProperty("done")) {
inlinePromise = providerRet;
} else if (!errorMsg && typeof (providerRet) === "string") {
errorMsg = providerRet;
}
}
}
// Use default error message if none other provided
errorMsg = errorMsg || defaultErrorMsg;
// If one of them will provide a widget, show it inline once ready
if (inlinePromise) {
inlinePromise.done(function (inlineWidget) {
editor.addInlineWidget(pos, inlineWidget).done(function () {
PerfUtils.addMeasurement(PerfUtils.INLINE_WIDGET_OPEN);
result.resolve();
});
}).fail(function () {
// terminate timer that was started above
PerfUtils.finalizeMeasurement(PerfUtils.INLINE_WIDGET_OPEN);
editor.displayErrorMessageAtCursor(errorMsg);
result.reject();
});
} else {
// terminate timer that was started above
PerfUtils.finalizeMeasurement(PerfUtils.INLINE_WIDGET_OPEN);
editor.displayErrorMessageAtCursor(errorMsg);
result.reject();
}
return result.promise();
}
/**
* Closes any focused inline widget. Else, asynchronously asks providers to create one.
* @private
* @param {{priority:number, provider:function(...)}} array providers
* prioritized list of providers
* @param {string=} errorMsg Default message to display if no providers return non-null
* @return {!Promise} A promise resolved with true if an inline widget is opened or false
* when closed. Rejected if there is neither an existing widget to close nor a provider
* willing to create a widget (or if no editor is open).
*/
function _toggleInlineWidget(providers, errorMsg) {
var result = new $.Deferred();
var currentEditor = getCurrentFullEditor();
if (currentEditor) {
var inlineWidget = currentEditor.getFocusedInlineWidget();
if (inlineWidget) {
// an inline widget's editor has focus, so close it
PerfUtils.markStart(PerfUtils.INLINE_WIDGET_CLOSE);
inlineWidget.close().done(function () {
PerfUtils.addMeasurement(PerfUtils.INLINE_WIDGET_CLOSE);
// return a resolved promise to CommandManager
result.resolve(false);
});
} else {
// main editor has focus, so create an inline editor
_openInlineWidget(currentEditor, providers, errorMsg).done(function () {
result.resolve(true);
}).fail(function () {
result.reject();
});
}
} else {
// Can not open an inline editor without a host editor
result.reject();
}
return result.promise();
}
/**
* Inserts a prioritized provider object into the array in sorted (descending) order.
* @private
* @param {{priority:number, provider:function(...)}} array
* @param {number} priority
* @param {function(...)} provider
*/
function _insertProviderSorted(array, provider, priority) {
var index,
prioritizedProvider = {
priority: priority,
provider: provider
};
for (index = 0; index < array.length; index++) {
if (array[index].priority < priority) {
break;
}
}
array.splice(index, 0, prioritizedProvider);
}
/**
* Creates a hidden, unattached master editor that is needed when a document is created for the
* sole purpose of creating an inline editor so operations that require a master editor can be performed
* Only called from Document._ensureMasterEditor()
* The editor view is placed in a hidden part of the DOM but can later be moved to a visible pane
* when the document is opened using pane.addView()
* @private
* @param {!Document} doc - document to create a hidden editor for
*/
function _createUnattachedMasterEditor(doc) {
// attach to the hidden containers DOM node if necessary
if (!_$hiddenEditorsContainer) {
_$hiddenEditorsContainer = $("#hidden-editors");
}
// Create an editor
var editor = _createEditorForDocument(doc, true, _$hiddenEditorsContainer);
// and hide it
editor.setVisible(false);
}
/**
* Removes the given widget UI from the given hostEditor (agnostic of what the widget's content
* is). The widget's onClosed() callback will be run as a result.
* @param {!Editor} hostEditor The editor containing the widget.
* @param {!InlineWidget} inlineWidget The inline widget to close.
* @return {$.Promise} A promise that's resolved when the widget is fully closed.
*/
function closeInlineWidget(hostEditor, inlineWidget) {
// If widget has focus, return it to the hostEditor & move the cursor to where the inline used to be
if (inlineWidget.hasFocus()) {
// Place cursor back on the line just above the inline (the line from which it was opened)
// If cursor's already on that line, leave it be to preserve column position
var widgetLine = hostEditor._codeMirror.getLineNumber(inlineWidget.info.line);
var cursorLine = hostEditor.getCursorPos().line;
if (cursorLine !== widgetLine) {
hostEditor.setCursorPos({ line: widgetLine, pos: 0 });
}
hostEditor.focus();
}
return hostEditor.removeInlineWidget(inlineWidget);
}
/**
* Registers a new inline editor provider. When Quick Edit is invoked each registered provider is
* asked if it wants to provide an inline editor given the current editor and cursor location.
* An optional priority parameter is used to give providers with higher priority an opportunity
* to provide an inline editor before providers with lower priority.
*
* @param {function(!Editor, !{line:number, ch:number}):?($.Promise|string)} provider
* @param {number=} priority
* The provider returns a promise that will be resolved with an InlineWidget, or returns a string
* indicating why the provider cannot respond to this case (or returns null to indicate no reason).
*/
function registerInlineEditProvider(provider, priority) {
if (priority === undefined) {
priority = 0;
}
_insertProviderSorted(_inlineEditProviders, provider, priority);
}
/**
* Registers a new inline docs provider. When Quick Docs is invoked each registered provider is
* asked if it wants to provide inline docs given the current editor and cursor location.
* An optional priority parameter is used to give providers with higher priority an opportunity
* to provide an inline editor before providers with lower priority.
*
* @param {function(!Editor, !{line:number, ch:number}):?($.Promise|string)} provider
* @param {number=} priority
* The provider returns a promise that will be resolved with an InlineWidget, or returns a string
* indicating why the provider cannot respond to this case (or returns null to indicate no reason).
*/
function registerInlineDocsProvider(provider, priority) {
if (priority === undefined) {
priority = 0;
}
_insertProviderSorted(_inlineDocsProviders, provider, priority);
}
/**
* Given a host editor, return a list of all Editors in all its open inline widgets. (Ignoring
* any other inline widgets that might be open but don't contain Editors).
* @param {!Editor} hostEditor
* @return {Array.<Editor>}
*
*/
function getInlineEditors(hostEditor) {
var inlineEditors = [];
if (hostEditor) {
hostEditor.getInlineWidgets().forEach(function (widget) {
if ((widget instanceof InlineTextEditor && widget.editor)
||(widget instanceof MultiRangeInlineEditor && widget.editor)) {
inlineEditors.push(widget.editor);
}
});
}
return inlineEditors;
}
/**
* @private
* Creates a new "full-size" (not inline) Editor for the given Document, and sets it as the
* Document's master backing editor. The editor is not yet visible;
* Semi-private: should only be called within this module or by Document.
* @param {!Document} document Document whose main/full Editor to create
* @param {!Pane} pane Pane in which the editor will be hosted
* @param {!Object} editorOptions If specified, contains editor options that
* can be passed to CodeMirror
* @return {!Editor}
*/
function _createFullEditorForDocument(document, pane, editorOptions) {
// Create editor; make it initially invisible
var editor = _createEditorForDocument(document, true, pane.$content, undefined, editorOptions);
editor.setVisible(false);
pane.addView(editor);
exports.trigger("_fullEditorCreatedForDocument", document, editor, pane.id);
return editor;
}
/**
* Creates a new inline Editor instance for the given Document.
* The editor is not yet visible or attached to a host editor.
* @param {!Document} doc Document for the Editor's content
* @param {?{startLine:Number, endLine:Number}} range If specified, all lines outside the given
* range are hidden from the editor. Range is inclusive. Line numbers start at 0.
* @param {HTMLDivContainer} inlineContent
* @param {function(inlineWidget)} closeThisInline
*
* @return {{content:DOMElement, editor:Editor}}
*/
function createInlineEditorForDocument(doc, range, inlineContent) {
// Hide the container for the editor before creating it so that CodeMirror doesn't do extra work
// when initializing the document. When we construct the editor, we have to set its text and then
// set the (small) visible range that we show in the editor. If the editor is visible, CM has to
// render a large portion of the document before setting the visible range. By hiding the editor
// first and showing it after the visible range is set, we avoid that initial render.
$(inlineContent).hide();
var inlineEditor = _createEditorForDocument(doc, false, inlineContent, range);
inlineEditor._hostEditor = getCurrentFullEditor();
$(inlineContent).show();
return { content: inlineContent, editor: inlineEditor };
}
/**
* Returns focus to the last visible editor that had focus. If no editor visible, does nothing.
* This function should be called to restore editor focus after it has been temporarily
* removed. For example, after a dialog with editable text is closed.
*/
function focusEditor() {
MainViewManager.focusActivePane();
}
/**
* @private
* @deprecated
* resizes the editor
*/
function resizeEditor() {
DeprecationWarning.deprecationWarning("Use WorkspaceManager.recomputeLayout() instead of EditorManager.resizeEditor().", true);
WorkspaceManager.recomputeLayout();
}
/**
* Create and/or show the editor for the specified document
* @param {!Document} document - document to edit
* @param {!Pane} pane - pane to show it in
* @param {!Object} editorOptions - If specified, contains
* editor options that can be passed to CodeMirror
* @private
*/
function _showEditor(document, pane, editorOptions) {
// Ensure a main editor exists for this document to show in the UI
var createdNewEditor = false,
editor = document._masterEditor;
// Check if a master editor is not set already or the current master editor doesn't belong
// to the pane container requested - to support creation of multiple full editors
// This check is required as _masterEditor is the active full editor for the document
// and there can be existing full editor created for other panes
if (editor && editor._paneId && editor._paneId !== pane.id) {
editor = document._checkAssociatedEditorForPane(pane.id);
}
if (!editor) {
// Performance (see #4757) Chrome wastes time messing with selection
// that will just be changed at end, so clear it for now
if (window.getSelection && window.getSelection().empty) { // Chrome
window.getSelection().empty();
}
// Editor doesn't exist: populate a new Editor with the text
editor = _createFullEditorForDocument(document, pane, editorOptions);
createdNewEditor = true;
} else if (editor.$el.parent()[0] !== pane.$content[0]) {
// editor does exist but is not a child of the pane so add it to the
// pane (which will switch the view's container as well)
pane.addView(editor);
}
// show the view
pane.showView(editor);
if (MainViewManager.getActivePaneId() === pane.id) {
// give it focus
editor.focus();
}
if (createdNewEditor) {
_restoreEditorViewState(editor);
}
}
/**
* @private
* @deprecated use MainViewManager.getCurrentlyViewedFile() instead
* @return {string=} path of the file currently viewed in the active, full sized editor or null when there is no active editor
*/
function getCurrentlyViewedPath() {
DeprecationWarning.deprecationWarning("Use MainViewManager.getCurrentlyViewedFile() instead of EditorManager.getCurrentlyViewedPath().", true);
// We only want to return a path of a document object
// not other things like images, etc...
var currentPath = MainViewManager.getCurrentlyViewedPath(MainViewManager.ACTIVE_PANE),
doc;
if (currentPath) {
doc = DocumentManager.getOpenDocumentForPath(currentPath);
}
if (doc) {
return currentPath;
}
return null;
}
/**
* @private
* @deprecated There is no equivalent API moving forward.
* Use MainViewManager._initialize() from a unit test to create a Main View attached to a specific DOM element
*/
function setEditorHolder() {
throw new Error("EditorManager.setEditorHolder() has been removed.");
}
/**
* @private
* @deprecated Register a View Factory instead
* @see MainViewFactory::#registerViewFactory
*/
function registerCustomViewer() {
throw new Error("EditorManager.registerCustomViewer() has been removed.");
}
/**
* Determines if the file can be opened in an editor
* @param {!string} fullPath - file to be opened
* @return {boolean} true if the file can be opened in an editor, false if not
*/
function canOpenPath(fullPath) {
return !LanguageManager.getLanguageForPath(fullPath).isBinary();
}
/**
* Opens the specified document in the given pane
* @param {!Document} doc - the document to open
* @param {!Pane} pane - the pane to open the document in
* @param {!Object} editorOptions - If specified, contains
* editor options that can be passed to CodeMirror
* @return {boolean} true if the file can be opened, false if not
*/
function openDocument(doc, pane, editorOptions) {
var perfTimerName = PerfUtils.markStart("EditorManager.openDocument():\t" + (!doc || doc.file.fullPath));
if (doc && pane) {
_showEditor(doc, pane, editorOptions);
}
PerfUtils.addMeasurement(perfTimerName);
}
/**
* Returns the currently focused inline widget, if any.
* @return {?InlineWidget}
*/
function getFocusedInlineWidget() {
var currentEditor = getCurrentFullEditor();
if (currentEditor) {
return currentEditor.getFocusedInlineWidget();
}
return null;
}
/**
* Returns the focused Editor within an inline text editor, or null if something else has focus
* @return {?Editor}
*/
function getFocusedInlineEditor() {
var focusedWidget = getFocusedInlineWidget();
if (focusedWidget instanceof InlineTextEditor) {
return focusedWidget.getFocusedEditor();
}
return null;
}
/**
* Returns the currently focused editor instance (full-sized OR inline editor).
* This function is similar to getActiveEditor(), with one main difference: this
* function will only return editors that currently have focus, whereas
* getActiveEditor() will return the last visible editor that was given focus (but
* may not currently have focus because, for example, a dialog with editable text
* is open).
* @return {?Editor}
*/
function getFocusedEditor() {
var currentEditor = getCurrentFullEditor();
if (currentEditor) {
// See if any inlines have focus
var focusedInline = getFocusedInlineEditor();
if (focusedInline) {
return focusedInline;
}
// otherwise, see if full-sized editor has focus
if (currentEditor.hasFocus()) {
return currentEditor;
}
}
return null;
}
/**
* Returns the current active editor (full-sized OR inline editor). This editor may not
* have focus at the moment, but it is visible and was the last editor that was given
* focus. Returns null if no editors are active.
* @see #getFocusedEditor
* @return {?Editor}
*/
function getActiveEditor() {
return _lastFocusedEditor;
}
/**
* Returns the editor/inline editor under given mouse cursor coordinates specified. The coordinates can be usually
* fetched from the `document.onmousemove` dom event handler or any dom events.
* https://stackoverflow.com/questions/7790725/javascript-track-mouse-position
*
* @param {{clientX: number, clientY: number}} mousePos The mouse position(or the js event with mouse
* position).
* @return {Editor}
*/
function getHoveredEditor(mousePos) {
function divContainsMouse($div, mousePos) {
let offset = $div.offset();
return (mousePos.clientX >= offset.left &&
mousePos.clientX <= offset.left + $div.width() &&
mousePos.clientY >= offset.top &&
mousePos.clientY <= offset.top + $div.height());
}
// Figure out which editor we are over
let fullEditor = getCurrentFullEditor();
if (!fullEditor || !mousePos) {
return;
}
// Check for inline Editor instances first
let inlines = fullEditor.getInlineWidgets(),
i,
editor;
for (i = 0; i < inlines.length; i++) {
// see MultiRangeInlineEditor
let $inlineEditorRoot = inlines[i].editor && $(inlines[i].editor.getRootElement()),
$otherDiv = inlines[i].$htmlContent;
if ($inlineEditorRoot && divContainsMouse($inlineEditorRoot, mousePos)) {
editor = inlines[i].editor;
break;
} else if ($otherDiv && divContainsMouse($otherDiv, mousePos)) {
// Mouse inside unsupported inline editor like Quick Docs or Color Editor
return;
}
}
// Check main editor
if (!editor) {
if (divContainsMouse($(fullEditor.getRootElement()), mousePos)) {
editor = fullEditor;
}
}
return editor;
}
/**
* file removed from pane handler.
* @private
* @param {jQuery.Event} e
* @param {File|Array.<File>} removedFiles - file, path or array of files or paths that are being removed
*/
function _handleRemoveFromPaneView(e, removedFiles) {
var handleFileRemoved = function (file) {
var doc = DocumentManager.getOpenDocumentForPath(file.fullPath);
if (doc) {
MainViewManager._destroyEditorIfNotNeeded(doc);
}
};
// when files are removed from a pane then
// we should destroy any unnecssary views
if ($.isArray(removedFiles)) {
removedFiles.forEach(function (removedFile) {
handleFileRemoved(removedFile);
});
} else {
handleFileRemoved(removedFiles);
}
}
// Set up event dispatching
EventDispatcher.makeEventDispatcher(exports);
EventDispatcher.setLeakThresholdForEvent(EVENT_ACTIVE_EDITOR_CHANGED, 50);
// File-based preferences handling
exports.on(EVENT_ACTIVE_EDITOR_CHANGED, function (e, current) {
if (current && current.document && current.document.file) {
PreferencesManager._setCurrentFile(current.document.file.fullPath);
}
});
// Initialize: command handlers
CommandManager.register(Strings.CMD_TOGGLE_QUICK_EDIT, Commands.TOGGLE_QUICK_EDIT, function () {
return _toggleInlineWidget(_inlineEditProviders, Strings.ERROR_QUICK_EDIT_PROVIDER_NOT_FOUND);
});
CommandManager.register(Strings.CMD_TOGGLE_QUICK_DOCS, Commands.TOGGLE_QUICK_DOCS, function () {
return _toggleInlineWidget(_inlineDocsProviders, Strings.ERROR_QUICK_DOCS_PROVIDER_NOT_FOUND);
});
MainViewManager.on("currentFileChange", _handleCurrentFileChange);
MainViewManager.on("workingSetRemove workingSetRemoveList", _handleRemoveFromPaneView);
// For unit tests and internal use only
exports._createFullEditorForDocument = _createFullEditorForDocument;
exports._notifyActiveEditorChanged = _notifyActiveEditorChanged;
// Internal Use only
exports._saveEditorViewState = _saveEditorViewState;
exports._createUnattachedMasterEditor = _createUnattachedMasterEditor;
// public events
exports.EVENT_ACTIVE_EDITOR_CHANGED = EVENT_ACTIVE_EDITOR_CHANGED;
// Define public API
exports.createInlineEditorForDocument = createInlineEditorForDocument;
exports.getFocusedInlineWidget = getFocusedInlineWidget;
exports.getInlineEditors = getInlineEditors;
exports.closeInlineWidget = closeInlineWidget;
exports.openDocument = openDocument;
exports.canOpenPath = canOpenPath;
// Convenience Methods
exports.getActiveEditor = getActiveEditor;
exports.getCurrentFullEditor = getCurrentFullEditor;
exports.getFocusedEditor = getFocusedEditor;
exports.getFocusedInlineEditor = getFocusedInlineEditor;
exports.getHoveredEditor = getHoveredEditor;
exports.registerInlineEditProvider = registerInlineEditProvider;
exports.registerInlineDocsProvider = registerInlineDocsProvider;
// Deprecated
exports.registerCustomViewer = registerCustomViewer;
exports.resizeEditor = resizeEditor;
exports.focusEditor = focusEditor;
exports.getCurrentlyViewedPath = getCurrentlyViewedPath;
exports.setEditorHolder = setEditorHolder;
if(location.origin === "http://localhost:8000"){
window.EditorManager = exports; // this is for quick editor queries during development in browser console
}
});