forked from th-ch/youtube-music
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelectron.vite.config.1731933857464.mjs
373 lines (369 loc) · 12.7 KB
/
electron.vite.config.1731933857464.mjs
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
// electron.vite.config.mts
import { resolve as resolve4, dirname as dirname4, join } from "node:path";
import { fileURLToPath as fileURLToPath4 } from "node:url";
import { defineConfig, defineViteConfig } from "electron-vite";
import builtinModules from "builtin-modules";
import viteResolve from "vite-plugin-resolve";
import Inspect from "vite-plugin-inspect";
import solidPlugin from "vite-plugin-solid";
// vite-plugins/plugin-importer.mts
import { basename, relative, resolve, extname, dirname } from "node:path";
import { fileURLToPath } from "node:url";
import { globSync } from "glob";
import { Project } from "ts-morph";
var __electron_vite_injected_import_meta_url = "file:///C:/Users/todor/Downloads/dam/youtube-desktop/vite-plugins/plugin-importer.mts";
var snakeToCamel = (text) => text.replace(/-(\w)/g, (_, letter) => letter.toUpperCase());
var pluginVirtualModuleGenerator = (mode) => {
const __dirname2 = dirname(fileURLToPath(__electron_vite_injected_import_meta_url));
const project = new Project({
tsConfigFilePath: resolve(__dirname2, "..", "tsconfig.json"),
skipAddingFilesFromTsConfig: true,
skipLoadingLibFiles: true,
skipFileDependencyResolution: true
});
const srcPath = resolve(__dirname2, "..", "src");
const plugins = globSync([
"src/plugins/*/index.{js,ts}",
"src/plugins/*.{js,ts}",
"!src/plugins/utils/**/*",
"!src/plugins/utils/*"
]).map((path) => {
let name = basename(path);
if (name === "index.ts" || name === "index.js") {
name = basename(resolve(path, ".."));
}
name = name.replace(extname(name), "");
return { name, path };
});
const src = project.createSourceFile("vm:pluginIndexes", (writer) => {
for (const { name, path } of plugins) {
const relativePath = relative(resolve(srcPath, ".."), path).replace(/\\/g, "/");
writer.writeLine(`import ${snakeToCamel(name)}Plugin, { pluginStub as ${snakeToCamel(name)}PluginStub } from "./${relativePath}";`);
}
writer.blankLine();
writer.writeLine(`export const ${mode}Plugins = {`);
for (const { name } of plugins) {
const checkMode = mode === "main" ? "backend" : mode;
writer.writeLine(
` ...(${snakeToCamel(name)}Plugin['${checkMode}'] ? { "${name}": ${snakeToCamel(name)}Plugin } : {}),`
);
}
writer.writeLine("};");
writer.blankLine();
writer.writeLine("export const allPlugins = {");
for (const { name } of plugins) {
writer.writeLine(` "${name}": ${snakeToCamel(name)}PluginStub,`);
}
writer.writeLine("};");
writer.blankLine();
});
return src.getText();
};
// vite-plugins/plugin-loader.mts
import { readFile } from "node:fs/promises";
import { resolve as resolve2, basename as basename2, dirname as dirname2 } from "node:path";
import { fileURLToPath as fileURLToPath2 } from "node:url";
import { createFilter } from "vite";
import {
Project as Project2,
ts,
VariableDeclarationKind
} from "ts-morph";
var __electron_vite_injected_import_meta_url2 = "file:///C:/Users/todor/Downloads/dam/youtube-desktop/vite-plugins/plugin-loader.mts";
function plugin_loader_default(mode) {
const pluginFilter = createFilter([
"src/plugins/*/index.{js,ts}",
"src/plugins/*"
]);
return {
name: "ytm-plugin-loader",
async load(id) {
if (!pluginFilter(id)) return null;
const __dirname2 = dirname2(fileURLToPath2(__electron_vite_injected_import_meta_url2));
const project = new Project2({
tsConfigFilePath: resolve2(__dirname2, "..", "tsconfig.json"),
skipAddingFilesFromTsConfig: true,
skipLoadingLibFiles: true,
skipFileDependencyResolution: true
});
const src = project.createSourceFile(
"_pf" + basename2(id),
await readFile(id, "utf8")
);
const exports = src.getExportedDeclarations();
let objExpr = void 0;
for (const [name, [expr]] of exports) {
if (name !== "default") continue;
switch (expr.getKind()) {
case ts.SyntaxKind.ObjectLiteralExpression: {
objExpr = expr.asKindOrThrow(ts.SyntaxKind.ObjectLiteralExpression);
break;
}
case ts.SyntaxKind.CallExpression: {
const callExpr = expr.asKindOrThrow(ts.SyntaxKind.CallExpression);
if (callExpr.getArguments().length !== 1) continue;
const name2 = callExpr.getExpression().getText();
if (name2 !== "createPlugin") continue;
const arg = callExpr.getArguments()[0];
if (arg.getKind() !== ts.SyntaxKind.ObjectLiteralExpression)
continue;
objExpr = arg.asKindOrThrow(ts.SyntaxKind.ObjectLiteralExpression);
break;
}
}
}
if (!objExpr) return null;
const properties = objExpr.getProperties();
const propertyNames = properties.map((prop) => {
switch (prop.getKind()) {
case ts.SyntaxKind.PropertyAssignment:
return prop.asKindOrThrow(ts.SyntaxKind.PropertyAssignment).getName();
case ts.SyntaxKind.ShorthandPropertyAssignment:
return prop.asKindOrThrow(ts.SyntaxKind.ShorthandPropertyAssignment).getName();
case ts.SyntaxKind.MethodDeclaration:
return prop.asKindOrThrow(ts.SyntaxKind.MethodDeclaration).getName();
default:
throw new Error("Not implemented");
}
});
const contexts = ["backend", "preload", "renderer", "menu"];
for (const ctx of contexts) {
if (mode === "none") {
const index2 = propertyNames.indexOf(ctx);
if (index2 === -1) continue;
objExpr.getProperty(propertyNames[index2])?.remove();
continue;
}
if (ctx === mode) continue;
if (ctx === "menu" && mode === "backend") continue;
const index = propertyNames.indexOf(ctx);
if (index === -1) continue;
objExpr.getProperty(propertyNames[index])?.remove();
}
const stubObjExpr = src.addVariableStatement({
isExported: true,
declarationKind: VariableDeclarationKind.Const,
declarations: [
{
name: "pluginStub",
initializer: (writer) => writer.write(objExpr.getText())
}
]
}).getDeclarations()[0].getInitializer();
const stubProperties = stubObjExpr.getProperties();
const stubPropertyNames = stubProperties.map((prop) => {
switch (prop.getKind()) {
case ts.SyntaxKind.PropertyAssignment:
return prop.asKindOrThrow(ts.SyntaxKind.PropertyAssignment).getName();
case ts.SyntaxKind.ShorthandPropertyAssignment:
return prop.asKindOrThrow(ts.SyntaxKind.ShorthandPropertyAssignment).getName();
case ts.SyntaxKind.MethodDeclaration:
return prop.asKindOrThrow(ts.SyntaxKind.MethodDeclaration).getName();
default:
throw new Error("Not implemented");
}
});
if (mode === "backend") contexts.pop();
for (const ctx of contexts) {
const index = stubPropertyNames.indexOf(ctx);
if (index === -1) continue;
stubObjExpr.getProperty(stubPropertyNames[index])?.remove();
}
return {
code: src.getText()
};
}
};
}
// vite-plugins/i18n-importer.mts
import { basename as basename3, relative as relative2, resolve as resolve3, extname as extname2, dirname as dirname3 } from "node:path";
import { fileURLToPath as fileURLToPath3 } from "node:url";
import { globSync as globSync2 } from "glob";
import { Project as Project3 } from "ts-morph";
var __electron_vite_injected_import_meta_url3 = "file:///C:/Users/todor/Downloads/dam/youtube-desktop/vite-plugins/i18n-importer.mts";
var snakeToCamel2 = (text) => text.replace(/-(\w)/g, (_, letter) => letter.toUpperCase());
var i18nImporter = () => {
const __dirname2 = dirname3(fileURLToPath3(__electron_vite_injected_import_meta_url3));
const project = new Project3({
tsConfigFilePath: resolve3(__dirname2, "..", "tsconfig.json"),
skipAddingFilesFromTsConfig: true,
skipLoadingLibFiles: true,
skipFileDependencyResolution: true
});
const srcPath = resolve3(__dirname2, "..", "src");
const plugins = globSync2(["src/i18n/resources/*.json"]).map((path) => {
const nameWithExt = basename3(path);
const name = nameWithExt.replace(extname2(nameWithExt), "");
return { name, path };
});
const src = project.createSourceFile("vm:i18n", (writer) => {
for (const { name, path } of plugins) {
const relativePath = relative2(resolve3(srcPath, ".."), path).replace(/\\/g, "/");
writer.writeLine(`import ${snakeToCamel2(name)}Json from "./${relativePath}";`);
}
writer.blankLine();
writer.writeLine("export const languageResources = {");
for (const { name } of plugins) {
writer.writeLine(` "${name}": {`);
writer.writeLine(` translation: ${snakeToCamel2(name)}Json,`);
writer.writeLine(" },");
}
writer.writeLine("};");
writer.blankLine();
});
return src.getText();
};
// electron.vite.config.mts
var __electron_vite_injected_import_meta_url4 = "file:///C:/Users/todor/Downloads/dam/youtube-desktop/electron.vite.config.mts";
var __dirname = dirname4(fileURLToPath4(__electron_vite_injected_import_meta_url4));
var resolveAlias = {
"@": resolve4(__dirname, "./src"),
"@assets": resolve4(__dirname, "./assets")
};
var electron_vite_config_default = defineConfig({
main: defineViteConfig(({ mode }) => {
const commonConfig = {
plugins: [
plugin_loader_default("backend"),
viteResolve({
"virtual:i18n": i18nImporter(),
"virtual:plugins": pluginVirtualModuleGenerator("main")
})
],
publicDir: "assets",
build: {
lib: {
entry: "src/index.ts",
formats: ["cjs"]
},
outDir: "dist/main",
commonjsOptions: {
ignoreDynamicRequires: true
},
rollupOptions: {
external: ["electron", "custom-electron-prompt", ...builtinModules],
input: "./src/index.ts"
}
},
resolve: {
alias: resolveAlias
}
};
if (mode === "development") {
commonConfig.build.sourcemap = "inline";
commonConfig.plugins?.push(
Inspect({
build: true,
outputDir: join(__dirname, ".vite-inspect/backend")
})
);
return commonConfig;
}
return {
...commonConfig,
build: {
...commonConfig.build,
minify: true,
cssMinify: true
}
};
}),
preload: defineViteConfig(({ mode }) => {
const commonConfig = {
plugins: [
plugin_loader_default("preload"),
viteResolve({
"virtual:i18n": i18nImporter(),
"virtual:plugins": pluginVirtualModuleGenerator("preload")
})
],
build: {
lib: {
entry: "src/preload.ts",
formats: ["cjs"]
},
outDir: "dist/preload",
commonjsOptions: {
ignoreDynamicRequires: true
},
rollupOptions: {
external: ["electron", "custom-electron-prompt", ...builtinModules],
input: "./src/preload.ts"
}
},
resolve: {
alias: resolveAlias
}
};
if (mode === "development") {
commonConfig.build.sourcemap = "inline";
commonConfig.plugins?.push(
Inspect({
build: true,
outputDir: join(__dirname, ".vite-inspect/preload")
})
);
return commonConfig;
}
return {
...commonConfig,
build: {
...commonConfig.build,
minify: true,
cssMinify: true
}
};
}),
renderer: defineViteConfig(({ mode }) => {
const commonConfig = {
plugins: [
plugin_loader_default("renderer"),
viteResolve({
"virtual:i18n": i18nImporter(),
"virtual:plugins": pluginVirtualModuleGenerator("renderer")
}),
solidPlugin()
],
root: "./src/",
build: {
lib: {
entry: "src/index.html",
formats: ["iife"],
name: "renderer"
},
outDir: "dist/renderer",
commonjsOptions: {
ignoreDynamicRequires: true
},
rollupOptions: {
external: ["electron", ...builtinModules],
input: "./src/index.html"
}
},
resolve: {
alias: resolveAlias
}
};
if (mode === "development") {
commonConfig.build.sourcemap = "inline";
commonConfig.plugins?.push(
Inspect({
build: true,
outputDir: join(__dirname, ".vite-inspect/renderer")
})
);
return commonConfig;
}
return {
...commonConfig,
build: {
...commonConfig.build,
minify: true,
cssMinify: true
}
};
})
});
export {
electron_vite_config_default as default
};