admin-vben/apps/web-antd/src/main.ts

61 lines
1.9 KiB
TypeScript
Raw Normal View History

import { initPreferences } from '@vben/preferences';
2024-05-19 13:20:42 +00:00
2024-06-01 15:15:29 +00:00
import { overridesPreferences } from './preferences';
2024-05-19 13:20:42 +00:00
2024-05-24 15:11:03 +00:00
/**
*
*/
async function initApplication() {
2024-06-01 15:15:29 +00:00
// name用于指定项目唯一标识
// 用于区分不同项目的偏好设置以及存储数据的key前缀以及其他一些需要隔离的数据
2024-05-24 15:11:03 +00:00
const env = import.meta.env.PROD ? 'prod' : 'dev';
const namespace = `${import.meta.env.VITE_APP_NAMESPACE}-${env}`;
2024-05-24 15:11:03 +00:00
// app偏好设置初始化
await initPreferences({
2024-05-24 15:11:03 +00:00
namespace,
2024-06-01 15:15:29 +00:00
overrides: overridesPreferences,
2024-05-19 13:20:42 +00:00
});
// 启动应用并挂载
// vue应用主要逻辑及视图
const { bootstrap } = await import('./bootstrap');
await bootstrap(namespace);
// 移除并销毁loading
2024-06-08 14:46:22 +00:00
destroyAppLoading();
}
/**
* loading
2024-06-30 06:09:44 +00:00
* index.html app
* cssloading
2024-06-30 06:09:44 +00:00
*
*/
2024-06-08 14:46:22 +00:00
function destroyAppLoading() {
// 查找全局 loading 元素
const loadingElement = document.querySelector('#__app-loading__');
2024-06-08 14:46:22 +00:00
if (loadingElement) {
2024-06-08 14:46:22 +00:00
// 添加隐藏类,触发过渡动画
loadingElement.classList.add('hidden');
2024-06-08 14:46:22 +00:00
// 查找所有需要移除的注入 loading 元素
const injectLoadingElements = document.querySelectorAll(
'[data-app-loading^="inject"]',
);
2024-06-08 14:46:22 +00:00
// 当过渡动画结束时,移除 loading 元素和所有注入的 loading 元素
loadingElement.addEventListener(
'transitionend',
() => {
2024-06-08 14:46:22 +00:00
loadingElement.remove(); // 移除 loading 元素
injectLoadingElements.forEach((el) => el.remove()); // 移除所有注入的 loading 元素
},
{ once: true },
2024-06-08 14:46:22 +00:00
); // 确保事件只触发一次
}
2024-05-19 13:20:42 +00:00
}
2024-05-24 15:11:03 +00:00
initApplication();