-
Notifications
You must be signed in to change notification settings - Fork 1
/
editor.tsx
647 lines (575 loc) · 16.9 KB
/
editor.tsx
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
import {
autocompletion,
completeAnyWord,
startCompletion,
} from '@codemirror/autocomplete'
import { closeBrackets, closeBracketsKeymap } from '@codemirror/closebrackets'
import { defaultKeymap } from '@codemirror/commands'
import { commentKeymap } from '@codemirror/comment'
import { foldGutter, foldKeymap } from '@codemirror/fold'
import { lineNumbers } from '@codemirror/gutter'
import { defaultHighlightStyle } from '@codemirror/highlight'
import { history, historyField, historyKeymap } from '@codemirror/history'
import { bracketMatching } from '@codemirror/matchbrackets'
import { searchConfig, searchKeymap } from '@codemirror/search'
import {
Compartment,
EditorState,
Extension,
Prec,
StateEffect,
} from '@codemirror/state'
import {
Command,
drawSelection,
EditorView,
highlightSpecialChars,
KeyBinding as KeymapI,
keymap,
} from '@codemirror/view'
import {
Component,
Element,
Event,
EventEmitter,
h,
Host,
Method,
Prop,
Watch,
} from '@stencil/core'
import { CodeError } from '@stencila/schema'
import { getSlotByName } from '../utils/slotSelectors'
import { LanguagePicker } from './components/languageSelect'
import { codeErrors, updateErrors } from './customizations/errorPanel'
import {
EditorUpdateHandlerCb,
updateListenerExtension,
} from './customizations/onUpdateHandlerExtension'
import {
FileFormat,
FileFormatMap,
fileFormatMap,
lookupFormat,
} from './languageUtils'
export interface EditorContents {
text: string
language: string
}
export type Keymap = KeymapI
type EditorStateJSON = Record<string, unknown>
const slots = {
text: 'text',
}
const cssClasses = {
container: 'editorContainer',
editor: 'editor',
}
const cssIds = {
editorTarget: 'editorTarget',
}
type EditorConfig = {
language?: string
foldGutterEnabled?: boolean
lineNumbersEnabled?: boolean
lineWrappingEnabled?: boolean
}
@Component({
tag: 'stencila-editor',
styleUrls: {
default: 'editor.css',
material: 'editor.material.css',
},
scoped: true,
})
export class Editor {
@Element()
private el: HTMLStencilaEditorElement
private editorRef: EditorView | undefined
private languagePickerRef: HTMLSelectElement | undefined
private isReady = false
/**
* Text contents of the editor
*/
@Prop()
public contents?: string
@Watch('contents')
contentsChanged(nextValue: string, prevValue: string): void {
if (nextValue !== prevValue) {
this.setContentsHandler(nextValue)
}
}
/**
* List of all supported programming languages
*/
@Prop()
public languageCapabilities: FileFormatMap = fileFormatMap
/**
* Disallow editing of the editor contents when set to `true`
*/
@Prop()
public readOnly = false
/**
* Update the CodeMirror internal state when the `readOnly` prop changes
*/
@Watch('readOnly')
readOnlyChanged(nextReadOnly: boolean, prevReadOnly: boolean): void {
if (nextReadOnly !== prevReadOnly) {
this.dispatchEffect(
this.readOnlyConf.reconfigure(EditorView.editable.of(!this.readOnly))
)
}
}
// Dynamic CodeMirror states need to be "compartmentalized". @see https://codemirror.net/6/docs/ref/#state.Compartment
private readOnlyConf = new Compartment()
/**
* Programming language of the Editor
*/
@Prop()
public activeLanguage: string = this.languageCapabilities.R?.name ?? ''
private dispatchEffect = (effect: StateEffect<unknown>) => {
const docState = this.editorRef?.state
const transaction =
docState?.update({
effects: [effect],
}) ?? {}
this.editorRef?.dispatch(transaction)
}
/**
* Event emitted when the language of the editor is changed.
*/
@Event() setLanguage: EventEmitter<FileFormat>
private getLang = async (language: string) => {
switch (language.toLowerCase()) {
case 'r': {
const { StreamLanguage } = await import('@codemirror/stream-parser')
const { r } = await import('@codemirror/legacy-modes/mode/r')
return StreamLanguage.define(r)
}
case 'bash':
case 'shell':
case 'sh': {
const { StreamLanguage } = await import('@codemirror/stream-parser')
const { shell } = await import('@codemirror/legacy-modes/mode/shell')
return StreamLanguage.define(shell)
}
case 'latex':
case 'stex':
case 'tex': {
const { StreamLanguage } = await import('@codemirror/stream-parser')
const { stexMath } = await import('@codemirror/legacy-modes/mode/stex')
return StreamLanguage.define(stexMath)
}
case 'toml': {
const { StreamLanguage } = await import('@codemirror/stream-parser')
const { toml } = await import('@codemirror/legacy-modes/mode/toml')
return StreamLanguage.define(toml)
}
case 'yaml': {
const { StreamLanguage } = await import('@codemirror/stream-parser')
const { yaml } = await import('@codemirror/legacy-modes/mode/yaml')
return StreamLanguage.define(yaml)
}
case 'dockerfile': {
const { StreamLanguage } = await import('@codemirror/stream-parser')
const { dockerFile } = await import(
'@codemirror/legacy-modes/mode/dockerfile'
)
return StreamLanguage.define(dockerFile)
}
case 'html': {
const { html } = await import('@codemirror/lang-html')
return html()
}
case 'javascript': {
const { javascript } = await import('@codemirror/lang-javascript')
return javascript()
}
case 'json': {
const { json } = await import('@codemirror/lang-json')
return json()
}
case 'xml': {
const { xml } = await import('@codemirror/lang-xml')
return xml()
}
case 'python': {
const { python } = await import('@codemirror/lang-python')
return python()
}
case 'rmd': {
const { markdown } = await import('@codemirror/lang-markdown')
const { StreamLanguage } = await import('@codemirror/stream-parser')
const { r } = await import('@codemirror/legacy-modes/mode/r')
return markdown({ defaultCodeLanguage: StreamLanguage.define(r) })
}
case 'md':
case 'markdown':
default: {
const { markdown } = await import('@codemirror/lang-markdown')
return markdown()
}
}
}
// Dynamic CodeMirror states need to be "compartmentalized". @see https://codemirror.net/6/docs/ref/#state.Compartment
private languageConf = new Compartment()
/**
* Resolve and set a new active CodeMirror syntax
*/
private setEditorSyntax = async (language: string) => {
const lang = await this.getLang(language)
this.dispatchEffect(this.languageConf.reconfigure(lang))
}
private setLanguagePickerRef = (el?: HTMLSelectElement) =>
(this.languagePickerRef = el)
/**
* Function to call when the user selects a new language from the language picker dropdown.
*/
private onSelectLanguage = async (e: Event): Promise<void> => {
const target = e.currentTarget as HTMLSelectElement
const language = lookupFormat(target.value)
this.setLanguage.emit(language)
return this.setEditorSyntax(language.name)
}
/**
* Update the internal state, for both the component and CodeMirror, when the
* `activeLanguage` prop changes
*/
@Watch('activeLanguage')
activeLanguageChanged(nextLanguage: string, prevLanguage: string): void {
if (nextLanguage !== prevLanguage) {
this.setEditorSyntax(nextLanguage).catch((err) => {
console.log(err)
})
}
}
/**
* Function to be evaluated over the contents of the editor.
*/
@Prop()
public executeHandler?: (contents: EditorContents) => Promise<unknown>
/**
* Wrapper around the `executeHandler` function, needed to run using CodeMirror keyboard shortcuts.
*/
private execute: Command = () => {
this.getContents()
.then((contents) => {
return this.executeHandler ? this.executeHandler(contents) : contents
})
.catch((err) => {
console.error(err)
return false
})
return true
}
/**
* Callback function to invoke whenever the editor contents are updated.
*/
@Prop()
public contentChangeHandler?: EditorUpdateHandlerCb
/**
* Autofocus the editor on page load
*/
@Prop()
public autofocus = false
// Dynamic CodeMirror states need to be "compartmentalized". @see https://codemirror.net/6/docs/ref/#state.Compartment
private lineNumbersConf = new Compartment()
/**
* Determines the visibility of line numbers
*/
@Prop()
public lineNumbers = true
@Watch('lineNumbers')
onSetLineNumbers(nextValue: boolean, prevValue: boolean): void {
if (nextValue !== prevValue) {
this.dispatchEffect(
this.lineNumbersConf.reconfigure(nextValue ? lineNumbers() : [])
)
}
}
// Dynamic CodeMirror states need to be "compartmentalized". @see https://codemirror.net/6/docs/ref/#state.Compartment
private lineWrappingConf = new Compartment()
/**
* Control line wrapping of text inside the editor
*/
@Prop()
public lineWrapping = false
@Watch('lineWrapping')
onSetLineWrapping(nextValue: boolean, prevValue: boolean): void {
if (nextValue !== prevValue) {
this.dispatchEffect(
this.lineWrappingConf.reconfigure(
nextValue ? EditorView.lineWrapping : []
)
)
}
}
// Dynamic CodeMirror states need to be "compartmentalized". @see https://codemirror.net/6/docs/ref/#state.Compartment
private foldGutterConf = new Compartment()
/**
* Enables ability to fold sections of code if the syntax package supports it
*/
@Prop()
public foldGutter = true
@Watch('foldGutter')
onSetfoldGutter(nextValue: boolean, prevValue: boolean): void {
if (nextValue !== prevValue) {
this.dispatchEffect(
this.foldGutterConf.reconfigure(nextValue ? foldGutter() : [])
)
}
}
/**
* Custom keyboard shortcuts to pass along to CodeMirror
* @see https://codemirror.net/6/docs/ref/#keymap
*/
@Prop()
public keymap: Keymap[] = []
/**
* List of errors to display at the bottom of the code editor section.
* If the error is a `string`, then it will be rendered as a warning.
*/
@Prop()
public errors?: CodeError[] | string[]
@Watch('errors')
errorsChanged(nextErrors: (CodeError | string)[]): void {
this.editorRef?.dispatch({
effects: updateErrors.of(nextErrors),
})
}
private getCodeMirrorConfig = async (config: EditorConfig = {}) => {
const {
language,
foldGutterEnabled,
lineNumbersEnabled,
lineWrappingEnabled,
} = {
language: this.activeLanguage,
foldGutterEnabled: this.foldGutter,
lineNumbersEnabled: this.lineNumbers,
lineWrappingEnabled: this.lineWrapping,
...config,
}
const languageSyntax = await this.getLang(language)
const extensions: Extension[] = [
history(),
autocompletion(),
EditorState.languageData.of(() => [{ autocomplete: completeAnyWord }]),
bracketMatching(),
closeBrackets(),
Prec.fallback(defaultHighlightStyle),
this.languageConf.of(languageSyntax),
this.lineWrappingConf.of(
lineWrappingEnabled ? EditorView.lineWrapping : []
),
this.lineNumbersConf.of(lineNumbersEnabled ? lineNumbers() : []),
this.foldGutterConf.of(foldGutterEnabled ? foldGutter() : []),
drawSelection(),
EditorState.allowMultipleSelections.of(true),
searchConfig({ top: true }),
highlightSpecialChars(),
keymap.of([
...defaultKeymap,
...commentKeymap,
...closeBracketsKeymap,
...historyKeymap,
...foldKeymap,
...searchKeymap,
{
key: 'Ctrl-Space',
run: startCompletion,
},
{
key: 'Shift-Enter',
run: this.execute,
},
...this.keymap,
]),
this.readOnlyConf.of(EditorView.editable.of(!this.readOnly)),
codeErrors(),
this.contentChangeHandler
? updateListenerExtension(this.contentChangeHandler)
: [],
]
return extensions
}
private initCodeMirror = async (): Promise<void> => {
const root = this.el
const slotEl: Element | undefined = getSlotByName(root)(slots.text)
const textContent = this.contents ?? slotEl?.textContent ?? ''
this.editorRef = new EditorView({
state: EditorState.create({
doc: textContent,
extensions: await this.getCodeMirrorConfig(),
}),
})
this.isReady = true
}
private attachEditorToDom = () => {
const editorDom = this.editorRef?.dom
if (editorDom) {
this.el?.querySelector(`#${cssIds.editorTarget}`)?.replaceWith(editorDom)
}
}
/**
* Retrieve the Editor contents and active language.
*/
@Method()
public getContents(): Promise<EditorContents> {
return Promise.resolve({
text: this.editorRef?.state.doc.toString() ?? '',
language: lookupFormat(
this.languagePickerRef?.value ?? this.activeLanguage
).name.toLowerCase(),
})
}
private setContentsHandler = (contents: string) => {
const docState = this.editorRef?.state
const transaction =
docState?.update({
changes: {
from: 0,
to: docState.doc.length,
insert: contents,
},
scrollIntoView: true,
}) ?? {}
this.editorRef?.dispatch(transaction)
}
/**
* Replace the contents of the Editor with a supplied string.
*/
@Method()
public setContents(contents: string): Promise<string> {
this.setContentsHandler(contents)
return Promise.resolve(contents)
}
/**
* Retrieve a JSON representation of the the internal editor state.
*/
@Method()
public getState(): Promise<EditorStateJSON> {
return Promise.resolve(
this.editorRef?.state.toJSON({
history: historyField,
})
)
}
/**
* Update the internal editor state with the given JSON object.
*/
@Method()
public async setState(state: EditorStateJSON): Promise<void> {
this.editorRef?.setState(
EditorState.fromJSON(
state,
{ extensions: await this.getCodeMirrorConfig() },
{
history: historyField,
}
)
)
}
/**
* Create a new editor state from a given string.
* The string will be used as the initial contents of the editor.
*/
@Method()
public async setStateFromString(content: string): Promise<void> {
this.editorRef?.setState(
EditorState.create({
doc: content,
extensions: await this.getCodeMirrorConfig(),
})
)
}
/**
* Retrieve a reference to the internal CodeMirror editor.
* Allows for maintaining state from applications making use of this component.
*/
@Method()
public async getRef(): Promise<EditorView> {
if (this.editorRef) {
return this.editorRef
}
return new Promise((resolve, reject) => {
let isChecking = true
const timeout = 3_000
const wait = setTimeout(() => {
isChecking = false
}, timeout)
const check = () => {
setInterval(() => {
if (this.editorRef && this.isReady) {
clearTimeout(wait)
resolve(this.editorRef)
} else if (!isChecking) {
reject(
new Error(
`Editor wasn’t instantiated in time (${timeout}ms), please try again.`
)
)
} else {
check()
}
}, 100)
}
check()
})
}
/**
* Prevents keyboard event listeners attached to parent DOM elements from firing.
* This is to avoid conflicts when user has focused on the editor.
*/
private stopEventPropagation = (e: KeyboardEvent): void => {
e.stopPropagation()
}
/**
* Brings DOM focus to the editor
*/
private focus = (): void => {
this.editorRef?.focus()
}
protected async componentWillLoad(): Promise<void> {
try {
return this.initCodeMirror()
} catch (err) {
console.log('Encountered error while initializing code editor\n', err)
}
}
protected componentDidLoad(): void {
this.attachEditorToDom()
if (this.autofocus) {
this.focus()
}
}
protected disconnectedCallback(): void {
this.editorRef?.destroy()
}
public render() {
return (
<Host>
<div class={cssClasses.container}>
<div
class={cssClasses.editor}
onKeyDown={this.stopEventPropagation}
onClick={this.focus}
>
<div class="hidden">
<slot name={slots.text} />
</div>
<div id={cssIds.editorTarget} />
</div>
<menu>
<LanguagePicker
activeLanguage={this.activeLanguage}
onSetLanguage={this.onSelectLanguage}
languageCapabilities={this.languageCapabilities}
setRef={this.setLanguagePickerRef}
></LanguagePicker>
</menu>
</div>
</Host>
)
}
}