forked from ohcnetwork/care_fe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.mts
287 lines (268 loc) · 7.81 KB
/
vite.config.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
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
import { ValidateEnv } from "@julr/vite-plugin-validate-env";
import federation from "@originjs/vite-plugin-federation";
import react from "@vitejs/plugin-react";
import DOMPurify from "dompurify";
import fs from "fs";
import { JSDOM } from "jsdom";
import { marked } from "marked";
import { createRequire } from "node:module";
import path from "path";
import { defineConfig, loadEnv } from "vite";
import checker from "vite-plugin-checker";
import { VitePWA } from "vite-plugin-pwa";
import { viteStaticCopy } from "vite-plugin-static-copy";
import { z } from "zod";
import { treeShakeCareIcons } from "./plugins/treeShakeCareIcons";
const pdfWorkerPath = path.join(
path.dirname(
createRequire(import.meta.url).resolve("pdfjs-dist/package.json"),
),
"build",
"pdf.worker.min.mjs",
);
// Convert goal description markdown to HTML
function getDescriptionHtml(description: string) {
// note: escaped description causes issues with markdown parsing
const html = marked.parse(description, {
async: false,
gfm: true,
breaks: true,
});
const purify = DOMPurify(new JSDOM("").window);
const sanitizedHtml = purify.sanitize(html);
return JSON.stringify(sanitizedHtml);
}
function getPluginAliases() {
const pluginsDir = path.resolve(__dirname, "apps");
// Make sure the `apps` folder exists
if (!fs.existsSync(pluginsDir)) {
return {};
}
const pluginFolders = fs.readdirSync(pluginsDir);
const aliases = {};
pluginFolders.forEach((pluginFolder) => {
const pluginSrcPath = path.join(pluginsDir, pluginFolder, "src");
if (fs.existsSync(pluginSrcPath)) {
aliases[`@apps/${pluginFolder}`] = pluginSrcPath;
aliases[`@app-manifest/${pluginFolder}`] = path.join(
pluginSrcPath,
"manifest.ts",
);
}
});
return aliases;
}
/**
* Parses a remote app configuration string into its components
* @param appConfig - Configuration string for a remote app
* @returns Parsed configuration object
*/
interface ParsedRemoteConfig {
url: string;
org: string;
repo: string;
}
function parseRemoteConfig(appConfig: string): ParsedRemoteConfig {
if (!appConfig.includes("/")) {
throw new Error(
`Invalid app configuration format: ${appConfig}. Expected 'org/repo' or 'org/repo@url'.`,
);
}
// Handle custom URLs (both localhost and custom hosted)
if (appConfig.includes("@")) {
const [package_, url] = appConfig.split("@");
const [org, repo] = package_.split("/");
if (!org || !repo || !url) {
throw new Error(
`Invalid custom URL configuration: ${appConfig}. Expected 'org/repo@url'.`,
);
}
// Add appropriate protocol based on whether it's localhost
const protocol = url.includes("localhost") ? "http://" : "https://";
const fullUrl = url.startsWith("http") ? url : `${protocol}${url}`;
return {
url: `${fullUrl}/assets/remoteEntry.js`,
org,
repo,
};
}
// Handle GitHub Pages URLs
const [org, repo] = appConfig.split("/");
if (!org || !repo) {
throw new Error(
`Invalid GitHub Pages configuration: ${appConfig}. Expected 'org/repo'.`,
);
}
return {
url: `https://${org}.github.io/${repo}/assets/remoteEntry.js`,
org,
repo,
};
}
/**
* Generates remote module configurations for Module Federation
*
* Supports two formats for REACT_ENABLED_APPS:
* 1. GitHub Pages: "organization/repository"
* Example: "coronasafe/care_fe"
*
* 2. Custom URL: "organization/repository@url"
* Example: "coronasafe/care_fe@localhost:5173"
* Example: "coronasafe/[email protected]"
* Note: Protocol (http/https) is automatically added based on the URL:
* - localhost URLs use http://
* - all other URLs use https://
*
* @param enabledApps - Comma-separated list of enabled apps
* @returns Remote module configuration object for Module Federation
*/
function getRemotes(enabledApps: string) {
if (!enabledApps) return {};
return enabledApps.split(",").reduce((acc, app) => {
const { repo, url } = parseRemoteConfig(app);
console.log(`Configuring Remote Module for ${repo}:`, url);
return {
...acc,
[repo]: {
external: `Promise.resolve("${url}")`,
from: "vite",
externalType: "promise",
},
};
}, {});
}
/** @type {import('vite').UserConfig} */
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, process.cwd(), "");
const cdnUrls =
env.REACT_CDN_URLS ||
[
"https://egov-s3-facility-10bedicu.s3.amazonaws.com",
"https://egov-s3-patient-data-10bedicu.s3.amazonaws.com",
"http://localhost:4566",
].join(" ");
return {
envPrefix: "REACT_",
define: {
__CUSTOM_DESCRIPTION_HTML__: getDescriptionHtml(
env.REACT_CUSTOM_DESCRIPTION || "",
),
},
plugins: [
federation({
name: "core",
remotes: getRemotes(env.REACT_ENABLED_APPS),
// {
// care_livekit_fe: {
// external: `Promise.resolve("http://localhost:5173/assets/remoteEntry.js")`,
// externalType: "promise",
// from: "vite",
// },
// },
shared: ["react", "react-dom"],
}),
ValidateEnv({
validator: "zod",
schema: {
REACT_CARE_API_URL: z.string().url(),
REACT_SENTRY_DSN: z.string().url().optional(),
REACT_SENTRY_ENVIRONMENT: z.string().optional(),
REACT_CDN_URLS: z
.string()
.optional()
.transform((val) => val?.split(" "))
.pipe(z.array(z.string().url()).optional())
.describe("Optional: Space-separated list of CDN URLs"),
},
}),
viteStaticCopy({
targets: [
{
src: pdfWorkerPath,
dest: "",
},
],
}),
react(),
checker({ typescript: true }),
treeShakeCareIcons({
iconWhitelist: ["default"],
}),
VitePWA({
strategies: "injectManifest",
srcDir: "src",
filename: "service-worker.ts",
injectRegister: "script-defer",
devOptions: {
enabled: true,
type: "module",
},
injectManifest: {
maximumFileSizeToCacheInBytes: 7000000,
},
manifest: {
name: "Care",
short_name: "Care",
theme_color: "#0e9f6e",
background_color: "#ffffff",
display: "standalone",
icons: [
{
src: "images/icons/pwa-64x64.png",
sizes: "64x64",
type: "image/png",
},
{
src: "images/icons/pwa-192x192.png",
sizes: "192x192",
type: "image/png",
},
{
src: "images/icons/pwa-512x512.png",
sizes: "512x512",
type: "image/png",
purpose: "any",
},
{
src: "images/icons/maskable-icon-512x512.png",
sizes: "512x512",
type: "image/png",
purpose: "maskable",
},
],
},
}),
],
resolve: {
alias: {
...getPluginAliases(),
"@": path.resolve(__dirname, "./src"),
"@careConfig": path.resolve(__dirname, "./care.config.ts"),
"@core": path.resolve(__dirname, "src/"),
},
},
// optimizeDeps: {
// include: getPluginDependencies(),
// },
build: {
target: "es2022",
outDir: "build",
sourcemap: true,
},
esbuild: {
target: "es2022",
},
server: {
port: 4000,
},
preview: {
headers: {
"Content-Security-Policy-Report-Only": `default-src 'self';\
style-src 'self' 'unsafe-inline';\
img-src 'self' https://cdn.ohc.network ${cdnUrls};\
object-src 'self' ${cdnUrls};`,
},
port: 4000,
},
};
});