Files
gpustack-ui/src/layouts/rightRender.tsx
T
2024-11-22 10:00:34 +08:00

302 lines
7.8 KiB
TypeScript

// @ts-nocheck
import avatarImg from '@/assets/images/avatar.png';
import externalLinks from '@/constants/external-links';
import langConfigMap from '@/locales/lang-config-map';
import {
DiscordOutlined,
GithubOutlined,
GlobalOutlined,
HomeOutlined,
InfoCircleOutlined,
LogoutOutlined,
QuestionCircleOutlined,
ReadOutlined,
SettingOutlined
} from '@ant-design/icons';
import { getAllLocales, history, setLocale } from '@umijs/max';
import { Avatar, Menu, Spin } from 'antd';
import _ from 'lodash';
export const getRightRenderContent = (opts: {
runtimeConfig: any;
loading: boolean;
initialState: any;
collapsed: boolean;
setInitialState: any;
siderWidth: number;
intl: any;
}) => {
const { intl, collapsed, siderWidth, showUpgrade } = opts;
const allLocals = getAllLocales();
if (opts.runtimeConfig.rightRender) {
return opts.runtimeConfig.rightRender(
opts.initialState,
opts.setInitialState,
opts.runtimeConfig
);
}
const showAvatar =
opts.initialState?.currentUser?.avatar ||
opts.initialState?.currentUser?.username ||
opts.runtimeConfig.logout;
const disableAvatarImg = opts.initialState?.currentUser?.avatar === false;
const nameClassName = disableAvatarImg
? 'umi-plugin-layout-name umi-plugin-layout-hide-avatar-img'
: 'umi-plugin-layout-name';
const avatar = showAvatar ? (
<span className="umi-plugin-layout-action">
{!disableAvatarImg ? (
<Avatar
size="small"
className="umi-plugin-layout-avatar"
src={opts.initialState?.currentUser?.avatar || avatarImg}
alt="avatar"
/>
) : null}
<span className={nameClassName}>
{opts.initialState?.currentUser?.username}
</span>
</span>
) : null;
if (opts.loading) {
return (
<div className="umi-plugin-layout-right">
<Spin size="small" style={{ marginLeft: 8, marginRight: 8 }} />
</div>
);
}
const helpList = [
{
key: 'site',
icon: <HomeOutlined />,
label: 'GPUStack',
url: externalLinks.site
},
{
key: 'github',
icon: <GithubOutlined />,
label: 'GitHub',
url: externalLinks.github
},
{
key: 'Discord',
icon: <DiscordOutlined />,
label: 'Discord',
url: externalLinks.discord
},
{
key: 'docs',
icon: <ReadOutlined />,
label: intl.formatMessage({ id: 'common.button.docs' }),
url: externalLinks.documentation
},
{
key: 'version',
icon: <InfoCircleOutlined />,
label: intl.formatMessage({ id: 'common.button.version' })
}
];
const helpMenu = {
selectedKeys: [],
className: collapsed
? 'user-menu-container user-menu-collapsed'
: 'user-menu-container',
mode: 'vertical',
expandIcon: false,
triggerSubMenuAction: 'hover',
items: [
{
key: 'help',
icon: <QuestionCircleOutlined />,
label: (
<span className="sub-title ">
<span className="flex-center">
<span>{intl?.formatMessage?.({ id: 'common.button.help' })}</span>
{showUpgrade && (
<span
className="m-l-5"
style={{
display: 'flex',
width: 8,
height: 8,
borderRadius: 4,
backgroundColor: 'var(--ant-orange-5)'
}}
></span>
)}
</span>
</span>
),
children: helpList.map((item) => ({
key: item.key,
label: (
<span className="flex flex-center">
{item.icon}
{item.key === 'version' ? (
<>
<a className="m-l-8">{item.label}</a>
{showUpgrade && (
<span className="new-icon">
<span className="text">
{intl.formatMessage({ id: 'common.text.new' })}
</span>
</span>
)}
</>
) : (
<a
className="m-l-8"
href={item.url}
target="_blank"
rel="noreferrer"
>
{item.label}
</a>
)}
</span>
),
onClick() {
if (item.key === 'version') {
opts.runtimeConfig.showVersion();
}
if (item.key === 'shortcuts') {
opts.runtimeConfig.showShortcuts();
}
}
}))
}
]
};
const langMenu = {
selectedKeys: [],
className: collapsed
? 'user-menu-container user-menu-collapsed'
: 'user-menu-container',
mode: 'vertical',
expandIcon: false,
// inlineCollapsed: collapsed,
triggerSubMenuAction: 'hover',
items: [
{
key: 'lang',
icon: <GlobalOutlined />,
label: (
<span className="sub-title">
{intl?.formatMessage?.({ id: 'common.settings.language' })}
</span>
),
children: allLocals.map((key) => ({
key,
label: (
<span className="flex flex-center">
<span>{_.get(langConfigMap, [key, 'label'])}</span>
</span>
),
onClick: () => {
setLocale(key, false);
}
}))
}
]
};
const userMenu = {
selectedKeys: [],
className: collapsed
? 'user-menu-container user-menu-collapsed'
: 'user-menu-container',
mode: 'vertical',
expandIcon: false,
// inlineCollapsed: collapsed,
triggerSubMenuAction: 'hover',
items: [
{
label: '',
key: 'user',
className: 'user-avatar',
icon: (
<span>
<Avatar
size={28}
style={{
color: 'var(--ant-color-text)',
fontSize: 16
}}
>
{_.toUpper(opts.initialState?.currentUser?.username?.charAt(0))}
</Avatar>
{!collapsed && (
<span
className="m-l-8 font-size-14"
style={{ fontWeight: 'var(--font-weight-normal)' }}
>
{opts.initialState?.currentUser?.username}
</span>
)}
</span>
),
children: [
{
key: 'settings',
label: (
<span className="flex flex-center">
<SettingOutlined />
<span className="m-l-8" style={{ marginLeft: 8 }}>
{intl?.formatMessage?.({ id: 'common.button.settings' })}
</span>
</span>
),
onClick: () => {
history.push('/profile');
}
},
{
key: 'logout',
label: (
<span className="flex flex-center">
<LogoutOutlined />
<span className="m-l-8" style={{ marginLeft: 8 }}>
{intl?.formatMessage?.({ id: 'common.button.logout' })}
</span>
</span>
),
onClick: () => {
opts?.runtimeConfig?.logout?.(opts.initialState.currentUser);
}
}
]
}
]
};
return (
<div>
<Menu
{...helpMenu}
style={{
width: collapsed ? 40 : `calc(${siderWidth}px - 16px)`
}}
></Menu>
<Menu
{...langMenu}
style={{
width: collapsed ? 40 : `calc(${siderWidth}px - 16px)`
}}
></Menu>
<Menu
{...userMenu}
style={{
width: collapsed ? 40 : `calc(${siderWidth}px - 16px)`,
marginTop: 20
}}
></Menu>
</div>
);
};