NoticeIcon通知菜单

用在导航工具栏上,作为整个产品统一的通知中心。

引用方式:

  1. import NoticeIcon from 'ant-design-pro/lib/NoticeIcon';

详细使用方式请参照:独立使用 pro 组件

代码演示

NoticeIcon 通知菜单 - 图1

通知图标

通常用在导航工具栏上。

  1. import NoticeIcon from 'ant-design-pro/lib/NoticeIcon';
  2. ReactDOM.render(<NoticeIcon count={5} />, mountNode);

NoticeIcon 通知菜单 - 图2

带浮层卡片

点击展开通知卡片,展现多种类型的通知,通常放在导航工具栏。

  1. import NoticeIcon from 'ant-design-pro/lib/NoticeIcon';
  2. import { Tag } from 'antd';
  3. const data = [
  4. {
  5. id: '000000001',
  6. avatar: 'https://gw.alipayobjects.com/zos/rmsportal/ThXAXghbEsBCCSDihZxY.png',
  7. title: '你收到了 14 份新周报',
  8. datetime: '2017-08-09',
  9. type: 'notification',
  10. },
  11. {
  12. id: '000000002',
  13. avatar: 'https://gw.alipayobjects.com/zos/rmsportal/OKJXDXrmkNshAMvwtvhu.png',
  14. title: '你推荐的 曲妮妮 已通过第三轮面试',
  15. datetime: '2017-08-08',
  16. type: 'notification',
  17. },
  18. {
  19. id: '000000003',
  20. avatar: 'https://gw.alipayobjects.com/zos/rmsportal/kISTdvpyTAhtGxpovNWd.png',
  21. title: '这种模板可以区分多种通知类型',
  22. datetime: '2017-08-07',
  23. read: true,
  24. type: 'notification',
  25. },
  26. {
  27. id: '000000004',
  28. avatar: 'https://gw.alipayobjects.com/zos/rmsportal/GvqBnKhFgObvnSGkDsje.png',
  29. title: '左侧图标用于区分不同的类型',
  30. datetime: '2017-08-07',
  31. type: 'notification',
  32. },
  33. {
  34. id: '000000005',
  35. avatar: 'https://gw.alipayobjects.com/zos/rmsportal/ThXAXghbEsBCCSDihZxY.png',
  36. title: '内容不要超过两行字,超出时自动截断',
  37. datetime: '2017-08-07',
  38. type: 'notification',
  39. },
  40. {
  41. id: '000000006',
  42. avatar: 'https://gw.alipayobjects.com/zos/rmsportal/fcHMVNCjPOsbUGdEduuv.jpeg',
  43. title: '曲丽丽 评论了你',
  44. description: '描述信息描述信息描述信息',
  45. datetime: '2017-08-07',
  46. type: 'message',
  47. clickClose: true,
  48. },
  49. {
  50. id: '000000007',
  51. avatar: 'https://gw.alipayobjects.com/zos/rmsportal/fcHMVNCjPOsbUGdEduuv.jpeg',
  52. title: '朱偏右 回复了你',
  53. description: '这种模板用于提醒谁与你发生了互动,左侧放『谁』的头像',
  54. datetime: '2017-08-07',
  55. type: 'message',
  56. clickClose: true,
  57. },
  58. {
  59. id: '000000008',
  60. avatar: 'https://gw.alipayobjects.com/zos/rmsportal/fcHMVNCjPOsbUGdEduuv.jpeg',
  61. title: '标题',
  62. description: '这种模板用于提醒谁与你发生了互动,左侧放『谁』的头像',
  63. datetime: '2017-08-07',
  64. type: 'message',
  65. clickClose: true,
  66. },
  67. {
  68. id: '000000009',
  69. title: '任务名称',
  70. description: '任务需要在 2017-01-12 20:00 前启动',
  71. extra: '未开始',
  72. status: 'todo',
  73. type: 'event',
  74. },
  75. {
  76. id: '000000010',
  77. title: '第三方紧急代码变更',
  78. description: '冠霖提交于 2017-01-06,需在 2017-01-07 前完成代码变更任务',
  79. extra: '马上到期',
  80. status: 'urgent',
  81. type: 'event',
  82. },
  83. {
  84. id: '000000011',
  85. title: '信息安全考试',
  86. description: '指派竹尔于 2017-01-09 前完成更新并发布',
  87. extra: '已耗时 8 天',
  88. status: 'doing',
  89. type: 'event',
  90. },
  91. {
  92. id: '000000012',
  93. title: 'ABCD 版本发布',
  94. description: '冠霖提交于 2017-01-06,需在 2017-01-07 前完成代码变更任务',
  95. extra: '进行中',
  96. status: 'processing',
  97. type: 'event',
  98. },
  99. ];
  100. function onItemClick(item, tabProps) {
  101. console.log(item, tabProps);
  102. }
  103. function onClear(tabTitle) {
  104. console.log(tabTitle);
  105. }
  106. function getNoticeData(notices) {
  107. if (notices.length === 0) {
  108. return {};
  109. }
  110. const newNotices = notices.map(notice => {
  111. const newNotice = { ...notice };
  112. // transform id to item key
  113. if (newNotice.id) {
  114. newNotice.key = newNotice.id;
  115. }
  116. if (newNotice.extra && newNotice.status) {
  117. const color = {
  118. todo: '',
  119. processing: 'blue',
  120. urgent: 'red',
  121. doing: 'gold',
  122. }[newNotice.status];
  123. newNotice.extra = (
  124. <Tag color={color} style={{ marginRight: 0 }}>
  125. {newNotice.extra}
  126. </Tag>
  127. );
  128. }
  129. return newNotice;
  130. });
  131. return newNotices.reduce((pre, data) => {
  132. if (!pre[data.type]) {
  133. pre[data.type] = [];
  134. }
  135. pre[data.type].push(data);
  136. return pre;
  137. }, {});
  138. }
  139. const noticeData = getNoticeData(data);
  140. const Demo = () => (
  141. <div
  142. style={{
  143. textAlign: 'right',
  144. height: '64px',
  145. lineHeight: '64px',
  146. boxShadow: '0 1px 4px rgba(0,21,41,.12)',
  147. padding: '0 32px',
  148. width: '400px',
  149. }}
  150. >
  151. <NoticeIcon className="notice-icon" count={5} onItemClick={onItemClick} onClear={onClear}>
  152. <NoticeIcon.Tab
  153. list={noticeData.notification}
  154. title="notification"
  155. emptyText="你已查看所有通知"
  156. emptyImage="https://gw.alipayobjects.com/zos/rmsportal/wAhyIChODzsoKIOBHcBk.svg"
  157. />
  158. <NoticeIcon.Tab
  159. list={noticeData.message}
  160. title="message"
  161. emptyText="您已读完所有消息"
  162. emptyImage="https://gw.alipayobjects.com/zos/rmsportal/sAuJeJzSKbUmHfBQRzmZ.svg"
  163. />
  164. <NoticeIcon.Tab
  165. list={noticeData.event}
  166. title="event"
  167. emptyText="你已完成所有待办"
  168. emptyImage="https://gw.alipayobjects.com/zos/rmsportal/HsIsxMZiWKrNUavQUXqx.svg"
  169. />
  170. </NoticeIcon>
  171. </div>
  172. );
  173. ReactDOM.render(<Demo />, mountNode);

