ant-design/components/notification/demo/hooks.md

70 lines
1.8 KiB
Markdown
Raw Normal View History

---
order: 8
title:
zh-CN: 通过 Hooks 获取上下文
en-US: Get context with hooks
---
## zh-CN
通过 `notification.useNotification` 创建支持读取 context 的 `contextHolder`
## en-US
Use `notification.useNotification` to get `contextHolder` with context accessible issue.
```tsx
import {
RadiusBottomleftOutlined,
RadiusBottomrightOutlined,
2022-05-23 14:37:16 +08:00
RadiusUpleftOutlined,
RadiusUprightOutlined,
} from '@ant-design/icons';
2022-05-23 14:37:16 +08:00
import { Button, Divider, notification, Space } from 'antd';
2022-07-04 22:09:54 +08:00
import type { NotificationPlacement } from 'antd/es/notification';
2022-05-23 14:37:16 +08:00
import React from 'react';
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,
});
};
return (
<Context.Provider value={{ name: 'Ant Design' }}>
{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;
```