RightContent.js 6.44 KB
Newer Older
jim's avatar
jim committed
1
import React, { PureComponent } from 'react';
2
import { FormattedMessage, formatMessage } from 'umi/locale';
3
import { Spin, Tag, Menu, Icon, Avatar, Tooltip } from 'antd';
jim's avatar
jim committed
4 5 6 7
import moment from 'moment';
import groupBy from 'lodash/groupBy';
import NoticeIcon from '../NoticeIcon';
import HeaderSearch from '../HeaderSearch';
8
import HeaderDropdown from '../HeaderDropdown';
9
import SelectLang from '../SelectLang';
jim's avatar
jim committed
10 11 12 13 14 15 16 17
import styles from './index.less';

export default class GlobalHeaderRight extends PureComponent {
  getNoticeData() {
    const { notices = [] } = this.props;
    if (notices.length === 0) {
      return {};
    }
jim's avatar
jim committed
18
    const newNotices = notices.map(notice => {
jim's avatar
jim committed
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
      const newNotice = { ...notice };
      if (newNotice.datetime) {
        newNotice.datetime = moment(notice.datetime).fromNow();
      }
      if (newNotice.id) {
        newNotice.key = newNotice.id;
      }
      if (newNotice.extra && newNotice.status) {
        const color = {
          todo: '',
          processing: 'blue',
          urgent: 'red',
          doing: 'gold',
        }[newNotice.status];
        newNotice.extra = (
          <Tag color={color} style={{ marginRight: 0 }}>
            {newNotice.extra}
          </Tag>
        );
      }
      return newNotice;
    });
    return groupBy(newNotices, 'type');
  }
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
43

44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
  getUnreadData = noticeData => {
    const unreadMsg = {};
    Object.entries(noticeData).forEach(([key, value]) => {
      if (!unreadMsg[key]) {
        unreadMsg[key] = 0;
      }
      if (Array.isArray(value)) {
        unreadMsg[key] = value.filter(item => !item.read).length;
      }
    });
    return unreadMsg;
  };