API

参数说明类型默认值
count图标上的消息总数number-
belltranslate this please -> Change the bell IconReactNode<Icon type='bell' />
loading弹出卡片加载状态booleanfalse
onClear点击清空按钮的回调function(tabName)-
onItemClick点击列表项的回调function(item, tabProps)-
onPopupVisibleChange弹出卡片显隐的回调function(visible)-
onTabChange切换页签的回调function(tabTitle)-
onViewMore点击查看更多的回调function(tabProps, event)-
popupVisible控制弹层显隐boolean-
locale默认文案Object{ emptyText: 'No notifications', clear: 'Clear', viewMore: 'Loading more' }
clearClose点击清空按钮后关闭通知菜单booleanfalse

NoticeIcon.Tab

参数说明类型默认值
count当前 Tab 未读消息数量numberlist.length
emptyText针对每个 Tab 定制空数据文案ReactNode-
emptyImage针对每个 Tab 定制空数据图片string-
list列表数据,格式参照下表Array[]
showClear是否显示清空按钮booleantrue
showViewMore是否显示查看更多按钮booleanfalse
title消息分类的页签标题,实际的文案是 locale[title] || titlestring-

Tab data

参数说明类型默认值
avatar头像图片链接string | ReactNode-
title标题ReactNode-
description描述信息ReactNode-
datetime时间戳ReactNode-
extra额外信息,在列表项右上角ReactNode-
clickClose点击列表项关闭通知菜单booleanfalse