tachybase_todo/packages/client/src/user/CurrentUser.tsx
2022-02-24 00:04:41 +08:00

40 lines
1.1 KiB
TypeScript

import { Menu } from 'antd';
import React from 'react';
import { useTranslation } from 'react-i18next';
import { useHistory } from 'react-router-dom';
import { useDesignable } from '..';
import { ProfileAction } from './ProfileAction';
export const CurrentUser = () => {
const history = useHistory();
const { reset } = useDesignable();
const { i18n } = useTranslation();
return (
<div style={{ display: 'inline-block' }}>
<Menu selectable={false} mode={'horizontal'} theme={'dark'}>
<Menu.SubMenu key={'current-user'} title={'超级管理员'}>
<ProfileAction />
<Menu.Item></Menu.Item>
<Menu.Item
onClick={() => {
i18n.changeLanguage(i18n.language === 'en-US' ? 'zh-CN' : 'en-US');
// reset();
window.location.reload();
}}
>
</Menu.Item>
<Menu.Divider />
<Menu.Item
onClick={() => {
history.push('/signin');
}}
>
</Menu.Item>
</Menu.SubMenu>
</Menu>
</div>
);
};