@finos/legend-lego 1.2.72 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. package/lib/code-editor/CodeDiffView.d.ts +3 -1
  2. package/lib/code-editor/CodeDiffView.d.ts.map +1 -1
  3. package/lib/code-editor/CodeDiffView.js +6 -2
  4. package/lib/code-editor/CodeDiffView.js.map +1 -1
  5. package/lib/code-editor/CodeEditor.d.ts +8 -2
  6. package/lib/code-editor/CodeEditor.d.ts.map +1 -1
  7. package/lib/code-editor/CodeEditor.js +42 -4
  8. package/lib/code-editor/CodeEditor.js.map +1 -1
  9. package/lib/code-editor/index.d.ts +0 -5
  10. package/lib/code-editor/index.d.ts.map +1 -1
  11. package/lib/code-editor/index.js +0 -5
  12. package/lib/code-editor/index.js.map +1 -1
  13. package/lib/index.css +1 -1
  14. package/package.json +29 -29
  15. package/src/code-editor/CodeDiffView.tsx +10 -3
  16. package/src/code-editor/CodeEditor.tsx +69 -4
  17. package/src/code-editor/index.ts +0 -6
  18. package/tsconfig.json +1 -15
  19. package/lib/code-editor/CodeEditorTheme.d.ts +0 -41
  20. package/lib/code-editor/CodeEditorTheme.d.ts.map +0 -1
  21. package/lib/code-editor/CodeEditorTheme.js +0 -99
  22. package/lib/code-editor/CodeEditorTheme.js.map +0 -1
  23. package/lib/code-editor/CodeEditorUtils.d.ts +0 -74
  24. package/lib/code-editor/CodeEditorUtils.d.ts.map +0 -1
  25. package/lib/code-editor/CodeEditorUtils.js +0 -203
  26. package/lib/code-editor/CodeEditorUtils.js.map +0 -1
  27. package/lib/code-editor/PureLanguage.d.ts +0 -38
  28. package/lib/code-editor/PureLanguage.d.ts.map +0 -1
  29. package/lib/code-editor/PureLanguage.js +0 -39
  30. package/lib/code-editor/PureLanguage.js.map +0 -1
  31. package/lib/code-editor/PureLanguageCodeEditorSupport.d.ts +0 -71
  32. package/lib/code-editor/PureLanguageCodeEditorSupport.d.ts.map +0 -1
  33. package/lib/code-editor/PureLanguageCodeEditorSupport.js +0 -238
  34. package/lib/code-editor/PureLanguageCodeEditorSupport.js.map +0 -1
  35. package/lib/code-editor/PureLanguageService.d.ts +0 -19
  36. package/lib/code-editor/PureLanguageService.d.ts.map +0 -1
  37. package/lib/code-editor/PureLanguageService.js +0 -373
  38. package/lib/code-editor/PureLanguageService.js.map +0 -1
  39. package/lib/code-editor/themes/Github-Theme-dark-dimmed.json +0 -613
  40. package/lib/code-editor/themes/Github-Theme-dark.json +0 -513
  41. package/lib/code-editor/themes/Github-Theme-light.json +0 -598
  42. package/lib/code-editor/themes/Material-Theme-Darker.json +0 -816
  43. package/lib/code-editor/themes/Material-Theme-Default.json +0 -816
  44. package/lib/code-editor/themes/MonacoEditorThemeUtils.d.ts +0 -31
  45. package/lib/code-editor/themes/MonacoEditorThemeUtils.d.ts.map +0 -1
  46. package/lib/code-editor/themes/MonacoEditorThemeUtils.js +0 -88
  47. package/lib/code-editor/themes/MonacoEditorThemeUtils.js.map +0 -1
  48. package/lib/code-editor/themes/OneDark-Pro-darker.json +0 -2061
  49. package/lib/code-editor/themes/OneDark-Pro.json +0 -2090
  50. package/lib/code-editor/themes/solarized-dark-color-theme.json +0 -398
  51. package/src/code-editor/CodeEditorTheme.ts +0 -151
  52. package/src/code-editor/CodeEditorUtils.ts +0 -336
  53. package/src/code-editor/PureLanguage.ts +0 -42
  54. package/src/code-editor/PureLanguageCodeEditorSupport.ts +0 -341
  55. package/src/code-editor/PureLanguageService.ts +0 -416
  56. package/src/code-editor/themes/Github-Theme-dark-dimmed.json +0 -613
  57. package/src/code-editor/themes/Github-Theme-dark.json +0 -513
  58. package/src/code-editor/themes/Github-Theme-light.json +0 -598
  59. package/src/code-editor/themes/Material-Theme-Darker.json +0 -816
  60. package/src/code-editor/themes/Material-Theme-Default.json +0 -816
  61. package/src/code-editor/themes/MonacoEditorThemeUtils.ts +0 -128
  62. package/src/code-editor/themes/OneDark-Pro-darker.json +0 -2061
  63. package/src/code-editor/themes/OneDark-Pro.json +0 -2090
  64. package/src/code-editor/themes/README.md +0 -8
  65. package/src/code-editor/themes/solarized-dark-color-theme.json +0 -423
