@theia/preferences 1.53.0-next.55 → 1.53.0-next.64

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.
Files changed (54) hide show
  1. package/README.md +81 -81
  2. package/package.json +8 -8
  3. package/src/browser/abstract-resource-preference-provider.spec.ts +95 -95
  4. package/src/browser/abstract-resource-preference-provider.ts +232 -232
  5. package/src/browser/folder-preference-provider.ts +58 -58
  6. package/src/browser/folders-preferences-provider.ts +244 -244
  7. package/src/browser/index.ts +23 -23
  8. package/src/browser/monaco-jsonc-editor.ts +67 -67
  9. package/src/browser/package.spec.ts +28 -28
  10. package/src/browser/preference-bindings.ts +65 -65
  11. package/src/browser/preference-frontend-contribution.ts +38 -38
  12. package/src/browser/preference-frontend-module.ts +66 -66
  13. package/src/browser/preference-open-handler.ts +53 -53
  14. package/src/browser/preference-transaction-manager.ts +287 -287
  15. package/src/browser/preference-tree-model.ts +260 -260
  16. package/src/browser/preferences-contribution.ts +263 -263
  17. package/src/browser/preferences-json-schema-contribution.ts +86 -86
  18. package/src/browser/preferences-monaco-contribution.ts +27 -27
  19. package/src/browser/section-preference-provider.ts +83 -83
  20. package/src/browser/style/index.css +506 -506
  21. package/src/browser/style/preference-array.css +94 -94
  22. package/src/browser/style/preference-context-menu.css +74 -74
  23. package/src/browser/style/preference-file.css +31 -31
  24. package/src/browser/style/preference-object.css +49 -49
  25. package/src/browser/style/search-input.css +66 -66
  26. package/src/browser/user-configs-preference-provider.ts +127 -127
  27. package/src/browser/user-preference-provider.ts +35 -35
  28. package/src/browser/util/preference-layout.ts +381 -381
  29. package/src/browser/util/preference-scope-command-manager.ts +75 -75
  30. package/src/browser/util/preference-tree-generator.ts +260 -260
  31. package/src/browser/util/preference-tree-label-provider.spec.ts +110 -110
  32. package/src/browser/util/preference-tree-label-provider.ts +72 -72
  33. package/src/browser/util/preference-types.ts +177 -177
  34. package/src/browser/views/components/preference-array-input.ts +174 -174
  35. package/src/browser/views/components/preference-boolean-input.ts +69 -69
  36. package/src/browser/views/components/preference-file-input.ts +104 -104
  37. package/src/browser/views/components/preference-json-input.ts +78 -78
  38. package/src/browser/views/components/preference-markdown-renderer.ts +68 -68
  39. package/src/browser/views/components/preference-node-renderer-creator.ts +141 -141
  40. package/src/browser/views/components/preference-node-renderer.ts +477 -477
  41. package/src/browser/views/components/preference-number-input.ts +147 -147
  42. package/src/browser/views/components/preference-select-input.ts +131 -131
  43. package/src/browser/views/components/preference-string-input.ts +76 -76
  44. package/src/browser/views/preference-editor-widget.ts +349 -349
  45. package/src/browser/views/preference-scope-tabbar-widget.tsx +344 -344
  46. package/src/browser/views/preference-searchbar-widget.tsx +183 -183
  47. package/src/browser/views/preference-tree-widget.tsx +102 -102
  48. package/src/browser/views/preference-widget-bindings.ts +102 -102
  49. package/src/browser/views/preference-widget.tsx +118 -118
  50. package/src/browser/workspace-file-preference-provider.ts +100 -100
  51. package/src/browser/workspace-preference-provider.ts +134 -134
  52. package/src/common/cli-preferences.ts +22 -22
  53. package/src/node/preference-backend-module.ts +33 -33
  54. package/src/node/preference-cli-contribution.ts +48 -48
