mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +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
43 lines
1.2 KiB
Markdown
43 lines
1.2 KiB
Markdown
---
|
|
order: -1
|
|
title:
|
|
zh-CN: Hooks 调用(推荐)
|
|
en-US: Hooks usage (recommended)
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
通过 `message.useMessage` 创建支持读取 context 的 `contextHolder`。请注意,我们推荐通过顶层注册的方式代替 `message` 静态方法,因为静态方法无法消费上下文,因而 ConfigProvider 的数据也不会生效。
|
|
|
|
## en-US
|
|
|
|
Use `message.useMessage` to get `contextHolder` with context accessible issue. Please note that, we recommend to use top level registration instead of `message` static method, because static method cannot consume context, and ConfigProvider data will not work.
|
|
|
|
```jsx
|
|
import { message, Button } from 'antd';
|
|
|
|
const Context = React.createContext({ name: 'Default' });
|
|
|
|
function Demo() {
|
|
const [messageApi, contextHolder] = message.useMessage();
|
|
const info = () => {
|
|
messageApi.open({
|
|
type: 'info',
|
|
content: <Context.Consumer>{({ name }) => `Hello, ${name}!`}</Context.Consumer>,
|
|
duration: 1,
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Context.Provider value={{ name: 'Ant Design' }}>
|
|
{contextHolder}
|
|
<Button type="primary" onClick={info}>
|
|
Display normal message
|
|
</Button>
|
|
</Context.Provider>
|
|
);
|
|
}
|
|
|
|
export default Demo;
|
|
```
|