-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathapplication-props.ts
237 lines (209 loc) · 6.74 KB
/
application-props.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
// *****************************************************************************
// Copyright (C) 2018 TypeFox and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0.
//
// This Source Code may also be made available under the following Secondary
// Licenses when the conditions for such availability set forth in the Eclipse
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
// with the GNU Classpath Exception which is available at
// https://www.gnu.org/software/classpath/license.html.
//
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
// *****************************************************************************
import type { BrowserWindowConstructorOptions } from 'electron';
export import deepmerge = require('deepmerge');
export type RequiredRecursive<T> = {
[K in keyof T]-?: T[K] extends object ? RequiredRecursive<T[K]> : T[K]
};
/**
* Base configuration for the Theia application.
*/
export interface ApplicationConfig {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
readonly [key: string]: any;
}
export type ElectronFrontendApplicationConfig = RequiredRecursive<ElectronFrontendApplicationConfig.Partial>;
export namespace ElectronFrontendApplicationConfig {
export const DEFAULT: ElectronFrontendApplicationConfig = {
windowOptions: {}
};
export interface Partial {
/**
* Override or add properties to the electron `windowOptions`.
*
* Defaults to `{}`.
*/
readonly windowOptions?: BrowserWindowConstructorOptions;
}
}
export type DefaultTheme = string | Readonly<{ light: string, dark: string }>;
export namespace DefaultTheme {
export function defaultForOSTheme(theme: DefaultTheme): string {
if (typeof theme === 'string') {
return theme;
}
if (
typeof window !== 'undefined' &&
window.matchMedia &&
window.matchMedia('(prefers-color-scheme: dark)').matches
) {
return theme.dark;
}
return theme.light;
}
}
/**
* Application configuration for the frontend. The following properties will be injected into the `index.html`.
*/
export type FrontendApplicationConfig = RequiredRecursive<FrontendApplicationConfig.Partial>;
export namespace FrontendApplicationConfig {
export const DEFAULT: FrontendApplicationConfig = {
applicationName: 'Eclipse Theia',
defaultTheme: { light: 'light', dark: 'dark' },
defaultIconTheme: 'theia-file-icons',
electron: ElectronFrontendApplicationConfig.DEFAULT,
defaultLocale: '',
validatePreferencesSchema: true
};
export interface Partial extends ApplicationConfig {
/**
* The default theme for the application.
*
* Defaults to `dark` if the OS's theme is dark. Otherwise `light`.
*/
readonly defaultTheme?: DefaultTheme;
/**
* The default icon theme for the application.
*
* Defaults to `none`.
*/
readonly defaultIconTheme?: string;
/**
* The name of the application.
*
* Defaults to `Eclipse Theia`.
*/
readonly applicationName?: string;
/**
* Electron specific configuration.
*
* Defaults to `ElectronFrontendApplicationConfig.DEFAULT`.
*/
readonly electron?: ElectronFrontendApplicationConfig.Partial;
/**
* The default locale for the application.
*
* Defaults to "".
*/
readonly defaultLocale?: string;
/**
* When `true`, the application will validate the JSON schema of the preferences on start
* and log warnings to the console if the schema is not valid.
*
* Defaults to `true`.
*/
readonly validatePreferencesSchema?: boolean;
}
}
/**
* Application configuration for the backend.
*/
export type BackendApplicationConfig = RequiredRecursive<BackendApplicationConfig.Partial>;
export namespace BackendApplicationConfig {
export const DEFAULT: BackendApplicationConfig = {
singleInstance: false,
};
export interface Partial extends ApplicationConfig {
/**
* If true and in Electron mode, only one instance of the application is allowed to run at a time.
*
* Defaults to `false`.
*/
readonly singleInstance?: boolean;
}
}
/**
* Configuration for the generator.
*/
export type GeneratorConfig = RequiredRecursive<GeneratorConfig.Partial>;
export namespace GeneratorConfig {
export const DEFAULT: GeneratorConfig = {
preloadTemplate: ''
};
export interface Partial {
/**
* Template to use for extra preload content markup (file path or HTML).
*
* Defaults to `''`.
*/
readonly preloadTemplate?: string;
}
}
export interface NpmRegistryProps {
/**
* Defaults to `false`.
*/
readonly next: boolean;
/**
* Defaults to `https://registry.npmjs.org/`.
*/
readonly registry: string;
}
export namespace NpmRegistryProps {
export const DEFAULT: NpmRegistryProps = {
next: false,
registry: 'https://registry.npmjs.org/'
};
}
/**
* Representation of all backend and frontend related Theia extension and application properties.
*/
export interface ApplicationProps extends NpmRegistryProps {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
readonly [key: string]: any;
/**
* Whether the extension targets the browser or electron. Defaults to `browser`.
*/
readonly target: ApplicationProps.Target;
/**
* Frontend related properties.
*/
readonly frontend: {
readonly config: FrontendApplicationConfig
};
/**
* Backend specific properties.
*/
readonly backend: {
readonly config: BackendApplicationConfig
};
/**
* Generator specific properties.
*/
readonly generator: {
readonly config: GeneratorConfig
};
}
export namespace ApplicationProps {
export type Target = keyof typeof ApplicationTarget;
export enum ApplicationTarget {
browser = 'browser',
electron = 'electron'
};
export const DEFAULT: ApplicationProps = {
...NpmRegistryProps.DEFAULT,
target: 'browser',
backend: {
config: BackendApplicationConfig.DEFAULT
},
frontend: {
config: FrontendApplicationConfig.DEFAULT
},
generator: {
config: GeneratorConfig.DEFAULT
}
};
}