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.
54 lines
1.6 KiB
54 lines
1.6 KiB
import React, { useMemo } from 'react';
|
|
import {
|
|
RadiusBottomleftOutlined,
|
|
RadiusBottomrightOutlined,
|
|
RadiusUpleftOutlined,
|
|
RadiusUprightOutlined,
|
|
} from '@ant-design/icons';
|
|
import { Button, Divider, notification, Space } from 'antd';
|
|
import type { NotificationPlacement } from 'antd/es/notification/interface';
|
|
|
|
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')}>
|
|
<RadiusUpleftOutlined />
|
|
topLeft
|
|
</Button>
|
|
<Button type="primary" onClick={() => openNotification('topRight')}>
|
|
<RadiusUprightOutlined />
|
|
topRight
|
|
</Button>
|
|
</Space>
|
|
<Divider />
|
|
<Space>
|
|
<Button type="primary" onClick={() => openNotification('bottomLeft')}>
|
|
<RadiusBottomleftOutlined />
|
|
bottomLeft
|
|
</Button>
|
|
<Button type="primary" onClick={() => openNotification('bottomRight')}>
|
|
<RadiusBottomrightOutlined />
|
|
bottomRight
|
|
</Button>
|
|
</Space>
|
|
</Context.Provider>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|