  changeReadState = clickedItem => {
    const { id } = clickedItem;
    const { dispatch } = this.props;
    dispatch({
      type: 'global/changeNoticeReadState',
      payload: id,
    });
  };

jim's avatar
jim committed
66 67 68 69 70 71 72
  render() {
    const {
      currentUser,
      fetchingNotices,
      onNoticeVisibleChange,
      onMenuClick,
      onNoticeClear,
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
73
      theme,
jim's avatar
jim committed
74 75 76 77
    } = this.props;
    const menu = (
      <Menu className={styles.menu} selectedKeys={[]} onClick={onMenuClick}>
        <Menu.Item key="userCenter">
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
78 79
          <Icon type="user" />
          <FormattedMessage id="menu.account.center" defaultMessage="account center" />
jim's avatar
jim committed
80 81
        </Menu.Item>
        <Menu.Item key="userinfo">
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
82 83
          <Icon type="setting" />
          <FormattedMessage id="menu.account.settings" defaultMessage="account settings" />
jim's avatar
jim committed
84 85
        </Menu.Item>
        <Menu.Item key="triggerError">
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
86 87
          <Icon type="close-circle" />
          <FormattedMessage id="menu.account.trigger" defaultMessage="Trigger Error" />
jim's avatar
jim committed
88 89 90
        </Menu.Item>
        <Menu.Divider />
        <Menu.Item key="logout">
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
91
          <Icon type="logout" />
92
          <FormattedMessage id="menu.account.logout" defaultMessage="logout" />
jim's avatar
jim committed
93 94 95 96
        </Menu.Item>
      </Menu>
    );
    const noticeData = this.getNoticeData();
97
    const unreadMsg = this.getUnreadData(noticeData);
jim's avatar
jim committed
98
    let className = styles.right;
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
99
    if (theme === 'dark') {
jim's avatar
jim committed
100
      className = `${styles.right}  ${styles.dark}`;
jim's avatar
jim committed
101 102
    }
    return (
jim's avatar
jim committed
103
      <div className={className}>
jim's avatar
jim committed
104 105
        <HeaderSearch
          className={`${styles.action} ${styles.search}`}
106
          placeholder={formatMessage({ id: 'component.globalHeader.search' })}
107 108 109 110 111
          dataSource={[
            formatMessage({ id: 'component.globalHeader.search.example1' }),
            formatMessage({ id: 'component.globalHeader.search.example2' }),
            formatMessage({ id: 'component.globalHeader.search.example3' }),
          ]}
jim's avatar
jim committed
112
          onSearch={value => {
jim's avatar
jim committed
113 114
            console.log('input', value); // eslint-disable-line
          }}
jim's avatar
jim committed
115
          onPressEnter={value => {
jim's avatar
jim committed
116 117 118
            console.log('enter', value); // eslint-disable-line
          }}
        />
119
        <Tooltip title={formatMessage({ id: 'component.globalHeader.help' })}>
jim's avatar
jim committed
120 121
          <a
            target="_blank"
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
122
            href="https://pro.ant.design/docs/getting-started"
jim's avatar
jim committed
123 124 125 126 127 128 129 130
            rel="noopener noreferrer"
            className={styles.action}
          >
            <Icon type="question-circle-o" />
          </a>
        </Tooltip>
        <NoticeIcon
          className={styles.action}
131
          count={currentUser.unreadCount}
jim's avatar
jim committed
132 133
          onItemClick={(item, tabProps) => {
            console.log(item, tabProps); // eslint-disable-line
134
            this.changeReadState(item, tabProps);
jim's avatar
jim committed
135
          }}
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
136 137 138 139
          locale={{
            emptyText: formatMessage({ id: 'component.noticeIcon.empty' }),
            clear: formatMessage({ id: 'component.noticeIcon.clear' }),
          }}
jim's avatar
jim committed
140 141 142
          onClear={onNoticeClear}
          onPopupVisibleChange={onNoticeVisibleChange}
          loading={fetchingNotices}
wingsico's avatar
wingsico committed
143
          clearClose
jim's avatar
jim committed
144 145
        >
          <NoticeIcon.Tab
146
            count={unreadMsg.notification}
147
            list={noticeData.notification}
148
            title={formatMessage({ id: 'component.globalHeader.notification' })}
149
            name="notification"
150
            emptyText={formatMessage({ id: 'component.globalHeader.notification.empty' })}
jim's avatar
jim committed
151 152 153
            emptyImage="https://gw.alipayobjects.com/zos/rmsportal/wAhyIChODzsoKIOBHcBk.svg"
          />
          <NoticeIcon.Tab
154
            count={unreadMsg.message}
155
            list={noticeData.message}
156
            title={formatMessage({ id: 'component.globalHeader.message' })}
157
            name="message"
158
            emptyText={formatMessage({ id: 'component.globalHeader.message.empty' })}
jim's avatar
jim committed
159 160 161
            emptyImage="https://gw.alipayobjects.com/zos/rmsportal/sAuJeJzSKbUmHfBQRzmZ.svg"
          />
          <NoticeIcon.Tab
162
            count={unreadMsg.event}
163
            list={noticeData.event}
164
            title={formatMessage({ id: 'component.globalHeader.event' })}
165
            name="event"
166
            emptyText={formatMessage({ id: 'component.globalHeader.event.empty' })}
jim's avatar
jim committed
167 168 169 170
            emptyImage="https://gw.alipayobjects.com/zos/rmsportal/HsIsxMZiWKrNUavQUXqx.svg"
          />
        </NoticeIcon>
        {currentUser.name ? (
171
          <HeaderDropdown overlay={menu}>
jim's avatar
jim committed
172
            <span className={`${styles.action} ${styles.account}`}>
jim's avatar
jim committed
173 174 175 176 177 178
              <Avatar
                size="small"
                className={styles.avatar}
                src={currentUser.avatar}
                alt="avatar"
              />
jim's avatar
jim committed
179 180
              <span className={styles.name}>{currentUser.name}</span>
            </span>
181
          </HeaderDropdown>
jim's avatar
jim committed
182
        ) : (
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
183
          <Spin size="small" style={{ marginLeft: 8, marginRight: 8 }} />
jim's avatar
jim committed
184
        )}
185
        <SelectLang className={styles.action} />
jim's avatar
jim committed
186 187 188 189
      </div>
    );
  }
}