fix(core): avoid expand runtime config everywhere used (#7972)

This commit is contained in:
forehalo 2024-08-26 12:22:52 +00:00
parent 9ea4aaaf37
commit 0209e3fa76
No known key found for this signature in database
GPG Key ID: 56709255DC7EC728
5 changed files with 24 additions and 13 deletions

View File

@ -87,11 +87,23 @@ interface Desktop extends ChromeBrowser {
export type Environment = Browser | Server | Desktop;
function setupRuntimeConfig() {
if (!process.env.RUNTIME_CONFIG) {
return;
}
// registered by [webpack.DefinePlugin]
const runtimeConfig = JSON.parse(process.env.RUNTIME_CONFIG ?? '');
runtimeFlagsSchema.parse(runtimeConfig);
globalThis.runtimeConfig = runtimeConfig;
}
export function setupGlobal() {
if (globalThis.$AFFINE_SETUP) {
return;
}
runtimeFlagsSchema.parse(runtimeConfig);
setupRuntimeConfig();
let environment: Environment;
const isDebug = process.env.NODE_ENV === 'development';

View File

@ -4,10 +4,6 @@
"private": true,
"version": "0.16.0",
"exports": {
"./app": "./src/app.tsx",
"./router": "./src/router.tsx",
"./bootstrap/register-plugins": "./src/bootstrap/register-plugins.ts",
"./hooks/*": "./src/hooks/*",
"./*": "./src/*"
},
"dependencies": {

View File

@ -1,12 +1,14 @@
import { getRuntimeConfig } from '@affine/cli/src/webpack/runtime-config';
import { setupGlobal } from '@affine/env/global';
globalThis.runtimeConfig = getRuntimeConfig({
distribution: 'browser',
mode: 'development',
channel: 'canary',
static: false,
});
process.env.RUNTIME_CONFIG = JSON.stringify(
getRuntimeConfig({
distribution: 'browser',
mode: 'development',
channel: 'canary',
static: false,
})
);
if (typeof window !== 'undefined') {
window.location.search = '?prefixUrl=http://127.0.0.1:3010/';

View File

@ -346,7 +346,9 @@ export const createConfiguration: (
process.env.MIXPANEL_TOKEN
),
'process.env.DEBUG_JOTAI': JSON.stringify(process.env.DEBUG_JOTAI),
runtimeConfig: JSON.stringify(runtimeConfig),
'process.env.RUNTIME_CONFIG': JSON.stringify(
JSON.stringify(runtimeConfig)
),
}),
buildFlags.distribution === 'admin'
? null

View File

@ -48,7 +48,6 @@
"skipLibCheck": true, // skip all type checks for .d.ts files
"paths": {
"@affine/core/*": ["./packages/frontend/core/src/*"],
"@affine/core": ["./packages/frontend/core/src/index.ts"],
"@affine/admin/*": ["./packages/frontend/admin/src/*"],
"@affine/admin/components/ui/*": [
"./packages/frontend/admin/src/components/ui/*"