mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-15 17:31:25 +08:00
2341a25d91
* more refactor * chore: motion support * chore: tmp test * test: Hooks * chore: static function * tmp of it * all of it * mv prefix * chore: clean up * chore: clean up * more test case * test: all base test * test: all test case * init * refactor: rm notification.open instance related code * follow up * refactor: singlton * test: notification test case * refactor to destroy * refactor: message base * test: part test case * test: more * test: more * test: all test * chore: clean up * docs: reorder * chore: fix lint * test: fix test case * chore: add act * chore: back * chore: fix style * test: notification test * test: more and more * test: fix more test * test: index * test: more & more * test: fix placement * test: fix coverage * chore: clean up * chore: bundle size * fix: 17 * chore: more * test: message * test: more test * fix: lint * test: rm class in static * chore: clean up * test: coverage * chore: fix lint
68 lines
2.0 KiB
Markdown
Executable File
68 lines
2.0 KiB
Markdown
Executable File
---
|
|
order: -1
|
|
title:
|
|
zh-CN: Hooks 调用(推荐)
|
|
en-US: Hooks usage (recommended)
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
通过 `notification.useNotification` 创建支持读取 context 的 `contextHolder`。请注意,我们推荐通过顶层注册的方式代替 `message` 静态方法,因为静态方法无法消费上下文,因而 ConfigProvider 的数据也不会生效。
|
|
|
|
## en-US
|
|
|
|
Use `notification.useNotification` to get `contextHolder` with context accessible issue. Please note that, we recommend to use top level registration instead of `notification` static method, because static method cannot consume context, and ConfigProvider data will not work.
|
|
|
|
```jsx
|
|
import { Button, notification, Divider, Space } from 'antd';
|
|
import {
|
|
RadiusUpleftOutlined,
|
|
RadiusUprightOutlined,
|
|
RadiusBottomleftOutlined,
|
|
RadiusBottomrightOutlined,
|
|
} from '@ant-design/icons';
|
|
|
|
const Context = React.createContext({ name: 'Default' });
|
|
|
|
const Demo = () => {
|
|
const [api, contextHolder] = notification.useNotification();
|
|
|
|
const openNotification = placement => {
|
|
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 Demo;
|
|
```
|