mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 13:09:40 +08:00
e7aa014c31
* docs: init * chore: all types * docs: faq * chore: fix lint
69 lines
1.8 KiB
TypeScript
69 lines
1.8 KiB
TypeScript
import React, { useMemo } from 'react';
|
|
import {
|
|
RadiusBottomleftOutlined,
|
|
RadiusBottomrightOutlined,
|
|
RadiusUpleftOutlined,
|
|
RadiusUprightOutlined,
|
|
} from '@ant-design/icons';
|
|
import { Button, Divider, notification, Space } from 'antd';
|
|
import type { NotificationArgsProps } from 'antd';
|
|
|
|
type NotificationPlacement = NotificationArgsProps['placement'];
|
|
|
|
const Context = React.createContext({ name: 'Default' });
|
|
|
|
const App: React.FC = () => {
|
|
const [api, contextHolder] = notification.useNotification();
|
|
|
|
const openNotification = (placement: NotificationPlacement) => {
|
|
api.info({
|
|
message: `Notification ${placement}`,
|
|
description: <Context.Consumer>{({ name }) => `Hello, ${name}!`}</Context.Consumer>,
|
|
placement,
|
|
});
|
|
};
|
|
|
|
const contextValue = useMemo(() => ({ name: 'Ant Design' }), []);
|
|
|
|
return (
|
|
<Context.Provider value={contextValue}>
|
|
{contextHolder}
|
|
<Space>
|
|
<Button
|
|
type="primary"
|
|
onClick={() => openNotification('topLeft')}
|
|
icon={<RadiusUpleftOutlined />}
|
|
>
|
|
topLeft
|
|
</Button>
|
|
<Button
|
|
type="primary"
|
|
onClick={() => openNotification('topRight')}
|
|
icon={<RadiusUprightOutlined />}
|
|
>
|
|
topRight
|
|
</Button>
|
|
</Space>
|
|
<Divider />
|
|
<Space>
|
|
<Button
|
|
type="primary"
|
|
onClick={() => openNotification('bottomLeft')}
|
|
icon={<RadiusBottomleftOutlined />}
|
|
>
|
|
bottomLeft
|
|
</Button>
|
|
<Button
|
|
type="primary"
|
|
onClick={() => openNotification('bottomRight')}
|
|
icon={<RadiusBottomrightOutlined />}
|
|
>
|
|
bottomRight
|
|
</Button>
|
|
</Space>
|
|
</Context.Provider>
|
|
);
|
|
};
|
|
|
|
export default App;
|