monaco-languageclient-examples 6.4.5 → 6.4.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/README.md +2 -2
- package/dist/browser/main.js +1 -1
- package/dist/browser/main.js.map +1 -1
- package/dist/common.d.ts.map +1 -1
- package/dist/common.js +5 -3
- package/dist/common.js.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/json/client/main.js +1 -1
- package/dist/json/client/main.js.map +1 -1
- package/dist/langium/statemachineClient.js +3 -3
- package/dist/langium/statemachineClient.js.map +1 -1
- package/dist/python/client/main.js +1 -1
- package/dist/python/client/main.js.map +1 -1
- package/dist/python/server/direct.js +1 -1
- package/dist/python/server/direct.js.map +1 -1
- package/dist/react/app.js +1 -1
- package/dist/react/app.js.map +1 -1
- package/dist/worker/statemachineServerWorker.js +1 -1
- package/package.json +6 -11
- package/src/browser/main.ts +1 -1
- package/src/common.ts +5 -3
- package/src/index.ts +0 -1
- package/src/json/client/main.ts +1 -1
- package/src/langium/statemachineClient.ts +3 -3
- package/src/python/client/main.ts +1 -1
- package/src/python/server/direct.ts +1 -1
- package/src/react/app.tsx +1 -1
- package/vite.statemachine-worker.ts +1 -1
- package/dist/langium/langiumClient.d.ts +0 -4
- package/dist/langium/langiumClient.d.ts.map +0 -1
- package/dist/langium/langiumClient.js +0 -129
- package/dist/langium/langiumClient.js.map +0 -1
- package/dist/langium/langiumServerWorker.d.ts +0 -2
- package/dist/langium/langiumServerWorker.d.ts.map +0 -1
- package/dist/langium/langiumServerWorker.js +0 -18
- package/dist/langium/langiumServerWorker.js.map +0 -1
- package/dist/worker/langiumServerWorker.js +0 -210
- package/langium_client.html +0 -20
- package/src/langium/example.langium +0 -215
- package/src/langium/langium.configuration.json +0 -164
- package/src/langium/langium.tmLanguage.json +0 -290
- package/src/langium/langiumClient.ts +0 -145
- package/src/langium/langiumServerWorker.ts +0 -21
|
@@ -18,7 +18,7 @@ import { RegisteredFileSystemProvider, registerFileSystemOverlay, RegisteredMemo
|
|
|
18
18
|
|
|
19
19
|
import { buildWorkerDefinition } from 'monaco-editor-workers';
|
|
20
20
|
import { createUrl } from '../../common.js';
|
|
21
|
-
buildWorkerDefinition('
|
|
21
|
+
buildWorkerDefinition('../../../node_modules/monaco-editor-workers/dist/workers/', new URL('', window.location.href).href, false);
|
|
22
22
|
|
|
23
23
|
const languageId = 'python';
|
|
24
24
|
let languageClient: MonacoLanguageClient;
|
|
@@ -8,5 +8,5 @@ import { runPythonServer } from './main.js';
|
|
|
8
8
|
import { getLocalDirectory } from '../../utils/fs-utils.js';
|
|
9
9
|
|
|
10
10
|
const baseDir = resolve(getLocalDirectory(import.meta.url));
|
|
11
|
-
const relativeDir = '
|
|
11
|
+
const relativeDir = '../../../../../node_modules/pyright/dist/pyright-langserver.js';
|
|
12
12
|
runPythonServer(baseDir, relativeDir);
|
package/src/react/app.tsx
CHANGED
|
@@ -7,7 +7,7 @@ import { editor } from 'monaco-editor';
|
|
|
7
7
|
import React, { createRef, useEffect, useMemo, useRef } from 'react';
|
|
8
8
|
|
|
9
9
|
import { buildWorkerDefinition } from 'monaco-editor-workers';
|
|
10
|
-
buildWorkerDefinition('
|
|
10
|
+
buildWorkerDefinition('../../node_modules/monaco-editor-workers/dist/workers/', new URL('', window.location.href).href, false);
|
|
11
11
|
|
|
12
12
|
let init = true;
|
|
13
13
|
|
|
@@ -4,7 +4,7 @@ import { defineConfig } from 'vite';
|
|
|
4
4
|
const config = defineConfig({
|
|
5
5
|
build: {
|
|
6
6
|
lib: {
|
|
7
|
-
entry: resolve(__dirname, '
|
|
7
|
+
entry: resolve(__dirname, '../../node_modules/langium-statemachine-dsl/src/language-server/main-browser.ts'),
|
|
8
8
|
name: 'statemachineServerWorker',
|
|
9
9
|
fileName: () => 'statemachineServerWorker.js',
|
|
10
10
|
formats: ['iife']
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"langiumClient.d.ts","sourceRoot":"","sources":["../../src/langium/langiumClient.ts"],"names":[],"mappings":"AAeA,OAAO,0CAA0C,CAAC;AAQlD,eAAO,MAAM,kBAAkB,qBAiH9B,CAAC;AAEF,eAAO,MAAM,kBAAkB,qBAM9B,CAAC"}
|
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
/* --------------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright (c) 2018-2022 TypeFox GmbH (http://www.typefox.io). All rights reserved.
|
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
4
|
-
* ------------------------------------------------------------------------------------------ */
|
|
5
|
-
import { Uri } from 'monaco-editor';
|
|
6
|
-
import { MonacoLanguageClient, initServices } from 'monaco-languageclient';
|
|
7
|
-
import { BrowserMessageReader, BrowserMessageWriter } from 'vscode-languageserver-protocol/browser.js';
|
|
8
|
-
import { CloseAction, ErrorAction } from 'vscode-languageclient';
|
|
9
|
-
import { createConfiguredEditor, createModelReference } from 'vscode/monaco';
|
|
10
|
-
import { registerExtension } from 'vscode/extensions';
|
|
11
|
-
import { updateUserConfiguration } from 'vscode/service-override/configuration';
|
|
12
|
-
import { RegisteredFileSystemProvider, registerFileSystemOverlay, RegisteredMemoryFile } from 'vscode/service-override/files';
|
|
13
|
-
import 'vscode/default-extensions/theme-defaults';
|
|
14
|
-
import { buildWorkerDefinition } from 'monaco-editor-workers';
|
|
15
|
-
buildWorkerDefinition('../../../node_modules/monaco-editor-workers/dist/workers/', new URL('', window.location.href).href, false);
|
|
16
|
-
const languageId = 'langium';
|
|
17
|
-
let textModelRef;
|
|
18
|
-
export const setupLangiumClient = async () => {
|
|
19
|
-
await initServices({
|
|
20
|
-
// required for default themes
|
|
21
|
-
enableThemeService: true,
|
|
22
|
-
// required for textmate grammars
|
|
23
|
-
enableTextmateService: true,
|
|
24
|
-
// required for text model handling (here: /workspace/example.langium)
|
|
25
|
-
enableModelService: true,
|
|
26
|
-
// use editor mode
|
|
27
|
-
configureEditorOrViewsService: {},
|
|
28
|
-
// enable configuration services
|
|
29
|
-
configureConfigurationService: {
|
|
30
|
-
defaultWorkspaceUri: '/workspace'
|
|
31
|
-
},
|
|
32
|
-
// enable platform specific keybindings
|
|
33
|
-
enableKeybindingsService: true,
|
|
34
|
-
// enable language support
|
|
35
|
-
enableLanguagesService: true,
|
|
36
|
-
debugLogging: true
|
|
37
|
-
});
|
|
38
|
-
console.log('Setting up Langium client configuration ...');
|
|
39
|
-
// define this client as vscode extension, required for textmate grammars
|
|
40
|
-
const extension = {
|
|
41
|
-
name: 'langium-client',
|
|
42
|
-
publisher: 'monaco-languageclient-project',
|
|
43
|
-
version: '1.0.0',
|
|
44
|
-
engines: {
|
|
45
|
-
vscode: '*'
|
|
46
|
-
},
|
|
47
|
-
contributes: {
|
|
48
|
-
languages: [{
|
|
49
|
-
id: languageId,
|
|
50
|
-
extensions: [
|
|
51
|
-
`.${languageId}`
|
|
52
|
-
],
|
|
53
|
-
aliases: [
|
|
54
|
-
languageId
|
|
55
|
-
],
|
|
56
|
-
// files are loaded below and bind below
|
|
57
|
-
configuration: './langium-configuration.json'
|
|
58
|
-
}],
|
|
59
|
-
grammars: [{
|
|
60
|
-
language: languageId,
|
|
61
|
-
scopeName: 'source.langium',
|
|
62
|
-
// files are loaded below and bind below
|
|
63
|
-
path: './langium-grammar.json'
|
|
64
|
-
}]
|
|
65
|
-
}
|
|
66
|
-
};
|
|
67
|
-
const { registerFileUrl } = registerExtension(extension, 1 /* ExtensionHostKind.LocalProcess */);
|
|
68
|
-
// these two files are taken from the langium-vscode
|
|
69
|
-
// regiser the language configuration file url
|
|
70
|
-
registerFileUrl('/langium-configuration.json', new URL('./src/langium/langium.configuration.json', window.location.href).href);
|
|
71
|
-
// regiser the textmate grammar file url
|
|
72
|
-
// using a textmate grammar requires the textmate and theme service to be enabled
|
|
73
|
-
registerFileUrl('/langium-grammar.json', new URL('./src/langium/langium.tmLanguage.json', window.location.href).href);
|
|
74
|
-
// set vscode configuration parameters
|
|
75
|
-
updateUserConfiguration(`{
|
|
76
|
-
"workbench.colorTheme": "Default Dark Modern"
|
|
77
|
-
}`);
|
|
78
|
-
const exampleLangiumUrl = new URL('./src/langium/example.langium', window.location.href).href;
|
|
79
|
-
const editorText = await (await fetch(exampleLangiumUrl)).text();
|
|
80
|
-
// create and register a new file system provider
|
|
81
|
-
const fileSystemProvider = new RegisteredFileSystemProvider(false);
|
|
82
|
-
// register a file with content from the example.langium file loaded from src above
|
|
83
|
-
fileSystemProvider.registerFile(new RegisteredMemoryFile(Uri.file('/workspace/example.langium'), editorText));
|
|
84
|
-
registerFileSystemOverlay(1, fileSystemProvider);
|
|
85
|
-
textModelRef = await createModelReference(Uri.file('/workspace/example.langium'));
|
|
86
|
-
createConfiguredEditor(document.getElementById('container'), {
|
|
87
|
-
model: textModelRef.object.textEditorModel
|
|
88
|
-
});
|
|
89
|
-
// works only if browser supports module workers
|
|
90
|
-
const langiumWorkerUrl = new URL('./src/langium/langiumServerWorker.ts', window.location.href).href;
|
|
91
|
-
// use this if module workers aren't supported
|
|
92
|
-
// const langiumWorkerUrl = new URL('./dist/worker/langiumServerWorker.js', window.location.href).href;
|
|
93
|
-
const worker = new Worker(langiumWorkerUrl, {
|
|
94
|
-
type: 'module',
|
|
95
|
-
name: 'Langium LS'
|
|
96
|
-
});
|
|
97
|
-
const reader = new BrowserMessageReader(worker);
|
|
98
|
-
const writer = new BrowserMessageWriter(worker);
|
|
99
|
-
reader.onClose(() => languageClient.stop());
|
|
100
|
-
const languageClient = new MonacoLanguageClient({
|
|
101
|
-
name: 'Langium Client',
|
|
102
|
-
clientOptions: {
|
|
103
|
-
// use a language id as a document selector
|
|
104
|
-
documentSelector: [{ language: languageId }],
|
|
105
|
-
// disable the default error handler
|
|
106
|
-
errorHandler: {
|
|
107
|
-
error: () => ({ action: ErrorAction.Continue }),
|
|
108
|
-
closed: () => ({ action: CloseAction.DoNotRestart })
|
|
109
|
-
}
|
|
110
|
-
},
|
|
111
|
-
// create a language client connection to the server running in the web worker
|
|
112
|
-
connectionProvider: {
|
|
113
|
-
get: () => {
|
|
114
|
-
return Promise.resolve({ reader, writer });
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
});
|
|
118
|
-
languageClient.start();
|
|
119
|
-
// any further language client / server interaction can't be defined as needed
|
|
120
|
-
};
|
|
121
|
-
export const startLangiumClient = async () => {
|
|
122
|
-
try {
|
|
123
|
-
await setupLangiumClient();
|
|
124
|
-
}
|
|
125
|
-
catch (e) {
|
|
126
|
-
console.log(e);
|
|
127
|
-
}
|
|
128
|
-
};
|
|
129
|
-
//# sourceMappingURL=langiumClient.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"langiumClient.js","sourceRoot":"","sources":["../../src/langium/langiumClient.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"langiumServerWorker.d.ts","sourceRoot":"","sources":["../../src/langium/langiumServerWorker.ts"],"names":[],"mappings":""}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/* --------------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright (c) 2018-2022 TypeFox GmbH (http://www.typefox.io). All rights reserved.
|
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
4
|
-
* ------------------------------------------------------------------------------------------ */
|
|
5
|
-
import { createLangiumGrammarServices, startLanguageServer, EmptyFileSystem } from 'langium';
|
|
6
|
-
import { BrowserMessageReader, BrowserMessageWriter, createConnection } from 'vscode-languageserver/browser.js';
|
|
7
|
-
/* browser specific setup code */
|
|
8
|
-
const messageReader = new BrowserMessageReader(self);
|
|
9
|
-
const messageWriter = new BrowserMessageWriter(self);
|
|
10
|
-
// Inject the shared services and language-specific services
|
|
11
|
-
const context = {
|
|
12
|
-
connection: createConnection(messageReader, messageWriter),
|
|
13
|
-
...EmptyFileSystem
|
|
14
|
-
};
|
|
15
|
-
const { shared } = createLangiumGrammarServices(context);
|
|
16
|
-
// Start the language server with the shared services
|
|
17
|
-
startLanguageServer(shared);
|
|
18
|
-
//# sourceMappingURL=langiumServerWorker.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"langiumServerWorker.js","sourceRoot":"","sources":["../../src/langium/langiumServerWorker.ts"],"names":[],"mappings":"AAAA;;;gGAGgG;AAEhG,OAAO,EAAE,4BAA4B,EAAE,mBAAmB,EAAE,eAAe,EAA8B,MAAM,SAAS,CAAC;AACzH,OAAO,EAAE,oBAAoB,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,MAAM,kCAAkC,CAAC;AAEhH,iCAAiC;AACjC,MAAM,aAAa,GAAG,IAAI,oBAAoB,CAAC,IAAkC,CAAC,CAAC;AACnF,MAAM,aAAa,GAAG,IAAI,oBAAoB,CAAC,IAAkC,CAAC,CAAC;AAEnF,4DAA4D;AAC5D,MAAM,OAAO,GAAG;IACZ,UAAU,EAAE,gBAAgB,CAAC,aAAa,EAAE,aAAa,CAAC;IAC1D,GAAG,eAAe;CACoB,CAAC;AAC3C,MAAM,EAAE,MAAM,EAAE,GAAG,4BAA4B,CAAC,OAAO,CAAC,CAAC;AAEzD,qDAAqD;AACrD,mBAAmB,CAAC,MAAM,CAAC,CAAC"}
|