popover.md 4.83 KB
Newer Older
1 2 3 4 5
---
order: 2
title: 带浮层卡片
---

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

Shuai Chen's avatar
Shuai Chen committed
8
```jsx
nikogu's avatar
nikogu committed
9
import NoticeIcon from 'ant-design-pro/lib/NoticeIcon';
afc163's avatar
afc163 committed
10
import { Tag } from 'antd';
11

12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
const data = [{
  id: '000000001',
  avatar: 'https://gw.alipayobjects.com/zos/rmsportal/ThXAXghbEsBCCSDihZxY.png',
  title: '你收到了 14 份新周报',
  datetime: '2017-08-09',
  type: 'notification',
}, {
  id: '000000002',
  avatar: 'https://gw.alipayobjects.com/zos/rmsportal/OKJXDXrmkNshAMvwtvhu.png',
  title: '你推荐的 曲妮妮 已通过第三轮面试',
  datetime: '2017-08-08',
  type: 'notification',
}, {
  id: '000000003',
  avatar: 'https://gw.alipayobjects.com/zos/rmsportal/kISTdvpyTAhtGxpovNWd.png',
  title: '这种模板可以区分多种通知类型',
  datetime: '2017-08-07',
  read: true,
  type: 'notification',
}, {
  id: '000000004',
  avatar: 'https://gw.alipayobjects.com/zos/rmsportal/GvqBnKhFgObvnSGkDsje.png',
  title: '左侧图标用于区分不同的类型',
  datetime: '2017-08-07',
  type: 'notification',
}, {
  id: '000000005',
  avatar: 'https://gw.alipayobjects.com/zos/rmsportal/ThXAXghbEsBCCSDihZxY.png',
  title: '内容不要超过两行字,超出时自动截断',
  datetime: '2017-08-07',
  type: 'notification',
}, {
  id: '000000006',
  avatar: 'https://gw.alipayobjects.com/zos/rmsportal/fcHMVNCjPOsbUGdEduuv.jpeg',
  title: '曲丽丽 评论了你',
  description: '描述信息描述信息描述信息',
  datetime: '2017-08-07',
  type: 'message',
  clickClose: true,
}, {
  id: '000000007',
  avatar: 'https://gw.alipayobjects.com/zos/rmsportal/fcHMVNCjPOsbUGdEduuv.jpeg',
  title: '朱偏右 回复了你',
  description: '这种模板用于提醒谁与你发生了互动,左侧放『谁』的头像',
  datetime: '2017-08-07',
  type: 'message',
  clickClose: true,
}, {
  id: '000000008',
  avatar: 'https://gw.alipayobjects.com/zos/rmsportal/fcHMVNCjPOsbUGdEduuv.jpeg',
  title: '标题',
  description: '这种模板用于提醒谁与你发生了互动,左侧放『谁』的头像',
  datetime: '2017-08-07',
  type: 'message',
  clickClose: true,
}, {
  id: '000000009',
  title: '任务名称',
  description: '任务需要在 2017-01-12 20:00 前启动',
  extra: '未开始',
  status: 'todo',
  type: 'event',
}, {
  id: '000000010',
  title: '第三方紧急代码变更',
  description: '冠霖提交于 2017-01-06,需在 2017-01-07 前完成代码变更任务',
  extra: '马上到期',
  status: 'urgent',
  type: 'event',
}, {
  id: '000000011',
  title: '信息安全考试',
  description: '指派竹尔于 2017-01-09 前完成更新并发布',
  extra: '已耗时 8 天',
  status: 'doing',
  type: 'event',
}, {
  id: '000000012',
  title: 'ABCD 版本发布',
  description: '冠霖提交于 2017-01-06,需在 2017-01-07 前完成代码变更任务',
  extra: '进行中',
  status: 'processing',
  type: 'event',
}];
96

afc163's avatar
afc163 committed
97 98 99 100 101 102 103 104
function onItemClick(item, tabProps) {
  console.log(item, tabProps);
}

function onClear(tabTitle) {
  console.log(tabTitle);
}

105 106 107 108
function getNoticeData(notices) {
  if (notices.length === 0) {
    return {};
  }
Shuai Chen's avatar
Shuai Chen committed
109
  const newNotices = notices.map(notice => {
110 111 112 113 114 115
    const newNotice = { ...notice };
    // transform id to item key
    if (newNotice.id) {
      newNotice.key = newNotice.id;
    }
    if (newNotice.extra && newNotice.status) {
Shuai Chen's avatar
Shuai Chen committed
116
      const color = {
117 118 119 120
        todo: '',
        processing: 'blue',
        urgent: 'red',
        doing: 'gold',
Shuai Chen's avatar
Shuai Chen committed
121 122 123 124 125 126
      }[newNotice.status];
      newNotice.extra = (
        <Tag color={color} style={{ marginRight: 0 }}>
          {newNotice.extra}
        </Tag>
      );
127 128 129
    }
    return newNotice;
  });
Shuai Chen's avatar
Shuai Chen committed
130 131 132 133 134 135 136
  return newNotices.reduce((pre, data) => {
    if (!pre[data.type]) {
      pre[data.type] = [];
    }
    pre[data.type].push(data);
    return pre;
  }, {});
137 138 139
}

const noticeData = getNoticeData(data);
Shuai Chen's avatar
Shuai Chen committed
140
const Demo = () => (
afc163's avatar
afc163 committed
141 142 143 144 145 146 147 148 149 150
  <div
    style={{
      textAlign: 'right',
      height: '64px',
      lineHeight: '64px',
      boxShadow: '0 1px 4px rgba(0,21,41,.12)',
      padding: '0 32px',
      width: '400px',
    }}
  >
Shuai Chen's avatar
Shuai Chen committed
151
    <NoticeIcon className="notice-icon" count={5} onItemClick={onItemClick} onClear={onClear}>
afc163's avatar
afc163 committed
152
      <NoticeIcon.Tab
153 154
        list={noticeData.notification}
        title="notification"
afc163's avatar
afc163 committed
155
        emptyText="你已查看所有通知"
afc163's avatar
afc163 committed
156
        emptyImage="https://gw.alipayobjects.com/zos/rmsportal/wAhyIChODzsoKIOBHcBk.svg"
afc163's avatar
afc163 committed
157 158
      />
      <NoticeIcon.Tab
159 160
        list={noticeData.message}
        title="message"
afc163's avatar
afc163 committed
161
        emptyText="您已读完所有消息"
afc163's avatar
afc163 committed
162
        emptyImage="https://gw.alipayobjects.com/zos/rmsportal/sAuJeJzSKbUmHfBQRzmZ.svg"
afc163's avatar
afc163 committed
163 164
      />
      <NoticeIcon.Tab
165 166
        list={noticeData.event}
        title="event"
afc163's avatar
afc163 committed
167 168 169
        emptyText="你已完成所有待办"
        emptyImage="https://gw.alipayobjects.com/zos/rmsportal/HsIsxMZiWKrNUavQUXqx.svg"
      />
170 171
    </NoticeIcon>
  </div>
Shuai Chen's avatar
Shuai Chen committed
172
);
173

Shuai Chen's avatar
Shuai Chen committed
174
ReactDOM.render(<Demo />, mountNode);
175
```