You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

208 lines
5.8 KiB

import { AvatarDropdown, AvatarName, Question, SelectLang } from '@/components';
8 months ago
import { current } from '@/services/matrix/admin';
import { LinkOutlined } from '@ant-design/icons';
8 months ago
import { MenuDataItem, SettingDrawer } from '@ant-design/pro-components';
import { Link, history } from '@umijs/max';
8 months ago
import { appList } from '@/services/matrix/admin';
import type { Settings as LayoutSettings } from '@ant-design/pro-components';
import type { RunTimeLayoutConfig } from '@umijs/max';
8 months ago
import defaultSettings from '../config/defaultSettings';
import access from './access';
8 months ago
import { errorConfig } from './requestErrorConfig';
const isDev = process.env.NODE_ENV === 'development';
const loginPath = '/user/login';
/**
* @see https://umijs.org/zh-CN/plugins/plugin-initial-state
* */
export async function getInitialState(): Promise<{
settings?: Partial<LayoutSettings>;
currentUser?: API.MatrixAdmin;
loading?: boolean;
fetchUserInfo?: () => Promise<API.MatrixAdmin | undefined>;
}> {
const fetchUserInfo = async () => {
try {
const msg = await current({
skipErrorHandler: true,
});
return msg.data;
} catch (error) {
history.push(loginPath);
}
return undefined;
};
// 如果不是登录页面,执行
const { location } = history;
if (location.pathname !== loginPath) {
const currentUser = await fetchUserInfo();
return {
fetchUserInfo,
currentUser,
settings: defaultSettings as Partial<LayoutSettings>,
};
}
return {
fetchUserInfo,
settings: defaultSettings as Partial<LayoutSettings>,
};
}
// ProLayout 支持的api https://procomponents.ant.design/components/layout
export const layout: RunTimeLayoutConfig = ({ initialState, setInitialState }) => {
return {
8 months ago
menu: {
// 每当 initialState?.currentUser?.userid 发生修改时重新执行 request
params: {
userId: initialState?.currentUser?.id,
},
request: async () => {
const apps = await appList();
const menuData: MenuDataItem[] = [];
apps.data?.forEach((x: any) => {
8 months ago
menuData.push({
path: '/advList/' + x.code,
name: x.name,
access: 'canAdmin',
component: './AdvRecordList',
});
menuData.push({
path: '/app/' + x.code,
name: x.name,
access: 'canDeviceOwner',
component: './DeviceOwnerApp',
});
});
menuData.push({
path: '/adminList',
name: '人员管理',
access: 'canAdmin',
});
menuData.push({
path: '/bind',
name: '绑定设备',
access: 'canDeviceOwner',
});
7 months ago
menuData.push({
path: '/appList',
name: '应用列表',
access: 'canAdmin',
});
menuData.push({
path: '/super',
name: '魔法之地',
access: 'superAdmin',
});
8 months ago
return menuData;
},
},
// 添加权限校验逻辑
menuDataRender: (menuData) =>
menuData.map((item) => {
const val = item.access;
if (!val) {
return item;
}
const accessData: { [key: string]: boolean | 0 | undefined } = access(initialState);
if (!accessData[val]) {
return {
...item,
hideInMenu: true,
};
}
return item;
}),
8 months ago
actionsRender: () => [<Question key="doc" />, <SelectLang key="SelectLang" />],
avatarProps: {
// src: initialState?.currentUser?.avatar,
title: <AvatarName />,
render: (_, avatarChildren) => {
return <AvatarDropdown>{avatarChildren}</AvatarDropdown>;
},
},
// waterMarkProps: {
// content: initialState?.currentUser?.name,
// },
// footerRender: () => <Footer />,
8 months ago
onPageChange: () => {
const { location } = history;
// 如果没有登录,重定向到 login
if (!initialState?.currentUser && location.pathname !== loginPath) {
history.push(loginPath);
}
},
bgLayoutImgList: [
{
src: 'https://mdn.alipayobjects.com/yuyan_qk0oxh/afts/img/D2LWSqNny4sAAAAAAAAAAAAAFl94AQBr',
left: 85,
bottom: 100,
height: '303px',
},
{
src: 'https://mdn.alipayobjects.com/yuyan_qk0oxh/afts/img/C2TWRpJpiC0AAAAAAAAAAAAAFl94AQBr',
bottom: -68,
right: -45,
height: '303px',
},
{
src: 'https://mdn.alipayobjects.com/yuyan_qk0oxh/afts/img/F6vSTbj8KpYAAAAAAAAAAAAAFl94AQBr',
bottom: 0,
left: 0,
width: '331px',
},
],
links: isDev
? [
<Link key="openapi" to="/umi/plugin/openapi" target="_blank">
<LinkOutlined onPointerEnterCapture={undefined} onPointerLeaveCapture={undefined} />
8 months ago
<span>OpenAPI </span>
</Link>,
]
: [],
menuHeaderRender: undefined,
// 自定义 403 页面
// unAccessible: <div>unAccessible</div>,
// 增加一个 loading 的状态
childrenRender: (children) => {
// if (initialState?.loading) return <PageLoading />;
return (
<>
{children}
{isDev && (
<SettingDrawer
disableUrlParams
enableDarkTheme
settings={initialState?.settings}
onSettingChange={(settings) => {
setInitialState((preInitialState) => ({
...preInitialState,
settings,
}));
}}
/>
)}
</>
);
},
...initialState?.settings,
};
};
/**
* @name request
* axios ahooks useRequest
* @doc https://umijs.org/docs/max/request#配置
*/
export const request = {
...errorConfig,
};