mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 07:09:55 +08:00
ffbb19e090
* chore: enable tsc for demos * chore: site lint * chore: fix lint
80 lines
2.2 KiB
TypeScript
80 lines
2.2 KiB
TypeScript
import * as React from 'react';
|
|
import type { MenuProps } from 'antd';
|
|
import { Button, Dropdown } from 'antd';
|
|
import { FormattedMessage } from 'dumi';
|
|
import { DownOutlined } from '@ant-design/icons';
|
|
import type { SharedProps } from './interface';
|
|
|
|
const smallStyle = { fontSize: 12, color: '#777', marginLeft: '0.3em' };
|
|
|
|
export function getEcosystemGroup(): Exclude<MenuProps['items'], undefined> {
|
|
return [
|
|
{
|
|
label: (
|
|
<a href="https://charts.ant.design" target="_blank" rel="noopener noreferrer">
|
|
<FormattedMessage id="app.header.menu.charts" />
|
|
</a>
|
|
),
|
|
key: 'charts',
|
|
},
|
|
{
|
|
label: (
|
|
<a href="http://pro.ant.design" target="_blank" rel="noopener noreferrer">
|
|
<FormattedMessage id="app.header.menu.pro.v4" />
|
|
</a>
|
|
),
|
|
key: 'pro',
|
|
},
|
|
{
|
|
label: (
|
|
<a href="http://procomponents.ant.design" target="_blank" rel="noopener noreferrer">
|
|
<FormattedMessage id="app.header.menu.pro.components" />
|
|
</a>
|
|
),
|
|
key: 'procomponents',
|
|
},
|
|
{
|
|
label: (
|
|
<a href="http://ng.ant.design" target="_blank" rel="noopener noreferrer">
|
|
Ant Design of Angular
|
|
<span style={smallStyle}>
|
|
(
|
|
<FormattedMessage id="app.implementation.community" />)
|
|
</span>
|
|
</a>
|
|
),
|
|
key: 'ng',
|
|
},
|
|
{
|
|
label: (
|
|
<a href="http://antdv.com" target="_blank" rel="noopener noreferrer">
|
|
Ant Design of Vue
|
|
<span style={smallStyle}>
|
|
(
|
|
<FormattedMessage id="app.implementation.community" />)
|
|
</span>
|
|
</a>
|
|
),
|
|
key: 'vue',
|
|
},
|
|
];
|
|
}
|
|
|
|
export default (props: SharedProps) => {
|
|
const downstyle = props.isRTL ? '-1px 2px 0 0' : '-1px 0 0 2px';
|
|
return (
|
|
<Dropdown menu={{ items: getEcosystemGroup() }} placement="bottomRight">
|
|
<Button size="small" className="header-button">
|
|
<FormattedMessage id="app.header.menu.more" />
|
|
<DownOutlined
|
|
style={{
|
|
fontSize: '9px',
|
|
margin: downstyle,
|
|
verticalAlign: 'middle',
|
|
}}
|
|
/>
|
|
</Button>
|
|
</Dropdown>
|
|
);
|
|
};
|