mirror of
https://github.com/tencentmusic/supersonic.git
synced 2026-04-18 12:24:21 +08:00
162 lines
4.7 KiB
TypeScript
162 lines
4.7 KiB
TypeScript
import RightContent from '@/components/RightContent';
|
||
import S2Icon, { ICON } from '@/components/S2Icon';
|
||
import type { Settings as LayoutSettings } from '@ant-design/pro-components';
|
||
import { Space, Spin, ConfigProvider } from 'antd';
|
||
import ScaleLoader from 'react-spinners/ScaleLoader';
|
||
import { history, RunTimeLayoutConfig } from '@umijs/max';
|
||
import defaultSettings from '../config/defaultSettings';
|
||
import settings from '../config/themeSettings';
|
||
import { queryCurrentUser } from './services/user';
|
||
import { deleteUrlQuery, isMobile, getToken } from '@/utils/utils';
|
||
import { publicPath } from '../config/defaultSettings';
|
||
import { Copilot } from 'supersonic-chat-sdk';
|
||
import { configProviderTheme } from '../config/themeSettings';
|
||
export { request } from './services/request';
|
||
import { BASE_TITLE } from '@/common/constants';
|
||
import { ROUTE_AUTH_CODES } from '../config/routes';
|
||
import AppPage from './pages/index';
|
||
|
||
const replaceRoute = '/';
|
||
|
||
const getRunningEnv = async () => {
|
||
try {
|
||
const response = await fetch(`${publicPath}supersonic.config.json`);
|
||
const config = await response.json();
|
||
return config;
|
||
} catch (error) {
|
||
console.warn('无法获取配置文件: 运行时环境将以semantic启动');
|
||
}
|
||
};
|
||
|
||
Spin.setDefaultIndicator(
|
||
<ScaleLoader color={settings['primary-color']} height={25} width={2} radius={2} margin={2} />,
|
||
);
|
||
|
||
const getAuthCodes = (params: any) => {
|
||
const { currentUser } = params;
|
||
const codes = [];
|
||
if (currentUser?.superAdmin) {
|
||
codes.push(ROUTE_AUTH_CODES.SYSTEM_ADMIN);
|
||
}
|
||
return codes;
|
||
};
|
||
|
||
export async function getInitialState(): Promise<{
|
||
settings?: LayoutSettings;
|
||
currentUser?: API.CurrentUser;
|
||
fetchUserInfo?: () => Promise<API.CurrentUser | undefined>;
|
||
codeList?: string[];
|
||
authCodes?: string[];
|
||
}> {
|
||
const fetchUserInfo = async () => {
|
||
try {
|
||
const { code, data } = await queryCurrentUser();
|
||
if (code === 200) {
|
||
return { ...data, staffName: data.staffName || data.name };
|
||
}
|
||
} catch (error) {}
|
||
return undefined;
|
||
};
|
||
|
||
let currentUser: any;
|
||
if (!window.location.pathname.includes('login')) {
|
||
currentUser = await fetchUserInfo();
|
||
}
|
||
|
||
if (currentUser) {
|
||
localStorage.setItem('user', currentUser.staffName);
|
||
if (currentUser.orgName) {
|
||
localStorage.setItem('organization', currentUser.orgName);
|
||
}
|
||
}
|
||
|
||
const authCodes = getAuthCodes({
|
||
currentUser,
|
||
});
|
||
|
||
return {
|
||
fetchUserInfo,
|
||
currentUser,
|
||
settings: defaultSettings,
|
||
authCodes,
|
||
};
|
||
}
|
||
|
||
// export async function patchRoutes({ routes }) {
|
||
// const config = await getRunningEnv();
|
||
// if (config && config.env) {
|
||
// window.RUNNING_ENV = config.env;
|
||
// const { env } = config;
|
||
// const target = routes[0].routes;
|
||
// if (env) {
|
||
// const envRoutes = traverseRoutes(target, env);
|
||
// // 清空原本route;
|
||
// target.splice(0, 99);
|
||
// // 写入根据环境转换过的的route
|
||
// target.push(...envRoutes);
|
||
// }
|
||
// } else {
|
||
// const target = routes[0].routes;
|
||
// // start-standalone模式不存在env,在此模式下不显示chatSetting
|
||
// const envRoutes = target.filter((item: any) => {
|
||
// return !['chatSetting'].includes(item.name);
|
||
// });
|
||
// target.splice(0, 99);
|
||
// target.push(...envRoutes);
|
||
// }
|
||
// }
|
||
|
||
export function onRouteChange() {
|
||
setTimeout(() => {
|
||
let title = window.document.title;
|
||
if (!title.toLowerCase().endsWith(BASE_TITLE.toLowerCase())) {
|
||
window.document.title = `${title}-${BASE_TITLE}`;
|
||
}
|
||
}, 100);
|
||
}
|
||
|
||
export const layout: RunTimeLayoutConfig = (params) => {
|
||
const { initialState } = params as any;
|
||
return {
|
||
onMenuHeaderClick: (e) => {
|
||
e.preventDefault();
|
||
history.push(replaceRoute);
|
||
},
|
||
logo: (
|
||
<Space>
|
||
<S2Icon
|
||
icon={ICON.iconlogobiaoshi}
|
||
size={30}
|
||
color="#1672fa"
|
||
style={{ display: 'inline-block', marginTop: 8 }}
|
||
/>
|
||
<div className="logo" style={{ position: 'relative', top: '-2px' }}>
|
||
SuperSonic
|
||
</div>
|
||
</Space>
|
||
),
|
||
contentStyle: { ...(initialState?.contentStyle || {}) },
|
||
rightContentRender: () => <RightContent />,
|
||
disableContentMargin: true,
|
||
// menuHeaderRender: undefined,
|
||
childrenRender: (dom) => {
|
||
return (
|
||
<ConfigProvider theme={configProviderTheme}>
|
||
<div
|
||
style={{
|
||
height: location.pathname.includes('chat') ? 'calc(100vh - 56px)' : undefined,
|
||
}}
|
||
>
|
||
<AppPage dom={dom} />
|
||
{/* {dom} */}
|
||
{history.location.pathname !== '/chat' && !isMobile && (
|
||
<Copilot token={getToken() || ''} isDeveloper />
|
||
)}
|
||
</div>
|
||
</ConfigProvider>
|
||
);
|
||
},
|
||
...initialState?.settings,
|
||
};
|
||
};
|