-
Notifications
You must be signed in to change notification settings - Fork 6
/
SequenceEditor.svelte
600 lines (540 loc) · 21.6 KB
/
SequenceEditor.svelte
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
<svelte:options immutable={true} />
<script lang="ts">
import { json } from '@codemirror/lang-json';
import { indentService, syntaxTree } from '@codemirror/language';
import { lintGutter } from '@codemirror/lint';
import { Compartment, EditorState } from '@codemirror/state';
import { type ViewUpdate } from '@codemirror/view';
import type { SyntaxNode, Tree } from '@lezer/common';
import type { ChannelDictionary, CommandDictionary, ParameterDictionary } from '@nasa-jpl/aerie-ampcs';
import ChevronDownIcon from '@nasa-jpl/stellar/icons/chevron_down.svg?component';
import CollapseIcon from 'bootstrap-icons/icons/arrow-bar-down.svg?component';
import ExpandIcon from 'bootstrap-icons/icons/arrow-bar-up.svg?component';
import ClipboardIcon from 'bootstrap-icons/icons/clipboard.svg?component';
import DownloadIcon from 'bootstrap-icons/icons/download.svg?component';
import { EditorView, basicSetup } from 'codemirror';
import { debounce } from 'lodash-es';
import { createEventDispatcher, onDestroy, onMount } from 'svelte';
import {
inputFormat,
outputFormat,
sequenceAdaptation,
setSequenceAdaptation,
} from '../../stores/sequence-adaptation';
import {
channelDictionaries,
commandDictionaries,
getParsedChannelDictionary,
getParsedCommandDictionary,
getParsedParameterDictionary,
parameterDictionaries as parameterDictionariesStore,
parcelToParameterDictionaries,
userSequenceEditorColumns,
userSequenceEditorColumnsWithFormBuilder,
} from '../../stores/sequencing';
import type { User } from '../../types/app';
import type { IOutputFormat, Parcel } from '../../types/sequencing';
import { setupLanguageSupport } from '../../utilities/codemirror';
import type { CommandInfoMapper } from '../../utilities/codemirror/commandInfoMapper';
import { seqNHighlightBlock, seqqNBlockHighlighter } from '../../utilities/codemirror/seq-n-highlighter';
import { SeqNCommandInfoMapper } from '../../utilities/codemirror/seq-n-tree-utils';
import { blockTheme } from '../../utilities/codemirror/themes/block';
import {
setupVmlLanguageSupport,
vmlAdaptation,
vmlBlockHighlighter,
vmlHighlightBlock,
} from '../../utilities/codemirror/vml/vml';
import { vmlAutoComplete } from '../../utilities/codemirror/vml/vmlAdaptation';
import { vmlFormat } from '../../utilities/codemirror/vml/vmlFormatter';
import { vmlLinter } from '../../utilities/codemirror/vml/vmlLinter';
import { vmlTooltip } from '../../utilities/codemirror/vml/vmlTooltip';
import { VmlCommandInfoMapper } from '../../utilities/codemirror/vml/vmlTreeUtils';
import effects from '../../utilities/effects';
import { downloadBlob, downloadJSON } from '../../utilities/generic';
import { inputLinter, outputLinter } from '../../utilities/sequence-editor/extension-points';
import { seqNFormat } from '../../utilities/sequence-editor/sequence-autoindent';
import { sequenceTooltip } from '../../utilities/sequence-editor/sequence-tooltip';
import { showFailureToast, showSuccessToast } from '../../utilities/toast';
import { tooltip } from '../../utilities/tooltip';
import Menu from '../menus/Menu.svelte';
import MenuItem from '../menus/MenuItem.svelte';
import CssGrid from '../ui/CssGrid.svelte';
import CssGridGutter from '../ui/CssGridGutter.svelte';
import Panel from '../ui/Panel.svelte';
import SectionTitle from '../ui/SectionTitle.svelte';
import SelectedCommand from './form/SelectedCommand.svelte';
export let parcel: Parcel | null;
export let showCommandFormBuilder: boolean = false;
export let readOnly: boolean = false;
export let sequenceName: string = '';
export let sequenceDefinition: string = '';
export let sequenceOutput: string = '';
export let title: string = 'Sequence - Definition Editor';
export let user: User | null;
const dispatch = createEventDispatcher<{
sequence: { input: string; output: string };
}>();
const debouncedSeqNHighlightBlock = debounce(seqNHighlightBlock, 250);
const debouncedVmlHighlightBlock = debounce(vmlHighlightBlock, 250);
let clientHeightGridRightBottom: number;
let clientHeightGridRightTop: number;
let compartmentSeqJsonLinter: Compartment;
let compartmentSeqLanguage: Compartment;
let compartmentSeqLinter: Compartment;
let compartmentSeqTooltip: Compartment;
let compartmentSeqAutocomplete: Compartment;
let compartmentSeqHighlighter: Compartment;
let channelDictionary: ChannelDictionary | null;
let commandDictionary: CommandDictionary | null;
let disableCopyAndExport: boolean = true;
let parameterDictionaries: ParameterDictionary[] = [];
let commandFormBuilderGrid: string;
let editorOutputDiv: HTMLDivElement;
let editorOutputView: EditorView;
let editorSequenceDiv: HTMLDivElement;
let editorSequenceView: EditorView;
let menu: Menu;
let outputFormats: IOutputFormat[];
let selectedNode: SyntaxNode | null;
let currentTree: Tree;
let commandInfoMapper: CommandInfoMapper = new SeqNCommandInfoMapper();
let selectedOutputFormat: IOutputFormat | undefined;
let toggleSeqJsonPreview: boolean = false;
let isInVmlMode: boolean = false;
let showOutputs: boolean = true;
let editorHeights: string = toggleSeqJsonPreview ? '1fr 3px 1fr' : '1.88fr 3px 80px';
$: {
loadSequenceAdaptation(parcel?.sequence_adaptation_id);
}
$: isInVmlMode = inVmlMode(sequenceName);
$: {
if (editorSequenceView) {
// insert sequence
editorSequenceView.dispatch({
changes: { from: 0, insert: sequenceDefinition, to: editorSequenceView.state.doc.length },
});
}
}
$: {
if (compartmentSeqHighlighter && editorSequenceView) {
if (isInVmlMode) {
editorSequenceView.dispatch({
effects: compartmentSeqHighlighter.reconfigure([
EditorView.updateListener.of(debouncedVmlHighlightBlock),
vmlBlockHighlighter,
]),
});
} else {
editorSequenceView.dispatch({
effects: compartmentSeqHighlighter.reconfigure([
EditorView.updateListener.of(debouncedSeqNHighlightBlock),
seqqNBlockHighlighter,
]),
});
}
}
}
$: {
commandFormBuilderGrid = showCommandFormBuilder
? $userSequenceEditorColumnsWithFormBuilder
: $userSequenceEditorColumns;
}
$: {
const unparsedChannelDictionary = $channelDictionaries.find(cd => cd.id === parcel?.channel_dictionary_id);
const unparsedCommandDictionary = $commandDictionaries.find(cd => cd.id === parcel?.command_dictionary_id);
const unparsedParameterDictionaries = $parameterDictionariesStore.filter(pd => {
const parameterDictionary = $parcelToParameterDictionaries.find(
p => p.parameter_dictionary_id === pd.id && p.parcel_id === parcel?.id,
);
if (parameterDictionary) {
return pd;
}
});
if (unparsedCommandDictionary) {
if (sequenceName && isInVmlMode) {
getParsedCommandDictionary(unparsedCommandDictionary, user).then(parsedCommandDictionary => {
commandDictionary = parsedCommandDictionary;
editorSequenceView.dispatch({
effects: compartmentSeqLanguage.reconfigure(setupVmlLanguageSupport(vmlAutoComplete(commandDictionary))),
});
editorSequenceView.dispatch({
effects: compartmentSeqLinter.reconfigure(vmlLinter(commandDictionary)),
});
editorSequenceView.dispatch({
effects: compartmentSeqTooltip.reconfigure(vmlTooltip(commandDictionary)),
});
});
} else {
Promise.all([
getParsedCommandDictionary(unparsedCommandDictionary, user),
unparsedChannelDictionary ? getParsedChannelDictionary(unparsedChannelDictionary, user) : null,
...unparsedParameterDictionaries.map(unparsedParameterDictionary => {
return getParsedParameterDictionary(unparsedParameterDictionary, user);
}),
]).then(([parsedCommandDictionary, parsedChannelDictionary, ...parsedParameterDictionaries]) => {
const nonNullParsedParameterDictionaries = parsedParameterDictionaries.filter(
(pd): pd is ParameterDictionary => !!pd,
);
channelDictionary = parsedChannelDictionary;
commandDictionary = parsedCommandDictionary;
parameterDictionaries = nonNullParsedParameterDictionaries;
// Reconfigure sequence editor.
editorSequenceView.dispatch({
effects: [
compartmentSeqLanguage.reconfigure(
setupLanguageSupport(
$sequenceAdaptation.autoComplete(
parsedChannelDictionary,
parsedCommandDictionary,
nonNullParsedParameterDictionaries,
),
),
),
compartmentSeqLinter.reconfigure(
inputLinter(parsedChannelDictionary, parsedCommandDictionary, nonNullParsedParameterDictionaries),
),
compartmentSeqTooltip.reconfigure(
sequenceTooltip(parsedChannelDictionary, parsedCommandDictionary, nonNullParsedParameterDictionaries),
),
...($sequenceAdaptation.autoIndent
? [compartmentSeqAutocomplete.reconfigure(indentService.of($sequenceAdaptation.autoIndent()))]
: []),
],
});
// Reconfigure seq JSON editor.
editorOutputView.dispatch({
effects: compartmentSeqJsonLinter.reconfigure(outputLinter(parsedCommandDictionary, selectedOutputFormat)),
});
});
}
}
}
$: showOutputs = !isInVmlMode && outputFormats.length > 0;
$: {
if (showOutputs) {
editorHeights = toggleSeqJsonPreview ? '1fr 3px 1fr' : '1.88fr 3px 80px';
} else {
editorHeights = '1fr 3px';
}
}
onMount(() => {
compartmentSeqJsonLinter = new Compartment();
compartmentSeqLanguage = new Compartment();
compartmentSeqLinter = new Compartment();
compartmentSeqTooltip = new Compartment();
compartmentSeqAutocomplete = new Compartment();
compartmentSeqHighlighter = new Compartment();
editorSequenceView = new EditorView({
doc: sequenceDefinition,
extensions: [
basicSetup,
EditorView.lineWrapping,
EditorView.theme({ '.cm-gutter': { 'min-height': `${clientHeightGridRightTop}px` } }),
lintGutter(),
compartmentSeqLanguage.of(setupLanguageSupport($sequenceAdaptation.autoComplete(null, null, []))),
compartmentSeqLinter.of(inputLinter()),
compartmentSeqTooltip.of(sequenceTooltip()),
EditorView.updateListener.of(debounce(sequenceUpdateListener, 250)),
EditorView.updateListener.of(selectedCommandUpdateListener),
blockTheme,
compartmentSeqHighlighter.of([
EditorView.updateListener.of(debouncedSeqNHighlightBlock),
seqqNBlockHighlighter,
]),
...($sequenceAdaptation.autoIndent
? [compartmentSeqAutocomplete.of(indentService.of($sequenceAdaptation.autoIndent()))]
: []),
EditorState.readOnly.of(readOnly),
],
parent: editorSequenceDiv,
});
editorOutputView = new EditorView({
doc: sequenceOutput,
extensions: [
basicSetup,
EditorView.lineWrapping,
EditorView.theme({ '.cm-gutter': { 'min-height': `${clientHeightGridRightBottom}px` } }),
EditorView.editable.of(false),
lintGutter(),
json(),
compartmentSeqJsonLinter.of(outputLinter()),
EditorState.readOnly.of(readOnly),
],
parent: editorOutputDiv,
});
});
onDestroy(() => {
resetSequenceAdaptation();
});
async function loadSequenceAdaptation(id: number | null | undefined): Promise<void> {
if (id) {
const adaptation = await effects.getSequenceAdaptation(id, user);
if (adaptation) {
try {
setSequenceAdaptation(eval(String(adaptation.adaptation)));
} catch (e) {
console.error(e);
showFailureToast('Invalid sequence adaptation');
}
}
} else if (isInVmlMode) {
setSequenceAdaptation(vmlAdaptation);
} else {
resetSequenceAdaptation();
}
outputFormats = $outputFormat;
selectedOutputFormat = outputFormats[0];
}
function resetSequenceAdaptation(): void {
setSequenceAdaptation(undefined);
}
function compile(): void {
if (selectedOutputFormat?.compile) {
selectedOutputFormat.compile(sequenceOutput);
}
}
async function sequenceUpdateListener(viewUpdate: ViewUpdate): Promise<void> {
const sequence = viewUpdate.state.doc.toString();
disableCopyAndExport = sequence === '';
const tree = syntaxTree(viewUpdate.state);
let output = await selectedOutputFormat?.toOutputFormat?.(tree, sequence, commandDictionary, sequenceName);
if ($sequenceAdaptation?.modifyOutput !== undefined && output !== undefined) {
const modifiedOutput = $sequenceAdaptation.modifyOutput(output, parameterDictionaries, channelDictionary);
if (modifiedOutput === null) {
output = 'modifyOutput returned null. Verify your adaptation is correct';
} else if (modifiedOutput === undefined) {
output = 'modifyOutput returned undefined. Verify your adaptation is correct';
} else if (typeof modifiedOutput === 'object') {
output = JSON.stringify(modifiedOutput);
} else {
output = `${modifiedOutput}`;
}
}
editorOutputView.dispatch({ changes: { from: 0, insert: output, to: editorOutputView.state.doc.length } });
if (output !== undefined) {
dispatch('sequence', { input: sequence, output });
}
}
function selectedCommandUpdateListener(viewUpdate: ViewUpdate): void {
// This is broken out into a different listener as debouncing this can cause cursor to move around
const tree = syntaxTree(viewUpdate.state);
// Command Node includes trailing newline and white space, move to next command
const selectionLine = viewUpdate.state.doc.lineAt(viewUpdate.state.selection.asSingle().main.from);
const leadingWhiteSpaceLength = selectionLine.text.length - selectionLine.text.trimStart().length;
const updatedSelectionNode = tree.resolveInner(selectionLine.from + leadingWhiteSpaceLength, 1);
// minimize triggering selected command view
if (selectedNode !== updatedSelectionNode) {
if (isInVmlMode) {
commandInfoMapper = new VmlCommandInfoMapper();
} else {
commandInfoMapper = new SeqNCommandInfoMapper();
}
selectedNode = updatedSelectionNode;
currentTree = tree;
}
}
function downloadOutputFormat(outputFormat: IOutputFormat): void {
const fileExtension = `${sequenceName}.${selectedOutputFormat?.fileExtension}`;
if (outputFormat?.fileExtension === 'json') {
downloadJSON(JSON.parse(editorOutputView.state.doc.toString()), fileExtension);
} else {
downloadBlob(new Blob([editorOutputView.state.doc.toString()], { type: 'text/plain' }), fileExtension);
}
}
function downloadInputFormat(): void {
downloadBlob(new Blob([editorSequenceView.state.doc.toString()], { type: 'text/plain' }), `${sequenceName}.txt`);
}
async function copyOutputFormatToClipboard(): Promise<void> {
try {
await navigator.clipboard.writeText(editorOutputView.state.doc.toString());
showSuccessToast(`${selectedOutputFormat?.name} copied to clipboard`);
} catch {
showFailureToast(`Error copying ${selectedOutputFormat?.name} to clipboard`);
}
}
async function copyInputFormatToClipboard(): Promise<void> {
try {
await navigator.clipboard.writeText(editorSequenceView.state.doc.toString());
showSuccessToast(`${$inputFormat?.name} copied to clipboard`);
} catch {
showFailureToast(`Error copying ${$inputFormat?.name} to clipboard`);
}
}
function toggleSeqJsonEditor(): void {
toggleSeqJsonPreview = !toggleSeqJsonPreview;
}
function formatDocument() {
if (isInVmlMode) {
vmlFormat(editorSequenceView);
} else {
seqNFormat(editorSequenceView);
}
}
function inVmlMode(sequenceName: string | undefined): boolean {
return sequenceName !== undefined && sequenceName.endsWith('.vml');
}
</script>
<CssGrid bind:columns={commandFormBuilderGrid} minHeight={'0'}>
<CssGrid rows={editorHeights} minHeight={'0'}>
<Panel>
<svelte:fragment slot="header">
<SectionTitle>{title}</SectionTitle>
<div class="right">
<button
use:tooltip={{ content: 'Format sequence whitespace', placement: 'top' }}
class="st-button icon-button secondary ellipsis"
on:click={formatDocument}
>
Format
</button>
<button
use:tooltip={{ content: `Copy sequence contents`, placement: 'top' }}
class="st-button icon-button secondary ellipsis"
on:click={copyInputFormatToClipboard}
disabled={disableCopyAndExport}><ClipboardIcon />Copy</button
>
<button
use:tooltip={{
content: `Download sequence contents`,
placement: 'top',
}}
class="st-button icon-button secondary ellipsis"
on:click|stopPropagation={downloadInputFormat}
disabled={disableCopyAndExport}><DownloadIcon />Download</button
>
{#if showOutputs}
<div class="app-menu" role="none" on:click|stopPropagation={() => menu.toggle()}>
<button class="st-button icon-button secondary ellipsis">
Output
<ChevronDownIcon />
</button>
<Menu bind:this={menu}>
{#each outputFormats as outputFormatItem}
<div
use:tooltip={{
content: `Copy sequence contents as ${outputFormatItem?.name} to clipboard`,
placement: 'top',
}}
>
<MenuItem on:click={copyOutputFormatToClipboard} disabled={disableCopyAndExport}>
<ClipboardIcon />
{outputFormatItem?.name}
</MenuItem>
</div>
<div
use:tooltip={{
content: `Download sequence contents as ${outputFormatItem?.name}`,
placement: 'top',
}}
>
<MenuItem on:click={() => downloadOutputFormat(outputFormatItem)} disabled={disableCopyAndExport}>
<DownloadIcon />
{outputFormatItem?.name}
</MenuItem>
</div>
{/each}
</Menu>
</div>
{#if selectedOutputFormat?.compile}
<button class="st-button icon-button secondary ellipsis" on:click={compile}>Compile</button>
{/if}
{/if}
</div>
</svelte:fragment>
<svelte:fragment slot="body">
<div bind:this={editorSequenceDiv} />
</svelte:fragment>
</Panel>
{#if showOutputs}
<CssGridGutter draggable={toggleSeqJsonPreview} track={1} type="row" />
<Panel>
<svelte:fragment slot="header">
<SectionTitle>{selectedOutputFormat?.name} (Read-only)</SectionTitle>
<div class="right">
{#if outputFormats}
<div class="output-format">
<label for="outputFormat">Output Format</label>
<select bind:value={selectedOutputFormat} class="st-select w-100" name="outputFormat">
{#each outputFormats as outputFormatItem}
<option value={outputFormatItem}>
{outputFormatItem.name}
</option>
{/each}
</select>
</div>
{/if}
<button
use:tooltip={{ content: toggleSeqJsonPreview ? `Collapse Editor` : `Expand Editor`, placement: 'top' }}
class="st-button icon"
on:click={toggleSeqJsonEditor}
>
{#if toggleSeqJsonPreview}
<CollapseIcon />
{:else}
<ExpandIcon />
{/if}</button
>
</div>
</svelte:fragment>
<svelte:fragment slot="body">
<div bind:this={editorOutputDiv} />
</svelte:fragment>
</Panel>
{/if}
</CssGrid>
{#if showCommandFormBuilder}
<CssGridGutter track={1} type="column" />
{#if !!commandDictionary && !!selectedNode}
<SelectedCommand
node={selectedNode}
tree={currentTree}
{channelDictionary}
{commandDictionary}
{commandInfoMapper}
{editorSequenceView}
{parameterDictionaries}
/>
{:else}
<Panel overflowYBody="hidden" padBody={false}>
<svelte:fragment slot="header">
<SectionTitle>Selected Command</SectionTitle>
</svelte:fragment>
<svelte:fragment slot="body">
<div class="st-typography-body no-selected-parcel">Select a parcel to enable the Selected Command panel.</div>
</svelte:fragment>
</Panel>
{/if}
{/if}
</CssGrid>
<style>
.app-menu {
align-items: center;
cursor: pointer;
display: flex;
gap: 5px;
justify-content: center;
position: relative;
}
.no-selected-parcel {
padding: 8px;
}
.right {
align-items: center;
display: flex;
justify-content: space-around;
}
.icon-button {
align-items: center;
column-gap: 5px;
display: flex;
margin: 2px;
}
.output-format {
align-items: center;
display: flex;
}
.output-format label {
width: 10rem;
}
</style>