@@ -1,74 +0,0 @@
1
- /**
2
- * Copyright (c) 2020-present, Goldman Sachs
3
- *
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- import { type GenericLegendApplicationStore } from '@finos/legend-application';
17
- import { editor as monacoEditorAPI } from 'monaco-editor';
18
- export type CodeEditorPosition = {
19
- lineNumber: number;
20
- column: number;
21
- };
22
- /**
23
- * Normally `monaco-editor` worker disposes after 5 minutes staying idle, but we fasten
24
- * this pace just in case the usage of the editor causes memory-leak somehow
25
- */
26
- export declare const disposeCodeEditor: (editor: monacoEditorAPI.IStandaloneCodeEditor) => void;
27
- export declare const disposeDiffCodeEditor: (editor: monacoEditorAPI.IStandaloneDiffEditor) => void;
28
- /**
29
- * Get the text value with LF line ending.
30
- * This is needed since if there are CR `\r` characters in the text input
31
- * (e.g. users of Windows doing copy/paste)
32
- * the default mode of `monaco-editor` is `TextDefined` which means if the text
33
- * contains CR character(s), it will automatically be treated as CRLF. As such, we want
34
- * an utility method to extract the text value with line ending option LF
35
- * to force omission of CR characters
36
- * See https://github.com/finos/legend-studio/issues/608
37
- */
38
- export declare const getCodeEditorValue: (editor: monacoEditorAPI.IStandaloneCodeEditor) => string;
39
- export declare const getBaseCodeEditorOptions: () => monacoEditorAPI.IStandaloneEditorConstructionOptions;
40
- export declare const getBaseConsoleOptions: () => monacoEditorAPI.IStandaloneEditorConstructionOptions;
41
- export declare const moveCursorToPosition: (editor: monacoEditorAPI.ICodeEditor, position: CodeEditorPosition) => void;
42
- export declare const setErrorMarkers: (editorModel: monacoEditorAPI.ITextModel, errors: {
43
- message: string;
44
- startLineNumber: number;
45
- startColumn: number;
46
- endLineNumber: number;
47
- endColumn: number;
48
- }[], ownerId?: string) => void;
49
- export declare const setWarningMarkers: (editorModel: monacoEditorAPI.ITextModel, warnings: {
50
- message: string;
51
- startLineNumber: number;
52
- startColumn: number;
53
- endLineNumber: number;
54
- endColumn: number;
55
- }[], ownerId?: string) => void;
56
- export declare const clearMarkers: (ownerId?: string) => void;
57
- /**
58
- * This method eliminates CR '\r' character(s) in the provided text value.
59
- */
60
- export declare const normalizeLineEnding: (val: string) => string;
61
- export declare const resetLineNumberGutterWidth: (editor: monacoEditorAPI.ICodeEditor) => void;
62
- export declare const configureCodeEditorComponent: (applicationStore: GenericLegendApplicationStore) => Promise<void>;
63
- export declare enum CODE_EDITOR_LANGUAGE {
64
- TEXT = "plaintext",
65
- PURE = "pure",
66
- JSON = "json",
67
- JAVA = "java",
68
- MARKDOWN = "markdown",
69
- SQL = "sql",
70
- XML = "xml",
71
- YAML = "yaml",
72
- GRAPHQL = "graphql"
73
- }
74
- //# sourceMappingURL=CodeEditorUtils.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"CodeEditorUtils.d.ts","sourceRoot":"","sources":["../../src/code-editor/CodeEditorUtils.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAGL,KAAK,6BAA6B,EACnC,MAAM,2BAA2B,CAAC;AAEnC,OAAO,EACL,MAAM,IAAI,eAAe,EAI1B,MAAM,eAAe,CAAC;AAcvB,MAAM,MAAM,kBAAkB,GAAG;IAC/B,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,iBAAiB,WACpB,eAAe,CAAC,qBAAqB,KAC5C,IAIF,CAAC;AAEF,eAAO,MAAM,qBAAqB,WACxB,eAAe,CAAC,qBAAqB,KAC5C,IAIF,CAAC;AAEF;;;;;;;;;GASG;AACH,eAAO,MAAM,kBAAkB,WACrB,eAAe,CAAC,qBAAqB,KAC5C,MACwE,CAAC;AAE5E,eAAO,MAAM,wBAAwB,QAC/B,eAAe,CAAC,oCA0BwC,CAAC;AAE/D,eAAO,MAAM,qBAAqB,QAC5B,eAAe,CAAC,oCAqBlB,CAAC;AAEL,eAAO,MAAM,oBAAoB,WACvB,eAAe,CAAC,WAAW,YACzB,kBAAkB,KAC3B,IAMF,CAAC;AAIF,eAAO,MAAM,eAAe,gBACb,eAAe,CAAC,UAAU,UAC/B;IACN,OAAO,EAAE,MAAM,CAAC;IAChB,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;CACnB,EAAE,YACO,MAAM,KACf,IAcF,CAAC;AAEF,eAAO,MAAM,iBAAiB,gBACf,eAAe,CAAC,UAAU,YAC7B;IACR,OAAO,EAAE,MAAM,CAAC;IAChB,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;CACnB,EAAE,YACO,MAAM,KACf,IAcF,CAAC;AAEF,eAAO,MAAM,YAAY,aAAc,MAAM,KAAG,IAI/C,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,mBAAmB,QAAS,MAAM,KAAG,MAC1B,CAAC;AAKzB,eAAO,MAAM,0BAA0B,WAC7B,eAAe,CAAC,WAAW,KAClC,IAQF,CAAC;AAEF,eAAO,MAAM,4BAA4B,qBACrB,6BAA6B,KAC9C,OAAO,CAAC,IAAI,CA+Fd,CAAC;AAEF,oBAAY,oBAAoB;IAC9B,IAAI,cAAc;IAClB,IAAI,SAAS;IACb,IAAI,SAAS;IACb,IAAI,SAAS;IACb,QAAQ,aAAa;IACrB,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,OAAO,YAAY;CACpB"}
@@ -1,203 +0,0 @@
1
- /**
2
- * Copyright (c) 2020-present, Goldman Sachs
3
- *
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- import { APPLICATION_EVENT, DEFAULT_MONOSPACED_FONT_FAMILY, } from '@finos/legend-application';
17
- import { LogEvent } from '@finos/legend-shared';
18
- import { editor as monacoEditorAPI, KeyCode, KeyMod, MarkerSeverity, } from 'monaco-editor';
19
- import { CODE_EDITOR_THEME, DEFAULT_DARK_THEME, GITHUB_DARK_DIMMED_THEME, GITHUB_DARK_THEME, GITHUB_LIGHT_THEME, MATERIAL_DARKER_THEME, MATERIAL_DEFAULT_THEME, ONE_DARK_PRO_DARKER_THEME, ONE_DARK_PRO_THEME, SOLARIZED_DARK_THEME, } from './CodeEditorTheme.js';
20
- /**
21
- * Normally `monaco-editor` worker disposes after 5 minutes staying idle, but we fasten
22
- * this pace just in case the usage of the editor causes memory-leak somehow
23
- */
24
- export const disposeCodeEditor = (editor) => {
25
- editor.dispose();
26
- // NOTE: just to be sure, we dispose the model after disposing the editor
27
- editor.getModel()?.dispose();
28
- };
29
- export const disposeDiffCodeEditor = (editor) => {
30
- editor.dispose();
31
- editor.getOriginalEditor().getModel()?.dispose();
32
- editor.getModifiedEditor().getModel()?.dispose();
33
- };
34
- /**
35
- * Get the text value with LF line ending.
36
- * This is needed since if there are CR `\r` characters in the text input
37
- * (e.g. users of Windows doing copy/paste)
38
- * the default mode of `monaco-editor` is `TextDefined` which means if the text
39
- * contains CR character(s), it will automatically be treated as CRLF. As such, we want
40
- * an utility method to extract the text value with line ending option LF
41
- * to force omission of CR characters
42
- * See https://github.com/finos/legend-studio/issues/608
43
- */
44
- export const getCodeEditorValue = (editor) => editor.getModel()?.getValue(monacoEditorAPI.EndOfLinePreference.LF) ?? '';
45
- export const getBaseCodeEditorOptions = () => ({
46
- contextmenu: false,
47
- copyWithSyntaxHighlighting: false,
48
- // NOTE: These following font options are needed (and CSS font-size option `.monaco-editor * { font-size: ... }` as well)
49
- // in order to make the editor appear properly on multiple platform, the ligatures option is needed for Mac to display properly
50
- // otherwise the cursor position relatively to text would be off
51
- // Another potential cause for this misaligment is that the fonts are being lazy-loaded and made available after `monaco-editor`
52
- // calculated the font-width, for this, we can use `remeasureFonts`, but our case here, `fontLigatures: true` seems
53
- // to do the trick
54
- // See https://github.com/microsoft/monaco-editor/issues/392
55
- fontSize: 14,
56
- // Enforce a fixed font-family to make cross platform display consistent (i.e. Mac defaults to use `Menlo` which is bigger than
57
- // `Consolas` on Windows, etc.)
58
- fontFamily: 'Roboto Mono',
59
- // Enable font ligature: glyphs which combine the shapes of certain sequences of characters into a new form that makes for
60
- // a more harmonious reading experience.
61
- fontLigatures: true,
62
- // Make sure hover or widget shown near boundary are not truncated by setting their position to `fixed`
63
- fixedOverflowWidgets: true,
64
- detectIndentation: false, // i.e. so we can force tab-size
65
- tabSize: 2,
66
- // The typing is currently not correct for `bracketPairColorization`, until this is fixed, we will remove the cast
67
- // See https://github.com/microsoft/monaco-editor/issues/3013
68
- 'bracketPairColorization.enabled': false,
69
- automaticLayout: true,
70
- });
71
- export const getBaseConsoleOptions = () => ({
72
- ...getBaseCodeEditorOptions(),
73
- fontSize: 12,
74
- extraEditorClassName: 'monaco-editor--small-font',
75
- readOnly: true,
76
- glyphMargin: false,
77
- folding: false,
78
- lineNumbers: 'off',
79
- lineDecorationsWidth: 10,
80
- lineNumbersMinChars: 0,
81
- minimap: {
82
- enabled: false,
83
- },
84
- guides: {
85
- bracketPairs: false,
86
- bracketPairsHorizontal: false,
87
- highlightActiveBracketPair: false,
88
- indentation: false,
89
- highlightActiveIndentation: false,
90
- },
91
- renderLineHighlight: 'none',
92
- });
93
- export const moveCursorToPosition = (editor, position) => {
94
- if (!editor.hasTextFocus()) {
95
- editor.focus();
96
- } // focus the editor first so that it can shows the cursor
97
- editor.revealPositionInCenter(position, 0);
98
- editor.setPosition(position);
99
- };
100
- const INTERNAL__DUMMY_PROBLEM_MARKER_OWNER = 'dummy_problem_marker_owner';
101
- export const setErrorMarkers = (editorModel, errors, ownerId) => {
102
- monacoEditorAPI.setModelMarkers(editorModel, ownerId ?? INTERNAL__DUMMY_PROBLEM_MARKER_OWNER, errors.map((error) => ({
103
- startLineNumber: error.startLineNumber,
104
- startColumn: error.startColumn,
105
- endLineNumber: error.endLineNumber,
106
- endColumn: error.endColumn + 1, // add a 1 to endColumn as monaco editor range is not inclusive
107
- // NOTE: when the message is empty, no error tooltip is shown, we want to avoid this
108
- message: error.message === '' ? '(no error message)' : error.message,
109
- severity: MarkerSeverity.Error,
110
- })));
111
- };
112
- export const setWarningMarkers = (editorModel, warnings, ownerId) => {
113
- monacoEditorAPI.setModelMarkers(editorModel, ownerId ?? INTERNAL__DUMMY_PROBLEM_MARKER_OWNER, warnings.map((warning) => ({
114
- startLineNumber: warning.startLineNumber,
115
- startColumn: warning.startColumn,
116
- endColumn: warning.endColumn,
117
- endLineNumber: warning.endLineNumber,
118
- message: warning.message === '' ? '(no warning message)' : warning.message,
119
- severity: MarkerSeverity.Warning,
120
- })));
121
- };
122
- export const clearMarkers = (ownerId) => {
123
- monacoEditorAPI.removeAllMarkers(ownerId ?? INTERNAL__DUMMY_PROBLEM_MARKER_OWNER);
124
- };
125
- /**
126
- * This method eliminates CR '\r' character(s) in the provided text value.
127
- */
128
- export const normalizeLineEnding = (val) => val.replace(/\r/g, '');
129
- // We need to dynamically adjust the width of the line number gutter, otherwise as the document gets
130
- // larger, the left margin will start to shrink
131
- // See https://github.com/microsoft/monaco-editor/issues/2206
132
- export const resetLineNumberGutterWidth = (editor) => {
133
- const currentValue = editor.getValue();
134
- editor.updateOptions({
135
- lineNumbersMinChars: Math.max(Math.floor(Math.log10(currentValue.split(/\r\n|\r|\n/g).length)) + 3, 5),
136
- });
137
- };
138
- export const configureCodeEditorComponent = async (applicationStore) => {
139
- /**
140
- * Since we use a custom fonts for text-editor, we want to make sure the font is loaded before any text-editor is opened
141
- * this is to ensure
142
- */
143
- const fontLoadFailureErrorMessage = `Monospaced font '${DEFAULT_MONOSPACED_FONT_FAMILY}' has not been loaded properly, code editor might not display properly`;
144
- await Promise.all([400, 700].map((weight) => document.fonts.load(`${weight} 1em ${DEFAULT_MONOSPACED_FONT_FAMILY}`)))
145
- .then(() => {
146
- if (document.fonts.check(`1em ${DEFAULT_MONOSPACED_FONT_FAMILY}`)) {
147
- monacoEditorAPI.remeasureFonts();
148
- }
149
- else {
150
- applicationStore.logService.error(LogEvent.create(APPLICATION_EVENT.APPLICATION_SETUP__FAILURE), fontLoadFailureErrorMessage);
151
- }
152
- })
153
- .catch(() => applicationStore.logService.error(LogEvent.create(APPLICATION_EVENT.APPLICATION_SETUP__FAILURE), fontLoadFailureErrorMessage));
154
- // override native hotkeys supported by monaco-editor
155
- // here we map these keys to a dummy command that would just dispatch the key combination
156
- // to the application keyboard shortcut service, effectively bypassing the command associated
157
- // with the native keybinding
158
- const OVERRIDE_DEFAULT_KEYBINDING_COMMAND = 'legend.code-editor.override-default-keybinding';
159
- monacoEditorAPI.registerCommand(OVERRIDE_DEFAULT_KEYBINDING_COMMAND, (accessor, ...args) => {
160
- applicationStore.keyboardShortcutsService.dispatch(args[0]);
161
- });
162
- const hotkeyMapping = [
163
- [KeyCode.F1, 'F1'], // show command center
164
- [KeyCode.F8, 'F8'], // show error
165
- [KeyCode.F9, 'F9'], // toggle debugger breakpoint
166
- [KeyMod.WinCtrl | KeyCode.KeyG, 'Control+KeyG'], // go-to line command
167
- [KeyMod.WinCtrl | KeyCode.KeyB, 'Control+KeyB'], // cursor move (core command)
168
- [KeyMod.WinCtrl | KeyCode.KeyO, 'Control+KeyO'], // cursor move (core command)
169
- [KeyMod.WinCtrl | KeyCode.KeyD, 'Control+KeyD'], // cursor move (core command)
170
- [KeyMod.WinCtrl | KeyCode.KeyP, 'Control+KeyP'], // cursor move (core command)
171
- [KeyMod.Shift | KeyCode.F10, 'Shift+F10'], // show editor context menu
172
- [KeyMod.WinCtrl | KeyCode.F2, 'Control+F2'], // change all instances
173
- [KeyMod.WinCtrl | KeyCode.F12, 'Control+F12'], // go-to definition
174
- ];
175
- monacoEditorAPI.addKeybindingRules(hotkeyMapping.map(([nativeCodeEditorKeyBinding, keyCombination]) => ({
176
- keybinding: nativeCodeEditorKeyBinding,
177
- command: OVERRIDE_DEFAULT_KEYBINDING_COMMAND,
178
- commandArgs: keyCombination,
179
- })));
180
- // themes
181
- monacoEditorAPI.defineTheme(CODE_EDITOR_THEME.DEFAULT_DARK, DEFAULT_DARK_THEME);
182
- monacoEditorAPI.defineTheme(CODE_EDITOR_THEME.SOLARIZED_DARK, SOLARIZED_DARK_THEME);
183
- monacoEditorAPI.defineTheme(CODE_EDITOR_THEME.GITHUB_DARK, GITHUB_DARK_THEME);
184
- monacoEditorAPI.defineTheme(CODE_EDITOR_THEME.GITHUB_DARK_DIMMED, GITHUB_DARK_DIMMED_THEME);
185
- monacoEditorAPI.defineTheme(CODE_EDITOR_THEME.GITHUB_LIGHT, GITHUB_LIGHT_THEME);
186
- monacoEditorAPI.defineTheme(CODE_EDITOR_THEME.MATERIAL_DEFAULT, MATERIAL_DEFAULT_THEME);
187
- monacoEditorAPI.defineTheme(CODE_EDITOR_THEME.MATERIAL_DARKER, MATERIAL_DARKER_THEME);
188
- monacoEditorAPI.defineTheme(CODE_EDITOR_THEME.ONE_DARK_PRO, ONE_DARK_PRO_THEME);
189
- monacoEditorAPI.defineTheme(CODE_EDITOR_THEME.ONE_DARK_PRO_DARKER, ONE_DARK_PRO_DARKER_THEME);
190
- };
191
- export var CODE_EDITOR_LANGUAGE;
192
- (function (CODE_EDITOR_LANGUAGE) {
193
- CODE_EDITOR_LANGUAGE["TEXT"] = "plaintext";
194
- CODE_EDITOR_LANGUAGE["PURE"] = "pure";
195
- CODE_EDITOR_LANGUAGE["JSON"] = "json";
196
- CODE_EDITOR_LANGUAGE["JAVA"] = "java";
197
- CODE_EDITOR_LANGUAGE["MARKDOWN"] = "markdown";
198
- CODE_EDITOR_LANGUAGE["SQL"] = "sql";
199
- CODE_EDITOR_LANGUAGE["XML"] = "xml";
200
- CODE_EDITOR_LANGUAGE["YAML"] = "yaml";
201
- CODE_EDITOR_LANGUAGE["GRAPHQL"] = "graphql";
202
- })(CODE_EDITOR_LANGUAGE || (CODE_EDITOR_LANGUAGE = {}));
203
- //# sourceMappingURL=CodeEditorUtils.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"CodeEditorUtils.js","sourceRoot":"","sources":["../../src/code-editor/CodeEditorUtils.ts"],"names":[],"mappings":"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"}
@@ -1,38 +0,0 @@
1
- /**
2
- * Copyright (c) 2020-present, Goldman Sachs
3
- *
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export declare enum PURE_GRAMMAR_TOKEN {
17
- WHITESPACE = "",
18
- KEYWORD = "keyword",
19
- IDENTIFIER = "identifier",
20
- OPERATOR = "operator",
21
- DELIMITER = "delimiter",
22
- PARSER = "parser",
23
- NUMBER = "number",
24
- DATE = "date",
25
- COLOR = "color",
26
- PACKAGE = "package",
27
- STRING = "string",
28
- COMMENT = "comment",
29
- LANGUAGE_STRUCT = "language-struct",
30
- MULTIPLICITY = "multiplicity",
31
- GENERICS = "generics",
32
- PROPERTY = "property",
33
- PARAMETER = "parameter",
34
- VARIABLE = "variable",
35
- TYPE = "type",
36
- INVALID = "invalid"
37
- }
38
- //# sourceMappingURL=PureLanguage.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"PureLanguage.d.ts","sourceRoot":"","sources":["../../src/code-editor/PureLanguage.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,oBAAY,kBAAkB;IAC5B,UAAU,KAAK;IAEf,OAAO,YAAY;IACnB,UAAU,eAAe;IACzB,QAAQ,aAAa;IACrB,SAAS,cAAc;IAEvB,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,KAAK,UAAU;IACf,OAAO,YAAY;IACnB,MAAM,WAAW;IACjB,OAAO,YAAY;IAEnB,eAAe,oBAAoB;IACnC,YAAY,iBAAiB;IAC7B,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,QAAQ,aAAa;IACrB,IAAI,SAAS;IAEb,OAAO,YAAY;CACpB"}
@@ -1,39 +0,0 @@
1
- /**
2
- * Copyright (c) 2020-present, Goldman Sachs
3
- *
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export var PURE_GRAMMAR_TOKEN;
17
- (function (PURE_GRAMMAR_TOKEN) {
18
- PURE_GRAMMAR_TOKEN["WHITESPACE"] = "";
19
- PURE_GRAMMAR_TOKEN["KEYWORD"] = "keyword";
20
- PURE_GRAMMAR_TOKEN["IDENTIFIER"] = "identifier";
21
- PURE_GRAMMAR_TOKEN["OPERATOR"] = "operator";
22
- PURE_GRAMMAR_TOKEN["DELIMITER"] = "delimiter";
23
- PURE_GRAMMAR_TOKEN["PARSER"] = "parser";
24
- PURE_GRAMMAR_TOKEN["NUMBER"] = "number";
25
- PURE_GRAMMAR_TOKEN["DATE"] = "date";
26
- PURE_GRAMMAR_TOKEN["COLOR"] = "color";
27
- PURE_GRAMMAR_TOKEN["PACKAGE"] = "package";
28
- PURE_GRAMMAR_TOKEN["STRING"] = "string";
29
- PURE_GRAMMAR_TOKEN["COMMENT"] = "comment";
30
- PURE_GRAMMAR_TOKEN["LANGUAGE_STRUCT"] = "language-struct";
31
- PURE_GRAMMAR_TOKEN["MULTIPLICITY"] = "multiplicity";
32
- PURE_GRAMMAR_TOKEN["GENERICS"] = "generics";
33
- PURE_GRAMMAR_TOKEN["PROPERTY"] = "property";
34
- PURE_GRAMMAR_TOKEN["PARAMETER"] = "parameter";
35
- PURE_GRAMMAR_TOKEN["VARIABLE"] = "variable";
36
- PURE_GRAMMAR_TOKEN["TYPE"] = "type";
37
- PURE_GRAMMAR_TOKEN["INVALID"] = "invalid";
38
- })(PURE_GRAMMAR_TOKEN || (PURE_GRAMMAR_TOKEN = {}));
39
- //# sourceMappingURL=PureLanguage.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"PureLanguage.js","sourceRoot":"","sources":["../../src/code-editor/PureLanguage.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,MAAM,CAAN,IAAY,kBAyBX;AAzBD,WAAY,kBAAkB;IAC5B,qCAAe,CAAA;IAEf,yCAAmB,CAAA;IACnB,+CAAyB,CAAA;IACzB,2CAAqB,CAAA;IACrB,6CAAuB,CAAA;IAEvB,uCAAiB,CAAA;IACjB,uCAAiB,CAAA;IACjB,mCAAa,CAAA;IACb,qCAAe,CAAA;IACf,yCAAmB,CAAA;IACnB,uCAAiB,CAAA;IACjB,yCAAmB,CAAA;IAEnB,yDAAmC,CAAA;IACnC,mDAA6B,CAAA;IAC7B,2CAAqB,CAAA;IACrB,2CAAqB,CAAA;IACrB,6CAAuB,CAAA;IACvB,2CAAqB,CAAA;IACrB,mCAAa,CAAA;IAEb,yCAAmB,CAAA;AACrB,CAAC,EAzBW,kBAAkB,KAAlB,kBAAkB,QAyB7B"}
@@ -1,71 +0,0 @@
1
- /**
2
- * Copyright (c) 2020-present, Goldman Sachs
3
- *
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- import type { DocumentationEntry } from '@finos/legend-application';
17
- import { type editor as monacoEditorAPI, languages as monacoLanguagesAPI, type IPosition } from 'monaco-editor';
18
- /**
19
- * This snippet suggestion is meant for an embedded content of an element
20
- * In other words, it is used to construct element snippet suggestions
21
- *
22
- * Because of that, it is expected that there are text content wrapping around
23
- * this snippet, so the first suggestion might not start from index 1.
24
- */
25
- export interface ElementEmbeddedContentSnippetSuggestion {
26
- /**
27
- * Brief description about the suggestion item to enable the users to quickly
28
- * differentiate between one suggestions from another
29
- */
30
- description?: string | undefined;
31
- /**
32
- * The snippet text to be embedded in the full snippet suggestion text for the element
33
- *
34
- * NOTE: The snippet syntax follows that of `monaco-editor`
35
- * See https://code.visualstudio.com/docs/editor/userdefinedsnippets#_create-your-own-snippets
36
- */
37
- text: string;
38
- }
39
- /**
40
- * This mirrors `monaco-editor` completion item structure
41
- * See https://microsoft.github.io/monaco-editor/api/interfaces/monaco.languages.CompletionItem.html
42
- */
43
- export interface PureGrammarTextSuggestion {
44
- /**
45
- * The text label of the suggestion.
46
- */
47
- text: string;
48
- /**
49
- * Brief description about the suggestion item to enable the users to quickly
50
- * differentiate between one suggestions from another
51
- */
52
- description?: string | undefined;
53
- /**
54
- * Detailed documentation that explains/elaborates the suggestion item.
55
- */
56
- documentation?: DocumentationEntry | undefined;
57
- /**
58
- * A string or snippet that should be inserted when selecting this suggestion.
59
- *
60
- * NOTE: The snippet syntax follows that of `monaco-editor`
61
- * See https://code.visualstudio.com/docs/editor/userdefinedsnippets#_create-your-own-snippets
62
- */
63
- insertText: string;
64
- }
65
- export declare const getParserKeywordSuggestions: (position: IPosition, model: monacoEditorAPI.ITextModel, suggestions: PureGrammarTextSuggestion[]) => monacoLanguagesAPI.CompletionItem[];
66
- export declare const getSectionParserNameFromLineText: (lineText: string) => string | undefined;
67
- export declare const getParserElementSnippetSuggestions: (position: IPosition, model: monacoEditorAPI.ITextModel, suggestionsGetter: (parserName: string) => PureGrammarTextSuggestion[]) => monacoLanguagesAPI.CompletionItem[];
68
- export declare const getInlineSnippetSuggestions: (position: IPosition, model: monacoEditorAPI.ITextModel, extraSnippetSuggestions?: PureGrammarTextSuggestion[]) => monacoLanguagesAPI.CompletionItem[];
69
- export declare const isTokenOneOf: (token: string, baseTokens: string[], exact?: boolean) => boolean;
70
- export declare const PURE_CODE_EDITOR_WORD_SEPARATORS = "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?";
71
- //# sourceMappingURL=PureLanguageCodeEditorSupport.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"PureLanguageCodeEditorSupport.d.ts","sourceRoot":"","sources":["../../src/code-editor/PureLanguageCodeEditorSupport.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAOpE,OAAO,EACL,KAAK,MAAM,IAAI,eAAe,EAC9B,SAAS,IAAI,kBAAkB,EAC/B,KAAK,SAAS,EACf,MAAM,eAAe,CAAC;AAEvB;;;;;;GAMG;AACH,MAAM,WAAW,uCAAuC;IACtD;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC;;;;;OAKG;IACH,IAAI,EAAE,MAAM,CAAC;CACd;AAED;;;GAGG;AACH,MAAM,WAAW,yBAAyB;IACxC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC;;OAEG;IACH,aAAa,CAAC,EAAE,kBAAkB,GAAG,SAAS,CAAC;IAC/C;;;;;OAKG;IACH,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,2BAA2B,aAC5B,SAAS,SACZ,eAAe,CAAC,UAAU,eACpB,yBAAyB,EAAE,KACvC,kBAAkB,CAAC,cAAc,EAuCnC,CAAC;AAEF,eAAO,MAAM,gCAAgC,aACjC,MAAM,KACf,MAAM,GAAG,SAMX,CAAC;AAEF,eAAO,MAAM,kCAAkC,aACnC,SAAS,SACZ,eAAe,CAAC,UAAU,qBACd,CAAC,UAAU,EAAE,MAAM,KAAK,yBAAyB,EAAE,KACrE,kBAAkB,CAAC,cAAc,EAiDnC,CAAC;AAEF,eAAO,MAAM,2BAA2B,aAC5B,SAAS,SACZ,eAAe,CAAC,UAAU,4BACR,yBAAyB,EAAE,KACnD,kBAAkB,CAAC,cAAc,EAmInC,CAAC;AAEF,eAAO,MAAM,YAAY,UAChB,MAAM,cACD,MAAM,EAAE,sBAEnB,OAQF,CAAC;AAEF,eAAO,MAAM,gCAAgC,qCACT,CAAC"}