-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite-plugin-nodecg.mts
259 lines (232 loc) · 6.03 KB
/
vite-plugin-nodecg.mts
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
import fs from "fs";
import path from "path";
import * as cheerio from "cheerio";
import {deleteSync} from "del";
import getPort from "get-port";
import {globbySync} from "globby";
import {
rollup,
watch as rollupWatch,
type RollupOptions,
type InputOptions,
type OutputOptions,
type RollupWatchOptions,
type RollupWatcherEvent,
type RollupWatcher,
} from "rollup";
import type {ResolvedConfig, Manifest, Plugin} from "vite";
const setupExtensionBuild = async (options: RollupOptions) => {
const inputOptions: InputOptions = {
...options,
};
const outputOptions: OutputOptions = {
dir: "./extension",
format: "cjs",
sourcemap: true,
interop: "auto",
...options.output,
};
const watchOptions: RollupWatchOptions = {
...options,
watch: {
clearScreen: false,
...options.watch,
},
output: {
dir: "./extension",
format: "cjs",
sourcemap: true,
interop: "auto",
...options.output,
},
};
let watcher: RollupWatcher;
const watchEventHandler = (event: RollupWatcherEvent) => {
if (event.code === "BUNDLE_END" || event.code === "ERROR") {
event.result?.close();
}
};
return {
watch: () => {
watcher = rollupWatch(watchOptions);
watcher.on("event", watchEventHandler);
},
unwatch: () => {
watcher.off("event", watchEventHandler);
watcher.close();
},
build: async () => {
const bundle = await rollup(inputOptions);
await bundle.write(outputOptions);
await bundle.close();
},
};
};
type PluginConfig = {
bundleName: string;
graphics?: string | string[];
dashboard?: string | string[];
extension?: string | RollupOptions;
template?: string | {graphics: string; dashboard: string};
};
export default async ({
bundleName,
graphics = [],
dashboard = [],
extension,
template = "./src/template.html",
}: PluginConfig): Promise<Plugin> => {
let config: ResolvedConfig;
let protocol: string;
let host: string;
let port: number;
const extensionRollup =
typeof extension === "string"
? await setupExtensionBuild({input: extension})
: typeof extension === "object"
? await setupExtensionBuild(extension)
: extension;
const graphicsInputs = globbySync(graphics);
const dashboardInputs = globbySync(dashboard);
const inputs = [...graphicsInputs, ...dashboardInputs];
const generateHtmlFiles = async () => {
const graphicsTemplate =
typeof template === "string" ? template : template.graphics;
const dashboardTemplate =
typeof template === "string" ? template : template.dashboard;
const graphicsTemplateHtml = fs.readFileSync(
path.join(config.root, graphicsTemplate),
"utf-8",
);
const dashboardTemplateHtml = fs.readFileSync(
path.join(config.root, dashboardTemplate),
"utf-8",
);
const graphicsOutdir = path.join(config.root, "graphics");
const dashboardOutdir = path.join(config.root, "dashboard");
deleteSync([`${graphicsOutdir}/**`, `${dashboardOutdir}/**`]);
fs.mkdirSync(graphicsOutdir, {recursive: true});
fs.mkdirSync(dashboardOutdir, {recursive: true});
for (const input of inputs) {
const templateHtml = graphicsInputs.includes(input)
? graphicsTemplateHtml
: dashboardTemplateHtml;
const $ = cheerio.load(templateHtml);
const head = $("head");
if (config.command === "serve") {
const address = `${protocol}://${host}:${port}`;
head.append(`
<script type="module">
import RefreshRuntime from '${new URL(
path.join(config.base, "@react-refresh"),
address,
)}'
RefreshRuntime.injectIntoGlobalHook(window)
window.$RefreshReg$ = () => {}
window.$RefreshSig$ = () => (type) => type
window.__vite_plugin_react_preamble_installed__ = true
</script>
`);
head.append(
`<script type="module" src="${new URL(
path.join(config.base, "@vite/client"),
address,
)}"></script>`,
);
head.append(
`<script type="module" src="${new URL(
path.join(config.base, input),
address,
)}"></script>`,
);
}
if (config.command === "build") {
const inputName = input.replace(/^\.\//, "");
const manifest: Manifest = JSON.parse(
fs.readFileSync(
path.join(config.build.outDir, "manifest.json"),
"utf-8",
),
);
const entryChunk = manifest[inputName];
if (entryChunk?.css) {
for (const css of entryChunk.css) {
head.append(
`<link rel="stylesheet" href="${path.join(config.base, css)}">`,
);
}
}
if (entryChunk?.file) {
head.append(
`<script type="module" src="${path.join(
config.base,
entryChunk.file,
)}"></script>`,
);
}
}
const newHtml = $.html();
const dir = graphicsInputs.includes(input)
? graphicsOutdir
: dashboardOutdir;
const name = path.basename(input, path.extname(input));
fs.writeFileSync(path.join(dir, `${name}.html`), newHtml);
}
};
return {
name: "nodecg",
config: async (baseConfig, {command}) => {
protocol = baseConfig.server?.https ? "https" : "http";
host =
typeof baseConfig.server?.host === "string"
? baseConfig.server.host
: "localhost";
port = baseConfig.server?.port ?? (await getPort());
return {
appType: "mpa",
base:
command === "serve"
? `/bundles/${bundleName}`
: `/bundles/${bundleName}/shared/dist`,
server: {
host,
port,
origin: `${protocol}://${host}:${port}`,
},
build: {
rollupOptions: {
input: inputs,
},
manifest: true,
outDir: "./shared/dist",
assetsDir: ".",
minify: false,
sourcemap: true,
},
clearScreen: baseConfig.clearScreen ?? false,
};
},
configResolved: (resolvedConfig) => {
config = resolvedConfig;
},
buildStart: async () => {
if (config.command === "serve") {
generateHtmlFiles();
extensionRollup?.watch();
}
if (config.command === "build") {
await extensionRollup?.build();
}
},
writeBundle: () => {
if (config.command === "build") {
generateHtmlFiles();
}
},
buildEnd: () => {
if (config.command === "serve") {
extensionRollup?.unwatch();
}
},
};
};