-
Notifications
You must be signed in to change notification settings - Fork 37
/
lint.ts
977 lines (876 loc) · 34.3 KB
/
lint.ts
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
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
/**
Modified copy of the lint extension from CodeMirror 6.7.0
git revision 6dc3ba4c109cc20bb8b6cdcd50b9f1195a53f9f4
sha1 of source lint.ts e172dd8dc59ec1ab904824153438c2cc55b4df3a
To aid comparison to the original, this file is not auto-formatted
and we've disabled our eslint rules.
Changes:
- The gutter markers track whether they're on a line that's currently
being edited.
- We show different UI in this case: a typing indicator.
Changes are (c) 2022, Micro:bit Educational Foundation and contributors
under the same MIT licence as the original.
Original licence follows:
MIT License
Copyright (C) 2018-2021 by Marijn Haverbeke <[email protected]> and others
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
import {EditorView, ViewPlugin, Decoration, DecorationSet,
WidgetType, ViewUpdate, Command, logException, KeyBinding,
hoverTooltip, Tooltip, showTooltip, gutter, GutterMarker,
PanelConstructor, Panel, showPanel, getPanel} from "@codemirror/view"
import {Text, StateEffect, StateField, Extension, TransactionSpec, Transaction,
EditorState, Facet, combineConfig, RangeSet, Range} from "@codemirror/state"
import elt from "crelt"
import { editingLineState, editingLinePlugin, setEditingLineEffect } from "./editingLine"
type Severity = "hint" | "info" | "warning" | "error"
/// Describes a problem or hint for a piece of code.
export interface Diagnostic {
/// The start position of the relevant text.
from: number
/// The end position. May be equal to `from`, though actually
/// covering text is preferable.
to: number
/// The severity of the problem. This will influence how it is
/// displayed.
severity: Severity
/// When given, add an extra CSS class to parts of the code that
/// this diagnostic applies to.
markClass?: string
/// An optional source string indicating where the diagnostic is
/// coming from. You can put the name of your linter here, if
/// applicable.
source?: string
/// The message associated with this diagnostic.
message: string
/// An optional custom rendering function that displays the message
/// as a DOM node.
renderMessage?: (view: EditorView) => Node
/// An optional array of actions that can be taken on this
/// diagnostic.
actions?: readonly Action[]
/// Tags control alternative presentations for diagnostics.
/// Currently supported tags are `"unnecessary"` and `"deprecated"`
/// which are formatted with opacity and strikethrough respectively.
tags?: string[]
}
/// An action associated with a diagnostic.
export interface Action {
/// The label to show to the user. Should be relatively short.
name: string
/// The function to call when the user activates this action. Is
/// given the diagnostic's _current_ position, which may have
/// changed since the creation of the diagnostic, due to editing.
apply: (view: EditorView, from: number, to: number) => void
}
type DiagnosticFilter = (diagnostics: readonly Diagnostic[], state: EditorState) => Diagnostic[]
interface LintConfig {
/// Time to wait (in milliseconds) after a change before running
/// the linter. Defaults to 750ms.
delay?: number
/// Optional predicate that can be used to indicate when diagnostics
/// need to be recomputed. Linting is always re-done on document
/// changes.
needsRefresh?: null | ((update: ViewUpdate) => boolean)
/// Optional filter to determine which diagnostics produce markers
/// in the content.
markerFilter?: null | DiagnosticFilter,
/// Filter applied to a set of diagnostics shown in a tooltip. No
/// tooltip will appear if the empty set is returned.
tooltipFilter?: null | DiagnosticFilter
/// Can be used to control what kind of transactions cause lint
/// hover tooltips associated with the given document range to be
/// hidden. By default any transactions that changes the line
/// around the range will hide it. Returning null falls back to this
/// behavior.
hideOn?: (tr: Transaction, from: number, to: number) => boolean | null
}
interface LintGutterConfig {
/// The delay before showing a tooltip when hovering over a lint gutter marker.
hoverTime?: number,
/// Optional filter determining which diagnostics show a marker in
/// the gutter.
markerFilter?: null | DiagnosticFilter,
/// Optional filter for diagnostics displayed in a tooltip, which
/// can also be used to prevent a tooltip appearing.
tooltipFilter?: null | DiagnosticFilter
}
class SelectedDiagnostic {
constructor(readonly from: number, readonly to: number, readonly diagnostic: Diagnostic) {}
}
class LintState {
constructor(readonly diagnostics: DecorationSet,
readonly panel: PanelConstructor | null,
readonly selected: SelectedDiagnostic | null) {}
static init(diagnostics: readonly Diagnostic[], panel: PanelConstructor | null, state: EditorState) {
// Filter the list of diagnostics for which to create markers
let markedDiagnostics = diagnostics
let diagnosticFilter = state.facet(lintConfig).markerFilter
if (diagnosticFilter)
markedDiagnostics = diagnosticFilter(markedDiagnostics, state)
let ranges = Decoration.set(markedDiagnostics.map((d: Diagnostic) => {
// For zero-length ranges or ranges covering only a line break, create a widget
return d.from == d.to || (d.from == d.to - 1 && state.doc.lineAt(d.from).to == d.from)
? Decoration.widget({
widget: new DiagnosticWidget(d),
diagnostic: d
}).range(d.from)
: Decoration.mark({
attributes: {
class: [
"cm-lintRange",
...(d.tags?.length ?
d.tags.map(tag => "cm-lintRange-" + tag) : ["cm-lintRange-" + d.severity])
].join(" ")
},
diagnostic: d,
inclusive: true
}).range(d.from, d.to)
}), true)
return new LintState(ranges, panel, findDiagnostic(ranges))
}
}
function findDiagnostic(diagnostics: DecorationSet, diagnostic: Diagnostic | null = null, after = 0): SelectedDiagnostic | null {
let found: SelectedDiagnostic | null = null
diagnostics.between(after, 1e9, (from, to, {spec}) => {
if (diagnostic && spec.diagnostic != diagnostic) return
found = new SelectedDiagnostic(from, to, spec.diagnostic)
return false
})
return found
}
function hideTooltip(tr: Transaction, tooltip: Tooltip) {
let from = tooltip.pos, to = tooltip.end || from
let result = tr.state.facet(lintConfig).hideOn(tr, from, to)
if (result != null) return result
let line = tr.startState.doc.lineAt(tooltip.pos)
return !!(tr.effects.some(e => e.is(setDiagnosticsEffect)) || tr.changes.touchesRange(line.from, Math.max(line.to, to)))
}
function maybeEnableLint(state: EditorState, effects: readonly StateEffect<unknown>[]) {
return state.field(lintState, false) ? effects : effects.concat(StateEffect.appendConfig.of(lintExtensions))
}
/// Returns a transaction spec which updates the current set of
/// diagnostics, and enables the lint extension if if wasn't already
/// active.
export function setDiagnostics(state: EditorState, diagnostics: readonly Diagnostic[]): TransactionSpec {
return {
effects: maybeEnableLint(state, [setDiagnosticsEffect.of(diagnostics)])
}
}
/// The state effect that updates the set of active diagnostics. Can
/// be useful when writing an extension that needs to track these.
export const setDiagnosticsEffect = StateEffect.define<readonly Diagnostic[]>()
const togglePanel = StateEffect.define<boolean>()
const movePanelSelection = StateEffect.define<SelectedDiagnostic>()
export const lintState = StateField.define<LintState>({
create() {
return new LintState(Decoration.none, null, null)
},
update(value, tr) {
if (tr.docChanged) {
let mapped = value.diagnostics.map(tr.changes), selected = null
if (value.selected) {
let selPos = tr.changes.mapPos(value.selected.from, 1)
selected = findDiagnostic(mapped, value.selected.diagnostic, selPos) || findDiagnostic(mapped, null, selPos)
}
value = new LintState(mapped, value.panel, selected)
}
for (let effect of tr.effects) {
if (effect.is(setDiagnosticsEffect)) {
value = LintState.init(effect.value, value.panel, tr.state)
} else if (effect.is(togglePanel)) {
value = new LintState(value.diagnostics, effect.value ? LintPanel.open : null, value.selected)
} else if (effect.is(movePanelSelection)) {
value = new LintState(value.diagnostics, value.panel, effect.value)
}
}
return value
},
provide: f => [showPanel.from(f, val => val.panel),
EditorView.decorations.from(f, s => s.diagnostics)]
})
/// Returns the number of active lint diagnostics in the given state.
export function diagnosticCount(state: EditorState) {
let lint = state.field(lintState, false)
return lint ? lint.diagnostics.size : 0
}
const activeMark = Decoration.mark({class: "cm-lintRange cm-lintRange-active", inclusive: true})
function lintTooltip(view: EditorView, pos: number, side: -1 | 1) {
let {diagnostics} = view.state.field(lintState)
let found: Diagnostic[] = [], stackStart = 2e8, stackEnd = 0
diagnostics.between(pos - (side < 0 ? 1 : 0), pos + (side > 0 ? 1 : 0), (from, to, {spec}) => {
if (pos >= from && pos <= to &&
(from == to || ((pos > from || side > 0) && (pos < to || side < 0)))) {
found.push(spec.diagnostic)
stackStart = Math.min(from, stackStart)
stackEnd = Math.max(to, stackEnd)
}
})
let diagnosticFilter = view.state.facet(lintConfig).tooltipFilter
if (diagnosticFilter) found = diagnosticFilter(found, view.state)
if (!found.length) return null
return {
pos: stackStart,
end: stackEnd,
above: view.state.doc.lineAt(stackStart).to < stackEnd,
create() {
return {dom: diagnosticsTooltip(view, found)}
}
}
}
function diagnosticsTooltip(view: EditorView, diagnostics: readonly Diagnostic[]) {
return elt("ul", {class: "cm-tooltip-lint"}, diagnostics.map(d => renderDiagnostic(view, d, false)))
}
/// Command to open and focus the lint panel.
export const openLintPanel: Command = (view: EditorView) => {
let field = view.state.field(lintState, false)
if (!field || !field.panel)
view.dispatch({effects: maybeEnableLint(view.state, [togglePanel.of(true)])})
let panel = getPanel(view, LintPanel.open)
if (panel) (panel.dom.querySelector(".cm-panel-lint ul") as HTMLElement).focus()
return true
}
/// Command to close the lint panel, when open.
export const closeLintPanel: Command = (view: EditorView) => {
let field = view.state.field(lintState, false)
if (!field || !field.panel) return false
view.dispatch({effects: togglePanel.of(false)})
return true
}
/// Move the selection to the next diagnostic.
export const nextDiagnostic: Command = (view: EditorView) => {
let field = view.state.field(lintState, false)
if (!field) return false
let sel = view.state.selection.main, next = field.diagnostics.iter(sel.to + 1)
if (!next.value) {
next = field.diagnostics.iter(0)
if (!next.value || next.from == sel.from && next.to == sel.to) return false
}
view.dispatch({selection: {anchor: next.from, head: next.to}, scrollIntoView: true})
return true
}
/// Move the selection to the previous diagnostic.
export const previousDiagnostic: Command = (view: EditorView) => {
let {state} = view, field = state.field(lintState, false)
if (!field) return false
let sel = state.selection.main
let prevFrom: number | undefined, prevTo: number | undefined, lastFrom: number | undefined, lastTo: number | undefined
field.diagnostics.between(0, state.doc.length, (from, to) => {
if (to < sel.to && (prevFrom == null || prevFrom < from)) { prevFrom = from; prevTo = to }
if (lastFrom == null || from > lastFrom) { lastFrom = from; lastTo = to }
})
if (lastFrom == null || prevFrom == null && lastFrom == sel.from) return false
view.dispatch({selection: {anchor: prevFrom ?? lastFrom, head: prevTo ?? lastTo}, scrollIntoView: true})
return true
}
/// A set of default key bindings for the lint functionality.
///
/// - Ctrl-Shift-m (Cmd-Shift-m on macOS): [`openLintPanel`](#lint.openLintPanel)
/// - F8: [`nextDiagnostic`](#lint.nextDiagnostic)
export const lintKeymap: readonly KeyBinding[] = [
{key: "Mod-Shift-m", run: openLintPanel, preventDefault: true},
{key: "F8", run: nextDiagnostic}
]
/// The type of a function that produces diagnostics.
export type LintSource = (view: EditorView) => readonly Diagnostic[] | Promise<readonly Diagnostic[]>
const lintPlugin = ViewPlugin.fromClass(class {
lintTime: number
timeout: any
set = true
constructor(readonly view: EditorView) {
let {delay} = view.state.facet(lintConfig)
this.lintTime = Date.now() + delay
this.run = this.run.bind(this)
this.timeout = setTimeout(this.run, delay)
}
run() {
let now = Date.now()
if (now < this.lintTime - 10) {
this.timeout = setTimeout(this.run, this.lintTime - now)
} else {
this.set = false
let {state} = this.view, {sources} = state.facet(lintConfig)
if (sources.length) Promise.all(sources.map(source => Promise.resolve(source(this.view)))).then(
annotations => {
let all = annotations.reduce((a, b) => a.concat(b))
if (this.view.state.doc == state.doc)
this.view.dispatch(setDiagnostics(this.view.state, all))
},
error => { logException(this.view.state, error) }
)
}
}
update(update: ViewUpdate) {
let config = update.state.facet(lintConfig)
if (update.docChanged || config != update.startState.facet(lintConfig) ||
config.needsRefresh && config.needsRefresh(update)) {
this.lintTime = Date.now() + config.delay
if (!this.set) {
this.set = true
this.timeout = setTimeout(this.run, config.delay)
}
}
}
force() {
if (this.set) {
this.lintTime = Date.now()
this.run()
}
}
destroy() {
clearTimeout(this.timeout)
}
})
const lintConfig = Facet.define<{source: LintSource | null, config: LintConfig},
Required<LintConfig> & {sources: readonly LintSource[]}>({
combine(input) {
return {
sources: input.map(i => i.source).filter(x => x != null) as readonly LintSource[],
...combineConfig(input.map(i => i.config), {
delay: 750,
markerFilter: null,
tooltipFilter: null,
needsRefresh: null,
hideOn: () => null,
}, {
needsRefresh: (a, b) => !a ? b : !b ? a : u => a(u) || b(u)
})
}
}
})
/// Given a diagnostic source, this function returns an extension that
/// enables linting with that source. It will be called whenever the
/// editor is idle (after its content changed). If `null` is given as
/// source, this only configures the lint extension.
export function linter(
source: LintSource | null,
config: LintConfig = {}
): Extension {
return [
lintConfig.of({source, config}),
lintPlugin,
lintExtensions
]
}
/// Forces any linters [configured](#lint.linter) to run when the
/// editor is idle to run right away.
export function forceLinting(view: EditorView) {
let plugin = view.plugin(lintPlugin)
if (plugin) plugin.force()
}
function assignKeys(actions: readonly Action[] | undefined) {
let assigned: string[] = []
if (actions) actions: for (let {name} of actions) {
for (let i = 0; i < name.length; i++) {
let ch = name[i]
if (/[a-zA-Z]/.test(ch) && !assigned.some(c => c.toLowerCase() == ch.toLowerCase())) {
assigned.push(ch)
continue actions
}
}
assigned.push("")
}
return assigned
}
function renderDiagnostic(view: EditorView, diagnostic: Diagnostic, inPanel: boolean) {
let keys = inPanel ? assignKeys(diagnostic.actions) : []
return elt(
"li", {class: "cm-diagnostic cm-diagnostic-" + diagnostic.severity},
elt("span", {class: "cm-diagnosticText"}, diagnostic.renderMessage ? diagnostic.renderMessage(view) : diagnostic.message),
diagnostic.actions?.map((action, i) => {
let fired = false, click = (e: Event) => {
e.preventDefault()
if (fired) return
fired = true
let found = findDiagnostic(view.state.field(lintState).diagnostics, diagnostic)
if (found) action.apply(view, found.from, found.to)
}
let {name} = action, keyIndex = keys[i] ? name.indexOf(keys[i]) : -1
let nameElt = keyIndex < 0 ? name : [name.slice(0, keyIndex),
elt("u", name.slice(keyIndex, keyIndex + 1)),
name.slice(keyIndex + 1)]
return elt("button", {
type: "button",
class: "cm-diagnosticAction",
onclick: click,
onmousedown: click,
"aria-label": ` Action: ${name}${keyIndex < 0 ? "" : ` (access key "${keys[i]})"`}.`
}, nameElt)
}),
diagnostic.source && elt("div", {class: "cm-diagnosticSource"}, diagnostic.source))
}
class DiagnosticWidget extends WidgetType {
constructor(readonly diagnostic: Diagnostic) {super()}
eq(other: DiagnosticWidget) { return other.diagnostic == this.diagnostic }
toDOM() {
return elt("span", {class: "cm-lintPoint cm-lintPoint-" + this.diagnostic.severity})
}
}
class PanelItem {
id = "item_" + Math.floor(Math.random() * 0xffffffff).toString(16)
dom: HTMLElement
constructor(view: EditorView, readonly diagnostic: Diagnostic) {
this.dom = renderDiagnostic(view, diagnostic, true)
this.dom.id = this.id
this.dom.setAttribute("role", "option")
}
}
class LintPanel implements Panel {
items: PanelItem[] = []
dom: HTMLElement
list: HTMLElement
constructor(readonly view: EditorView) {
let onkeydown = (event: KeyboardEvent) => {
if (event.keyCode == 27) { // Escape
closeLintPanel(this.view)
this.view.focus()
} else if (event.keyCode == 38 || event.keyCode == 33) { // ArrowUp, PageUp
this.moveSelection((this.selectedIndex - 1 + this.items.length) % this.items.length)
} else if (event.keyCode == 40 || event.keyCode == 34) { // ArrowDown, PageDown
this.moveSelection((this.selectedIndex + 1) % this.items.length)
} else if (event.keyCode == 36) { // Home
this.moveSelection(0)
} else if (event.keyCode == 35) { // End
this.moveSelection(this.items.length - 1)
} else if (event.keyCode == 13) { // Enter
this.view.focus()
} else if (event.keyCode >= 65 && event.keyCode <= 90 && this.selectedIndex >= 0) { // A-Z
let {diagnostic} = this.items[this.selectedIndex], keys = assignKeys(diagnostic.actions)
for (let i = 0; i < keys.length; i++) if (keys[i].toUpperCase().charCodeAt(0) == event.keyCode) {
let found = findDiagnostic(this.view.state.field(lintState).diagnostics, diagnostic)
if (found) diagnostic.actions![i].apply(view, found.from, found.to)
}
} else {
return
}
event.preventDefault()
}
let onclick = (event: MouseEvent) => {
for (let i = 0; i < this.items.length; i++) {
if (this.items[i].dom.contains(event.target as HTMLElement))
this.moveSelection(i)
}
}
this.list = elt("ul", {
tabIndex: 0,
role: "listbox",
"aria-label": this.view.state.phrase("Diagnostics"),
onkeydown,
onclick
})
this.dom = elt("div", {class: "cm-panel-lint"}, this.list, elt("button", {
type: "button",
name: "close",
"aria-label": this.view.state.phrase("close"),
onclick: () => closeLintPanel(this.view)
}, "×"))
this.update()
}
get selectedIndex() {
let selected = this.view.state.field(lintState).selected
if (!selected) return -1
for (let i = 0; i < this.items.length; i++) if (this.items[i].diagnostic == selected.diagnostic) return i
return -1
}
update() {
let {diagnostics, selected} = this.view.state.field(lintState)
let i = 0, needsSync = false, newSelectedItem: PanelItem | null = null
diagnostics.between(0, this.view.state.doc.length, (_start, _end, {spec}) => {
let found = -1, item
for (let j = i; j < this.items.length; j++)
if (this.items[j].diagnostic == spec.diagnostic) { found = j; break }
if (found < 0) {
item = new PanelItem(this.view, spec.diagnostic)
this.items.splice(i, 0, item)
needsSync = true
} else {
item = this.items[found]
if (found > i) { this.items.splice(i, found - i); needsSync = true }
}
if (selected && item.diagnostic == selected.diagnostic) {
if (!item.dom.hasAttribute("aria-selected")) {
item.dom.setAttribute("aria-selected", "true")
newSelectedItem = item
}
} else if (item.dom.hasAttribute("aria-selected")) {
item.dom.removeAttribute("aria-selected")
}
i++
})
while (i < this.items.length && !(this.items.length == 1 && this.items[0].diagnostic.from < 0)) {
needsSync = true
this.items.pop()
}
if (this.items.length == 0) {
this.items.push(new PanelItem(this.view, {
from: -1, to: -1,
severity: "info",
message: this.view.state.phrase("No diagnostics")
}))
needsSync = true
}
if (newSelectedItem) {
this.list.setAttribute("aria-activedescendant", newSelectedItem!.id)
this.view.requestMeasure({
key: this,
read: () => ({sel: newSelectedItem!.dom.getBoundingClientRect(), panel: this.list.getBoundingClientRect()}),
write: ({sel, panel}) => {
let scaleY = panel.height / this.list.offsetHeight
if (sel.top < panel.top) this.list.scrollTop -= (panel.top - sel.top) / scaleY
else if (sel.bottom > panel.bottom) this.list.scrollTop += (sel.bottom - panel.bottom) / scaleY
}
})
} else if (this.selectedIndex < 0) {
this.list.removeAttribute("aria-activedescendant")
}
if (needsSync) this.sync()
}
sync() {
let domPos: ChildNode | null = this.list.firstChild
function rm() {
let prev = domPos!
domPos = prev.nextSibling
prev.remove()
}
for (let item of this.items) {
if (item.dom.parentNode == this.list) {
while (domPos != item.dom) rm()
domPos = item.dom.nextSibling
} else {
this.list.insertBefore(item.dom, domPos)
}
}
while (domPos) rm()
}
moveSelection(selectedIndex: number) {
if (this.selectedIndex < 0) return
let field = this.view.state.field(lintState)
let selection = findDiagnostic(field.diagnostics, this.items[selectedIndex].diagnostic)
if (!selection) return
this.view.dispatch({
selection: {anchor: selection.from, head: selection.to},
scrollIntoView: true,
effects: movePanelSelection.of(selection)
})
}
static open(view: EditorView) { return new LintPanel(view) }
}
function svg(content: string, attrs = `viewBox="0 0 40 40"`) {
return `url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" ${attrs}>${encodeURIComponent(content)}</svg>')`
}
function underline(color: string) {
return svg(`<path d="m0 2.5 l2 -1.5 l1 0 l2 1.5 l1 0" stroke="${color}" fill="none" stroke-width=".7"/>`,
`width="6" height="3"`)
}
const baseTheme = EditorView.baseTheme({
".cm-diagnostic": {
padding: "3px 6px 3px 8px",
marginLeft: "-1px",
display: "block",
whiteSpace: "pre-wrap"
},
".cm-diagnostic-error": { borderLeft: "5px solid #d11" },
".cm-diagnostic-warning": { borderLeft: "5px solid orange" },
".cm-diagnostic-info": { borderLeft: "5px solid #999" },
".cm-diagnostic-hint": { borderLeft: "5px solid #999" },
".cm-diagnosticAction": {
font: "inherit",
border: "none",
padding: "2px 4px",
backgroundColor: "#444",
color: "white",
borderRadius: "3px",
marginLeft: "8px",
cursor: "pointer"
},
".cm-diagnosticSource": {
fontSize: "70%",
opacity: .7
},
".cm-lintRange": {
backgroundPosition: "left bottom",
backgroundRepeat: "repeat-x",
paddingBottom: "0.7px",
},
".cm-lintRange-error": { backgroundImage: underline("#d11") },
".cm-lintRange-warning": { backgroundImage: underline("orange") },
".cm-lintRange-info": { backgroundImage: underline("#999") },
// Nothing for .cm-lintRange-hint, they're styled based on tags only.
".cm-lintRange-unnecessary": { opacity: 0.5 },
".cm-lintRange-deprecated": { textDecoration: "line-through" },
".cm-lintRange-active": { backgroundColor: "#ffdd9980" },
".cm-tooltip-lint": {
padding: 0,
margin: 0
},
".cm-lintPoint": {
position: "relative",
"&:after": {
content: '""',
position: "absolute",
bottom: 0,
left: "-2px",
borderLeft: "3px solid transparent",
borderRight: "3px solid transparent",
borderBottom: "4px solid #d11"
}
},
".cm-lintPoint-warning": {
"&:after": { borderBottomColor: "orange" }
},
".cm-lintPoint-info": {
"&:after": { borderBottomColor: "#999" }
},
".cm-lintPoint-hint": {
"&:after": { borderBottomColor: "#999" }
},
".cm-panel.cm-panel-lint": {
position: "relative",
"& ul": {
maxHeight: "100px",
overflowY: "auto",
"& [aria-selected]": {
backgroundColor: "#ddd",
"& u": { textDecoration: "underline" }
},
"&:focus [aria-selected]": {
background_fallback: "#bdf",
backgroundColor: "Highlight",
color_fallback: "white",
color: "HighlightText"
},
"& u": { textDecoration: "none" },
padding: 0,
margin: 0
},
"& [name=close]": {
position: "absolute",
top: "0",
right: "2px",
background: "inherit",
border: "none",
font: "inherit",
padding: 0,
margin: 0
}
}
})
function severityWeight(sev: Severity) {
return sev == "error" ? 4 : sev == "warning" ? 3 : sev == "info" ? 2 : 1
}
class LintGutterMarker extends GutterMarker {
severity: Severity
// Diagnostics stored here may have had their 'from' field values
// changed in order to maintain the gutter markers in the correct position.
constructor(public diagnostics: readonly Diagnostic[], readonly editingLine: boolean) {
super()
this.severity = diagnostics.reduce((max, d) => severityWeight(max) < severityWeight(d.severity) ? d.severity : max,
"hint" as Severity)
}
toDOM(view: EditorView) {
let elt = document.createElement("div")
elt.className = `cm-lint-marker cm-lint-marker-${
this.editingLine
? "editing"
: this.severity
}`;
let diagnostics = this.diagnostics
let diagnosticsFilter = view.state.facet(lintGutterConfig).tooltipFilter
if (diagnosticsFilter) diagnostics = diagnosticsFilter(diagnostics, view.state)
if (diagnostics.length)
elt.onmouseover = () => gutterMarkerMouseOver(view, elt, diagnostics)
return elt
}
}
const enum Hover {
Time = 300,
Margin = 10,
}
function trackHoverOn(view: EditorView, marker: HTMLElement) {
let mousemove = (event: MouseEvent) => {
let rect = marker.getBoundingClientRect()
if (event.clientX > rect.left - Hover.Margin && event.clientX < rect.right + Hover.Margin &&
event.clientY > rect.top - Hover.Margin && event.clientY < rect.bottom + Hover.Margin)
return
for (let target = event.target as Node | null; target; target = target.parentNode) {
if (target.nodeType == 1 && (target as HTMLElement).classList.contains("cm-tooltip-lint"))
return
}
window.removeEventListener("mousemove", mousemove)
if (view.state.field(lintGutterTooltip))
view.dispatch({effects: setLintGutterTooltip.of(null)})
}
window.addEventListener("mousemove", mousemove)
}
function gutterMarkerMouseOver(view: EditorView, marker: HTMLElement, diagnostics: readonly Diagnostic[]) {
function hovered() {
if (marker.getBoundingClientRect().top === 0) {
return
}
let line = view.elementAtHeight(marker.getBoundingClientRect().top + 5 - view.documentTop)
const linePos = view.coordsAtPos(line.from)
if (linePos) {
view.dispatch({effects: setLintGutterTooltip.of({
pos: line.from,
above: false,
create() {
return {
dom: diagnosticsTooltip(view, diagnostics),
getCoords: () => marker.getBoundingClientRect()
}
}
})})
}
marker.onmouseout = marker.onmousemove = null
trackHoverOn(view, marker)
}
let {hoverTime} = view.state.facet(lintGutterConfig)
let hoverTimeout = setTimeout(hovered, hoverTime)
marker.onmouseout = () => {
clearTimeout(hoverTimeout)
marker.onmouseout = marker.onmousemove = null
}
marker.onmousemove = () => {
clearTimeout(hoverTimeout)
hoverTimeout = setTimeout(hovered, hoverTime)
}
}
function markersForDiagnostics(doc: Text, diagnostics: readonly Diagnostic[], editingLineState: number | undefined) {
let byLine: {[line: number]: Diagnostic[]} = Object.create(null)
for (let diagnostic of diagnostics) {
let line = doc.lineAt(diagnostic.from)
;(byLine[line.from] || (byLine[line.from] = [])).push(diagnostic)
}
let markers: Range<GutterMarker>[] = []
for (let line in byLine) {
const lineNumber = doc.lineAt(Number(line)).number
const editing = lineNumber === editingLineState;
markers.push(new LintGutterMarker(byLine[line], editing).range(+line))
}
return RangeSet.of(markers, true)
}
const lintGutterExtension = gutter({
class: "cm-gutter-lint",
markers: view => view.state.field(lintGutterMarkers),
})
const lintGutterMarkers = StateField.define<RangeSet<GutterMarker>>({
create() {
return RangeSet.empty
},
update(markers, tr) {
markers = markers.map(tr.changes)
let diagnosticFilter = tr.state.facet(lintGutterConfig).markerFilter
for (let effect of tr.effects) {
if (effect.is(setDiagnosticsEffect)) {
let diagnostics = effect.value
if (diagnosticFilter) {
diagnostics = diagnosticFilter(diagnostics || [], tr.state)
}
markers = markersForDiagnostics(tr.state.doc, diagnostics.slice(0), tr.state.field(editingLineState))
}
if (effect.is(setEditingLineEffect)) {
const diagnostics: Diagnostic[] = []
const iter = markers.iter(0)
while (iter.value) {
const marker = (iter.value as LintGutterMarker);
// Update the `from` field on diagnostics using changes mapped
// to markers above. We need to do this to ensure re-generated
// markers are in the correct position.
marker.diagnostics.forEach(d => {
d.from = iter.from;
diagnostics.push(d);
})
iter.next();
}
markers = markersForDiagnostics(tr.state.doc, diagnostics, effect.value)
}
}
return markers
}
})
const setLintGutterTooltip = StateEffect.define<Tooltip | null>()
const lintGutterTooltip = StateField.define<Tooltip | null>({
create() { return null },
update(tooltip, tr) {
if (tooltip && tr.docChanged)
tooltip = hideTooltip(tr, tooltip) ? null : {...tooltip, pos: tr.changes.mapPos(tooltip.pos)}
return tr.effects.reduce((t, e) => e.is(setLintGutterTooltip) ? e.value : t, tooltip)
},
provide: field => showTooltip.from(field)
})
const lintGutterTheme = EditorView.baseTheme({
".cm-gutter-lint": {
width: "1.4em",
"& .cm-gutterElement": {
padding: ".2em"
}
},
".cm-lint-marker": {
width: "1em",
height: "1em"
},
// Customised stroke-widths. This could move to the theme.
".cm-lint-marker-info, .cm-lint-marker-hint": {
content: svg(`<path fill="#e3e3e3" stroke="#a9aaa9" stroke-width="4" stroke-linejoin="round" d="M5 5L35 5L35 35L5 35Z"/>`)
},
".cm-lint-marker-warning": {
content: svg(`<path fill="#fe8" stroke="#fd7" stroke-width="4" stroke-linejoin="round" d="M20 6L37 35L3 35Z"/>`),
},
".cm-lint-marker-error": {
content: svg(`<circle cx="20" cy="20" r="15" fill="#f87" stroke="#f43" stroke-width="4"/>`)
},
".cm-lint-marker-editing:before": {
content: svg(`<circle cx="20" cy="20" r="15" fill="#fff" stroke="#a9aaa9" stroke-width="4"/>`)
},
})
const lintExtensions = [
lintState,
EditorView.decorations.compute([lintState], state => {
let {selected, panel} = state.field(lintState)
return !selected || !panel || selected.from == selected.to ? Decoration.none : Decoration.set([
activeMark.range(selected.from, selected.to)
])
}),
hoverTooltip(lintTooltip, {hideOn: hideTooltip}),
baseTheme
]
const lintGutterConfig = Facet.define<LintGutterConfig, Required<LintGutterConfig>>({
combine(configs) {
return combineConfig(configs, {
hoverTime: Hover.Time,
markerFilter: null,
tooltipFilter: null
})
}
})
/// Returns an extension that installs a gutter showing markers for
/// each line that has diagnostics, which can be hovered over to see
/// the diagnostics.
export function lintGutter(config: LintGutterConfig = {}): Extension {
return [lintGutterConfig.of(config), lintGutterMarkers, lintGutterExtension, lintGutterTheme, lintGutterTooltip, editingLineState, editingLinePlugin]
}
/// Iterate over the marked diagnostics for the given editor state,
/// calling `f` for each of them. Note that, if the document changed
/// since the diagnostics were created, the `Diagnostic` object will
/// hold the original outdated position, whereas the `to` and `from`
/// arguments hold the diagnostic's current position.
export function forEachDiagnostic(state: EditorState, f: (d: Diagnostic, from: number, to: number) => void) {
let lState = state.field(lintState, false)
if (lState && lState.diagnostics.size)
for (let iter = RangeSet.iter([lState.diagnostics]); iter.value; iter.next())
f(iter.value.spec.diagnostic, iter.from, iter.to)
}