perf: app.ts

This commit is contained in:
abearxiong 2025-01-05 04:29:28 +08:00
parent 362ab9b952
commit 14224ccd61
4 changed files with 19 additions and 19 deletions

View File

@ -24,7 +24,7 @@
"zustand": "^5.0.2" "zustand": "^5.0.2"
}, },
"devDependencies": { "devDependencies": {
"@kevisual/router": "0.0.6-alpha-4", "@kevisual/router": "0.0.6-alpha-5",
"@kevisual/store": "0.0.1-alpha.9", "@kevisual/store": "0.0.1-alpha.9",
"@kevisual/types": "^0.0.5", "@kevisual/types": "^0.0.5",
"@types/react": "^19.0.2", "@types/react": "^19.0.2",
@ -33,6 +33,6 @@
"@vitejs/plugin-react": "^4.3.4", "@vitejs/plugin-react": "^4.3.4",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"react": "^19.0.0", "react": "^19.0.0",
"vite": "^6.0.6" "vite": "^6.0.7"
} }
} }

View File

@ -0,0 +1,12 @@
import type { Page } from '@kevisual/store/page';
import type { QueryRouterServer } from '@kevisual/router';
export const page = useContextKey('page', () => {
return new window.Page({
basename: '',
}) as unknown as Page;
});
export const app = useContextKey('app', () => {
console.error('app not found');
return null as unknown as QueryRouterServer;
});

View File

@ -1,18 +1,10 @@
import { useContextKey } from '@kevisual/store/config'; import { page, app } from './app.ts';
import { Page } from '@kevisual/store/page';
import { QueryRouterServer } from '@kevisual/router';
export const render = ({ renderRoot }) => { export const render = ({ renderRoot }) => {
renderRoot.innerHTML = ` renderRoot.innerHTML = `
<h1>Hello, World!</h1> <h1>Hello, World!</h1>
`; `;
}; };
const page = useContextKey('page', () => {
return new Page({
basename: '',
});
});
if (page) { if (page) {
page.addPage('/app-template', 'home'); page.addPage('/app-template', 'home');
page.subscribe('home', () => { page.subscribe('home', () => {
@ -22,10 +14,6 @@ if (page) {
}); });
} }
const app = useContextKey('app', () => {
console.error('app not found');
return null as unknown as QueryRouterServer;
});
if (app) { if (app) {
app app
.route({ .route({
@ -46,5 +34,6 @@ if (app) {
render({ render({
renderRoot, renderRoot,
}); });
}).addTo(app); })
.addTo(app);
} }

View File

@ -22,6 +22,7 @@ export default defineConfig({
'@': path.resolve(__dirname, './src'), '@': path.resolve(__dirname, './src'),
}, },
}, },
base: isDev ? '/' : './',
define: { define: {
DEV_SERVER: JSON.stringify(isDev), DEV_SERVER: JSON.stringify(isDev),
BUILD_TIME: JSON.stringify(BUILD_TIME), BUILD_TIME: JSON.stringify(BUILD_TIME),
@ -40,12 +41,10 @@ export default defineConfig({
'/api': { '/api': {
target: 'https://kevisual.xiongxiao.me', target: 'https://kevisual.xiongxiao.me',
changeOrigin: true, changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, '/api'),
}, },
'/system': { '/system/lib': {
target: 'https://kevisual.xiongxiao.me', target: 'https://kevisual.xiongxiao.me',
changeOrigin: true, changeOrigin: true,
rewrite: (path) => path.replace(/^\/system/, '/system'),
}, },
}, },
}, },