@@ -1,67 +1,67 @@
1
- // *****************************************************************************
2
- // Copyright (C) 2021 Ericsson and others.
3
- //
4
- // This program and the accompanying materials are made available under the
5
- // terms of the Eclipse Public License v. 2.0 which is available at
6
- // http://www.eclipse.org/legal/epl-2.0.
7
- //
8
- // This Source Code may also be made available under the following Secondary
9
- // Licenses when the conditions for such availability set forth in the Eclipse
10
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
- // with the GNU Classpath Exception which is available at
12
- // https://www.gnu.org/software/classpath/license.html.
13
- //
14
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
- // *****************************************************************************
16
-
17
- import * as jsoncparser from 'jsonc-parser';
18
- import { MonacoEditorModel } from '@theia/monaco/lib/browser/monaco-editor-model';
19
- import { MonacoWorkspace } from '@theia/monaco/lib/browser/monaco-workspace';
20
- import { inject, injectable } from '@theia/core/shared/inversify';
21
- import * as monaco from '@theia/monaco-editor-core';
22
-
23
- @injectable()
24
- export class MonacoJSONCEditor {
25
- @inject(MonacoWorkspace) protected readonly workspace: MonacoWorkspace;
26
-
27
- async setValue(model: MonacoEditorModel, path: jsoncparser.JSONPath, value: unknown, shouldSave = true): Promise<void> {
28
- const edits = this.getEditOperations(model, path, value);
29
- if (edits.length > 0) {
30
- await this.workspace.applyBackgroundEdit(model, edits, shouldSave);
31
- }
32
- }
33
-
34
- getEditOperations(model: MonacoEditorModel, path: jsoncparser.JSONPath, value: unknown): monaco.editor.IIdentifiedSingleEditOperation[] {
35
- const textModel = model.textEditorModel;
36
- const content = model.getText().trim();
37
- // Everything is already undefined - no need for changes.
38
- if (!content && value === undefined) {
39
- return [];
40
- }
41
- // Delete the entire document.
42
- if (!path.length && value === undefined) {
43
- return [{
44
- range: textModel.getFullModelRange(),
45
- text: null, // eslint-disable-line no-null/no-null
46
- forceMoveMarkers: false
47
- }];
48
- }
49
- const { insertSpaces, tabSize, defaultEOL } = textModel.getOptions();
50
- const jsonCOptions = {
51
- formattingOptions: {
52
- insertSpaces,
53
- tabSize,
54
- eol: defaultEOL === monaco.editor.DefaultEndOfLine.LF ? '\n' : '\r\n'
55
- }
56
- };
57
- return jsoncparser.modify(content, path, value, jsonCOptions).map(edit => {
58
- const start = textModel.getPositionAt(edit.offset);
59
- const end = textModel.getPositionAt(edit.offset + edit.length);
60
- return {
61
- range: monaco.Range.fromPositions(start, end),
62
- text: edit.content || null, // eslint-disable-line no-null/no-null
63
- forceMoveMarkers: false
64
- };
65
- });
66
- }
67
- }
1
+ // *****************************************************************************
2
+ // Copyright (C) 2021 Ericsson and others.
3
+ //
4
+ // This program and the accompanying materials are made available under the
5
+ // terms of the Eclipse Public License v. 2.0 which is available at
6
+ // http://www.eclipse.org/legal/epl-2.0.
7
+ //
8
+ // This Source Code may also be made available under the following Secondary
9
+ // Licenses when the conditions for such availability set forth in the Eclipse
10
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
+ // with the GNU Classpath Exception which is available at
12
+ // https://www.gnu.org/software/classpath/license.html.
13
+ //
14
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
+ // *****************************************************************************
16
+
17
+ import * as jsoncparser from 'jsonc-parser';
18
+ import { MonacoEditorModel } from '@theia/monaco/lib/browser/monaco-editor-model';
19
+ import { MonacoWorkspace } from '@theia/monaco/lib/browser/monaco-workspace';
20
+ import { inject, injectable } from '@theia/core/shared/inversify';
21
+ import * as monaco from '@theia/monaco-editor-core';
22
+
23
+ @injectable()
24
+ export class MonacoJSONCEditor {
25
+ @inject(MonacoWorkspace) protected readonly workspace: MonacoWorkspace;
26
+
27
+ async setValue(model: MonacoEditorModel, path: jsoncparser.JSONPath, value: unknown, shouldSave = true): Promise<void> {
28
+ const edits = this.getEditOperations(model, path, value);
29
+ if (edits.length > 0) {
30
+ await this.workspace.applyBackgroundEdit(model, edits, shouldSave);
31
+ }
32
+ }
33
+
34
+ getEditOperations(model: MonacoEditorModel, path: jsoncparser.JSONPath, value: unknown): monaco.editor.IIdentifiedSingleEditOperation[] {
35
+ const textModel = model.textEditorModel;
36
+ const content = model.getText().trim();
37
+ // Everything is already undefined - no need for changes.
38
+ if (!content && value === undefined) {
39
+ return [];
40
+ }
41
+ // Delete the entire document.
42
+ if (!path.length && value === undefined) {
43
+ return [{
44
+ range: textModel.getFullModelRange(),
45
+ text: null, // eslint-disable-line no-null/no-null
46
+ forceMoveMarkers: false
47
+ }];
48
+ }
49
+ const { insertSpaces, tabSize, defaultEOL } = textModel.getOptions();
50
+ const jsonCOptions = {
51
+ formattingOptions: {
52
+ insertSpaces,
53
+ tabSize,
54
+ eol: defaultEOL === monaco.editor.DefaultEndOfLine.LF ? '\n' : '\r\n'
55
+ }
56
+ };
57
+ return jsoncparser.modify(content, path, value, jsonCOptions).map(edit => {
58
+ const start = textModel.getPositionAt(edit.offset);
59
+ const end = textModel.getPositionAt(edit.offset + edit.length);
60
+ return {
61
+ range: monaco.Range.fromPositions(start, end),
62
+ text: edit.content || null, // eslint-disable-line no-null/no-null
63
+ forceMoveMarkers: false
64
+ };
65
+ });
66
+ }
67
+ }
@@ -1,28 +1,28 @@
1
- // *****************************************************************************
2
- // Copyright (C) 2018 Ericsson and others.
3
- //
4
- // This program and the accompanying materials are made available under the
5
- // terms of the Eclipse Public License v. 2.0 which is available at
6
- // http://www.eclipse.org/legal/epl-2.0.
7
- //
8
- // This Source Code may also be made available under the following Secondary
9
- // Licenses when the conditions for such availability set forth in the Eclipse
10
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
- // with the GNU Classpath Exception which is available at
12
- // https://www.gnu.org/software/classpath/license.html.
13
- //
14
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
- // *****************************************************************************
16
-
17
- /* note: this bogus test file is required so that
18
- we are able to run mocha unit tests on this
19
- package, without having any actual unit tests in it.
20
- This way a coverage report will be generated,
21
- showing 0% coverage, instead of no report.
22
- This file can be removed once we have real unit
23
- tests in place. */
24
-
25
- describe('preferences package', () => {
26
-
27
- it('should support code coverage statistics', () => true);
28
- });
1
+ // *****************************************************************************
2
+ // Copyright (C) 2018 Ericsson and others.
3
+ //
4
+ // This program and the accompanying materials are made available under the
5
+ // terms of the Eclipse Public License v. 2.0 which is available at
6
+ // http://www.eclipse.org/legal/epl-2.0.
7
+ //
8
+ // This Source Code may also be made available under the following Secondary
9
+ // Licenses when the conditions for such availability set forth in the Eclipse
10
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
+ // with the GNU Classpath Exception which is available at
12
+ // https://www.gnu.org/software/classpath/license.html.
13
+ //
14
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
+ // *****************************************************************************
16
+
17
+ /* note: this bogus test file is required so that
18
+ we are able to run mocha unit tests on this
19
+ package, without having any actual unit tests in it.
20
+ This way a coverage report will be generated,
21
+ showing 0% coverage, instead of no report.
22
+ This file can be removed once we have real unit
23
+ tests in place. */
24
+
25
+ describe('preferences package', () => {
26
+
27
+ it('should support code coverage statistics', () => true);
28
+ });
@@ -1,65 +1,65 @@
1
- // *****************************************************************************
2
- // Copyright (C) 2018 Ericsson and others.
3
- //
4
- // This program and the accompanying materials are made available under the
5
- // terms of the Eclipse Public License v. 2.0 which is available at
6
- // http://www.eclipse.org/legal/epl-2.0.
7
- //
8
- // This Source Code may also be made available under the following Secondary
9
- // Licenses when the conditions for such availability set forth in the Eclipse
10
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
- // with the GNU Classpath Exception which is available at
12
- // https://www.gnu.org/software/classpath/license.html.
13
- //
14
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
- // *****************************************************************************
16
-
17
- import { Container, interfaces } from '@theia/core/shared/inversify';
18
- import { PreferenceProvider, PreferenceScope } from '@theia/core/lib/browser/preferences';
19
- import { UserPreferenceProvider, UserPreferenceProviderFactory } from './user-preference-provider';
20
- import { WorkspacePreferenceProvider } from './workspace-preference-provider';
21
- import { WorkspaceFilePreferenceProvider, WorkspaceFilePreferenceProviderFactory, WorkspaceFilePreferenceProviderOptions } from './workspace-file-preference-provider';
22
- import { FoldersPreferencesProvider } from './folders-preferences-provider';
23
- import { FolderPreferenceProvider, FolderPreferenceProviderFactory, FolderPreferenceProviderFolder } from './folder-preference-provider';
24
- import { UserConfigsPreferenceProvider } from './user-configs-preference-provider';
25
- import { SectionPreferenceProviderUri, SectionPreferenceProviderSection } from './section-preference-provider';
26
-
27
- export function bindWorkspaceFilePreferenceProvider(bind: interfaces.Bind): void {
28
- bind(WorkspaceFilePreferenceProviderFactory).toFactory(ctx => (options: WorkspaceFilePreferenceProviderOptions) => {
29
- const child = new Container({ defaultScope: 'Singleton' });
30
- child.parent = ctx.container;
31
- child.bind(WorkspaceFilePreferenceProvider).toSelf();
32
- child.bind(WorkspaceFilePreferenceProviderOptions).toConstantValue(options);
33
- return child.get(WorkspaceFilePreferenceProvider);
34
- });
35
- }
36
-
37
- export function bindFactory<F, C>(bind: interfaces.Bind,
38
- factoryId: interfaces.ServiceIdentifier<F>,
39
- constructor: interfaces.Newable<C>,
40
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
41
- ...parameterBindings: interfaces.ServiceIdentifier<any>[]): void {
42
- bind(factoryId).toFactory(ctx =>
43
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
44
- (...args: any[]) => {
45
- const child = new Container({ defaultScope: 'Singleton' });
46
- child.parent = ctx.container;
47
- for (let i = 0; i < parameterBindings.length; i++) {
48
- child.bind(parameterBindings[i]).toConstantValue(args[i]);
49
- }
50
- child.bind(constructor).to(constructor);
51
- return child.get(constructor);
52
- }
53
- );
54
- }
55
-
56
- export function bindPreferenceProviders(bind: interfaces.Bind, unbind: interfaces.Unbind): void {
57
- unbind(PreferenceProvider);
58
-
59
- bind(PreferenceProvider).to(UserConfigsPreferenceProvider).inSingletonScope().whenTargetNamed(PreferenceScope.User);
60
- bind(PreferenceProvider).to(WorkspacePreferenceProvider).inSingletonScope().whenTargetNamed(PreferenceScope.Workspace);
61
- bind(PreferenceProvider).to(FoldersPreferencesProvider).inSingletonScope().whenTargetNamed(PreferenceScope.Folder);
62
- bindWorkspaceFilePreferenceProvider(bind);
63
- bindFactory(bind, UserPreferenceProviderFactory, UserPreferenceProvider, SectionPreferenceProviderUri, SectionPreferenceProviderSection);
64
- bindFactory(bind, FolderPreferenceProviderFactory, FolderPreferenceProvider, SectionPreferenceProviderUri, SectionPreferenceProviderSection, FolderPreferenceProviderFolder);
65
- }
1
+ // *****************************************************************************
2
+ // Copyright (C) 2018 Ericsson and others.
3
+ //
4
+ // This program and the accompanying materials are made available under the
5
+ // terms of the Eclipse Public License v. 2.0 which is available at
6
+ // http://www.eclipse.org/legal/epl-2.0.
7
+ //
8
+ // This Source Code may also be made available under the following Secondary
9
+ // Licenses when the conditions for such availability set forth in the Eclipse
10
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
+ // with the GNU Classpath Exception which is available at
12
+ // https://www.gnu.org/software/classpath/license.html.
13
+ //
14
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
+ // *****************************************************************************
16
+
17
+ import { Container, interfaces } from '@theia/core/shared/inversify';
18
+ import { PreferenceProvider, PreferenceScope } from '@theia/core/lib/browser/preferences';
19
+ import { UserPreferenceProvider, UserPreferenceProviderFactory } from './user-preference-provider';
20
+ import { WorkspacePreferenceProvider } from './workspace-preference-provider';
21
+ import { WorkspaceFilePreferenceProvider, WorkspaceFilePreferenceProviderFactory, WorkspaceFilePreferenceProviderOptions } from './workspace-file-preference-provider';
22
+ import { FoldersPreferencesProvider } from './folders-preferences-provider';
23
+ import { FolderPreferenceProvider, FolderPreferenceProviderFactory, FolderPreferenceProviderFolder } from './folder-preference-provider';
24
+ import { UserConfigsPreferenceProvider } from './user-configs-preference-provider';
25
+ import { SectionPreferenceProviderUri, SectionPreferenceProviderSection } from './section-preference-provider';
26
+
27
+ export function bindWorkspaceFilePreferenceProvider(bind: interfaces.Bind): void {
28
+ bind(WorkspaceFilePreferenceProviderFactory).toFactory(ctx => (options: WorkspaceFilePreferenceProviderOptions) => {
29
+ const child = new Container({ defaultScope: 'Singleton' });
30
+ child.parent = ctx.container;
31
+ child.bind(WorkspaceFilePreferenceProvider).toSelf();
32
+ child.bind(WorkspaceFilePreferenceProviderOptions).toConstantValue(options);
33
+ return child.get(WorkspaceFilePreferenceProvider);
34
+ });
35
+ }
36
+
37
+ export function bindFactory<F, C>(bind: interfaces.Bind,
38
+ factoryId: interfaces.ServiceIdentifier<F>,
39
+ constructor: interfaces.Newable<C>,
40
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
41
+ ...parameterBindings: interfaces.ServiceIdentifier<any>[]): void {
42
+ bind(factoryId).toFactory(ctx =>
43
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
44
+ (...args: any[]) => {
45
+ const child = new Container({ defaultScope: 'Singleton' });
46
+ child.parent = ctx.container;
47
+ for (let i = 0; i < parameterBindings.length; i++) {
48
+ child.bind(parameterBindings[i]).toConstantValue(args[i]);
49
+ }
50
+ child.bind(constructor).to(constructor);
51
+ return child.get(constructor);
52
+ }
53
+ );
54
+ }
55
+
56
+ export function bindPreferenceProviders(bind: interfaces.Bind, unbind: interfaces.Unbind): void {
57
+ unbind(PreferenceProvider);
58
+
59
+ bind(PreferenceProvider).to(UserConfigsPreferenceProvider).inSingletonScope().whenTargetNamed(PreferenceScope.User);
60
+ bind(PreferenceProvider).to(WorkspacePreferenceProvider).inSingletonScope().whenTargetNamed(PreferenceScope.Workspace);
61
+ bind(PreferenceProvider).to(FoldersPreferencesProvider).inSingletonScope().whenTargetNamed(PreferenceScope.Folder);
62
+ bindWorkspaceFilePreferenceProvider(bind);
63
+ bindFactory(bind, UserPreferenceProviderFactory, UserPreferenceProvider, SectionPreferenceProviderUri, SectionPreferenceProviderSection);
64
+ bindFactory(bind, FolderPreferenceProviderFactory, FolderPreferenceProvider, SectionPreferenceProviderUri, SectionPreferenceProviderSection, FolderPreferenceProviderFolder);
65
+ }
@@ -1,38 +1,38 @@
1
- // *****************************************************************************
2
- // Copyright (C) 2024 Typefox and others.
3
- //
4
- // This program and the accompanying materials are made available under the
5
- // terms of the Eclipse Public License v. 2.0 which is available at
6
- // http://www.eclipse.org/legal/epl-2.0.
7
- //
8
- // This Source Code may also be made available under the following Secondary
9
- // Licenses when the conditions for such availability set forth in the Eclipse
10
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
- // with the GNU Classpath Exception which is available at
12
- // https://www.gnu.org/software/classpath/license.html.
13
- //
14
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
- // *****************************************************************************
16
-
17
- import { inject, injectable } from '@theia/core/shared/inversify';
18
- import { FrontendApplicationContribution } from '@theia/core/lib/browser';
19
- import { CliPreferences } from '../common/cli-preferences';
20
- import { PreferenceService, PreferenceScope } from '@theia/core/lib/browser/preferences/preference-service';
21
-
22
- @injectable()
23
- export class PreferenceFrontendContribution implements FrontendApplicationContribution {
24
- @inject(CliPreferences)
25
- protected readonly CliPreferences: CliPreferences;
26
-
27
- @inject(PreferenceService)
28
- protected readonly preferenceService: PreferenceService;
29
-
30
- onStart(): void {
31
- this.CliPreferences.getPreferences().then(async preferences => {
32
- await this.preferenceService.ready;
33
- for (const [key, value] of preferences) {
34
- this.preferenceService.set(key, value, PreferenceScope.User);
35
- }
36
- });
37
- }
38
- }
1
+ // *****************************************************************************
2
+ // Copyright (C) 2024 Typefox and others.
3
+ //
4
+ // This program and the accompanying materials are made available under the
5
+ // terms of the Eclipse Public License v. 2.0 which is available at
6
+ // http://www.eclipse.org/legal/epl-2.0.
7
+ //
8
+ // This Source Code may also be made available under the following Secondary
9
+ // Licenses when the conditions for such availability set forth in the Eclipse
10
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
+ // with the GNU Classpath Exception which is available at
12
+ // https://www.gnu.org/software/classpath/license.html.
13
+ //
14
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
+ // *****************************************************************************
16
+
17
+ import { inject, injectable } from '@theia/core/shared/inversify';
18
+ import { FrontendApplicationContribution } from '@theia/core/lib/browser';
19
+ import { CliPreferences } from '../common/cli-preferences';
20
+ import { PreferenceService, PreferenceScope } from '@theia/core/lib/browser/preferences/preference-service';
21
+
22
+ @injectable()
23
+ export class PreferenceFrontendContribution implements FrontendApplicationContribution {
24
+ @inject(CliPreferences)
25
+ protected readonly CliPreferences: CliPreferences;
26
+
27
+ @inject(PreferenceService)
28
+ protected readonly preferenceService: PreferenceService;
29
+
30
+ onStart(): void {
31
+ this.CliPreferences.getPreferences().then(async preferences => {
32
+ await this.preferenceService.ready;
33
+ for (const [key, value] of preferences) {
34
+ this.preferenceService.set(key, value, PreferenceScope.User);
35
+ }
36
+ });
37
+ }
38
+ }
@@ -1,66 +1,66 @@
1
- // *****************************************************************************
2
- // Copyright (C) 2018 Ericsson and others.
3
- //
4
- // This program and the accompanying materials are made available under the
5
- // terms of the Eclipse Public License v. 2.0 which is available at
6
- // http://www.eclipse.org/legal/epl-2.0.
7
- //
8
- // This Source Code may also be made available under the following Secondary
9
- // Licenses when the conditions for such availability set forth in the Eclipse
10
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
- // with the GNU Classpath Exception which is available at
12
- // https://www.gnu.org/software/classpath/license.html.
13
- //
14
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
- // *****************************************************************************
16
-
17
- import '../../src/browser/style/index.css';
18
- import './preferences-monaco-contribution';
19
- import { ContainerModule, interfaces } from '@theia/core/shared/inversify';
20
- import { bindViewContribution, FrontendApplicationContribution, OpenHandler } from '@theia/core/lib/browser';
21
- import { TabBarToolbarContribution } from '@theia/core/lib/browser/shell/tab-bar-toolbar';
22
- import { PreferenceTreeGenerator } from './util/preference-tree-generator';
23
- import { bindPreferenceProviders } from './preference-bindings';
24
- import { bindPreferencesWidgets } from './views/preference-widget-bindings';
25
- import { PreferencesContribution } from './preferences-contribution';
26
- import { PreferenceScopeCommandManager } from './util/preference-scope-command-manager';
27
- import { JsonSchemaContribution } from '@theia/core/lib/browser/json-schema-store';
28
- import { PreferencesJsonSchemaContribution } from './preferences-json-schema-contribution';
29
- import { MonacoJSONCEditor } from './monaco-jsonc-editor';
30
- import { PreferenceTransaction, PreferenceTransactionFactory, preferenceTransactionFactoryCreator } from './preference-transaction-manager';
31
- import { PreferenceOpenHandler } from './preference-open-handler';
32
- import { CliPreferences, CliPreferencesPath } from '../common/cli-preferences';
33
- import { ServiceConnectionProvider } from '@theia/core/lib/browser/messaging/service-connection-provider';
34
- import { PreferenceFrontendContribution } from './preference-frontend-contribution';
35
- import { PreferenceLayoutProvider } from './util/preference-layout';
36
-
37
- export function bindPreferences(bind: interfaces.Bind, unbind: interfaces.Unbind): void {
38
- bindPreferenceProviders(bind, unbind);
39
- bindPreferencesWidgets(bind);
40
-
41
- bind(PreferenceTreeGenerator).toSelf().inSingletonScope();
42
- bind(PreferenceLayoutProvider).toSelf().inSingletonScope();
43
-
44
- bindViewContribution(bind, PreferencesContribution);
45
-
46
- bind(PreferenceOpenHandler).toSelf().inSingletonScope();
47
- bind(OpenHandler).toService(PreferenceOpenHandler);
48
-
49
- bind(PreferenceScopeCommandManager).toSelf().inSingletonScope();
50
- bind(TabBarToolbarContribution).toService(PreferencesContribution);
51
-
52
- bind(PreferencesJsonSchemaContribution).toSelf().inSingletonScope();
53
- bind(JsonSchemaContribution).toService(PreferencesJsonSchemaContribution);
54
-
55
- bind(MonacoJSONCEditor).toSelf().inSingletonScope();
56
- bind(PreferenceTransaction).toSelf();
57
- bind(PreferenceTransactionFactory).toFactory(preferenceTransactionFactoryCreator);
58
-
59
- bind(CliPreferences).toDynamicValue(ctx => ServiceConnectionProvider.createProxy<CliPreferences>(ctx.container, CliPreferencesPath)).inSingletonScope();
60
- bind(PreferenceFrontendContribution).toSelf().inSingletonScope();
61
- bind(FrontendApplicationContribution).toService(PreferenceFrontendContribution);
62
- }
63
-
64
- export default new ContainerModule((bind, unbind, isBound, rebind) => {
65
- bindPreferences(bind, unbind);
66
- });
1
+ // *****************************************************************************
2
+ // Copyright (C) 2018 Ericsson and others.
3
+ //
4
+ // This program and the accompanying materials are made available under the
5
+ // terms of the Eclipse Public License v. 2.0 which is available at
6
+ // http://www.eclipse.org/legal/epl-2.0.
7
+ //
8
+ // This Source Code may also be made available under the following Secondary
9
+ // Licenses when the conditions for such availability set forth in the Eclipse
10
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
11
+ // with the GNU Classpath Exception which is available at
12
+ // https://www.gnu.org/software/classpath/license.html.
13
+ //
14
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15
+ // *****************************************************************************
16
+
17
+ import '../../src/browser/style/index.css';
18
+ import './preferences-monaco-contribution';
19
+ import { ContainerModule, interfaces } from '@theia/core/shared/inversify';
20
+ import { bindViewContribution, FrontendApplicationContribution, OpenHandler } from '@theia/core/lib/browser';
21
+ import { TabBarToolbarContribution } from '@theia/core/lib/browser/shell/tab-bar-toolbar';
22
+ import { PreferenceTreeGenerator } from './util/preference-tree-generator';
23
+ import { bindPreferenceProviders } from './preference-bindings';
24
+ import { bindPreferencesWidgets } from './views/preference-widget-bindings';
25
+ import { PreferencesContribution } from './preferences-contribution';
26
+ import { PreferenceScopeCommandManager } from './util/preference-scope-command-manager';
27
+ import { JsonSchemaContribution } from '@theia/core/lib/browser/json-schema-store';
28
+ import { PreferencesJsonSchemaContribution } from './preferences-json-schema-contribution';
29
+ import { MonacoJSONCEditor } from './monaco-jsonc-editor';
30
+ import { PreferenceTransaction, PreferenceTransactionFactory, preferenceTransactionFactoryCreator } from './preference-transaction-manager';
31
+ import { PreferenceOpenHandler } from './preference-open-handler';
32
+ import { CliPreferences, CliPreferencesPath } from '../common/cli-preferences';
33
+ import { ServiceConnectionProvider } from '@theia/core/lib/browser/messaging/service-connection-provider';
34
+ import { PreferenceFrontendContribution } from './preference-frontend-contribution';
35
+ import { PreferenceLayoutProvider } from './util/preference-layout';
36
+
37
+ export function bindPreferences(bind: interfaces.Bind, unbind: interfaces.Unbind): void {
38
+ bindPreferenceProviders(bind, unbind);
39
+ bindPreferencesWidgets(bind);
40
+
41
+ bind(PreferenceTreeGenerator).toSelf().inSingletonScope();
42
+ bind(PreferenceLayoutProvider).toSelf().inSingletonScope();
43
+
44
+ bindViewContribution(bind, PreferencesContribution);
45
+
46
+ bind(PreferenceOpenHandler).toSelf().inSingletonScope();
47
+ bind(OpenHandler).toService(PreferenceOpenHandler);
48
+
49
+ bind(PreferenceScopeCommandManager).toSelf().inSingletonScope();
50
+ bind(TabBarToolbarContribution).toService(PreferencesContribution);
51
+
52
+ bind(PreferencesJsonSchemaContribution).toSelf().inSingletonScope();
53
+ bind(JsonSchemaContribution).toService(PreferencesJsonSchemaContribution);
54
+
55
+ bind(MonacoJSONCEditor).toSelf().inSingletonScope();
56
+ bind(PreferenceTransaction).toSelf();
57
+ bind(PreferenceTransactionFactory).toFactory(preferenceTransactionFactoryCreator);
58
+
59
+ bind(CliPreferences).toDynamicValue(ctx => ServiceConnectionProvider.createProxy<CliPreferences>(ctx.container, CliPreferencesPath)).inSingletonScope();
60
+ bind(PreferenceFrontendContribution).toSelf().inSingletonScope();
61
+ bind(FrontendApplicationContribution).toService(PreferenceFrontendContribution);
62
+ }
63
+
64
+ export default new ContainerModule((bind, unbind, isBound, rebind) => {
65
+ bindPreferences(bind, unbind);
66
+ });