ant-design/components/notification/demo/with-btn.md

63 lines
1.3 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
title:
zh-CN: 自定义按钮
en-US: Custom close button
2016-03-31 09:40:55 +08:00
---
2015-07-28 15:40:28 +08:00
2016-08-17 11:07:02 +08:00
## zh-CN
2015-07-29 20:08:16 +08:00
自定义关闭按钮的样式和文字。
2015-07-28 15:40:28 +08:00
2016-08-17 11:07:02 +08:00
## en-US
To customize the style or font of the close button.
```tsx
import { Button, notification, Space } from 'antd';
import React from 'react';
2015-07-28 15:40:28 +08:00
2016-12-14 17:57:15 +08:00
const close = () => {
2019-05-07 14:57:32 +08:00
console.log(
'Notification was closed. Either the close button was clicked or duration time elapsed.',
);
};
2015-08-06 20:55:30 +08:00
const App: React.FC = () => {
const [api, contextHolder] = notification.useNotification();
const openNotification = () => {
const key = `open${Date.now()}`;
const btn = (
<Space>
<Button type="link" size="small" onClick={() => notification.destroy()}>
Destroy All
</Button>
<Button type="primary" size="small" onClick={() => notification.destroy(key)}>
Confirm
</Button>
</Space>
);
api.open({
message: 'Notification Title',
description:
'A function will be be called after the notification is closed (automatically after the "duration" time of manually).',
btn,
key,
onClose: close,
});
};
return (
<>
{contextHolder}
<Button type="primary" onClick={openNotification}>
Open the notification box
</Button>
</>
);
2015-07-30 21:04:52 +08:00
};
2015-07-28 15:40:28 +08:00
export default App;
2019-05-07 14:57:32 +08:00
```