import React, { PureComponent, Fragment } from 'react'; import ReactDOM from 'react-dom'; import { Icon, Tabs, Badge, Spin } from 'antd'; import classNames from 'classnames'; import HeaderDropdown from '../HeaderDropdown'; import List from './NoticeList'; import styles from './index.less'; const { TabPane } = Tabs; export default class NoticeIcon extends PureComponent { static Tab = TabPane; static defaultProps = { onItemClick: () => {}, onPopupVisibleChange: () => {}, onTabChange: () => {}, onClear: () => {}, onViewMore: () => {}, loading: false, clearClose: false, locale: { emptyText: 'No notifications', clear: 'Clear', viewMore: 'More', }, emptyImage: 'https://gw.alipayobjects.com/zos/rmsportal/wAhyIChODzsoKIOBHcBk.svg', }; state = { visible: false, }; onItemClick = (item, tabProps) => { const { onItemClick } = this.props; const { clickClose } = item; onItemClick(item, tabProps); if (clickClose) { this.popover.click(); } }; onClear = name => { const { onClear, clearClose } = this.props; onClear(name); if (clearClose) { this.popover.click(); } }; onTabChange = tabType => { const { onTabChange } = this.props; onTabChange(tabType); }; onViewMore = (tabProps, event) => { const { onViewMore } = this.props; onViewMore(tabProps, event); }; getNotificationBox() { const { children, loading, locale } = this.props; if (!children) { return null; } const panes = React.Children.map(children, child => { const { list, title, count, emptyText, emptyImage, showClear, showViewMore } = child.props; const len = list && list.length ? list.length : 0; const msgCount = count || count === 0 ? count : len; const localeTitle = locale[title] || title; const tabTitle = msgCount > 0 ? `${localeTitle} (${msgCount})` : localeTitle; return ( this.onClear(title)} onClick={item => this.onItemClick(item, child.props)} onViewMore={event => this.onViewMore(child.props, event)} showClear={showClear} showViewMore={showViewMore} title={title} /> ); }); return ( {panes} ); } handleVisibleChange = visible => { const { onPopupVisibleChange } = this.props; this.setState({ visible }); onPopupVisibleChange(visible); }; render() { const { className, count, popupVisible, bell } = this.props; const { visible } = this.state; const noticeButtonClass = classNames(className, styles.noticeButton); const notificationBox = this.getNotificationBox(); const NoticeBellIcon = bell || ; const trigger = ( {NoticeBellIcon} ); if (!notificationBox) { return trigger; } const popoverProps = {}; if ('popupVisible' in this.props) { popoverProps.visible = popupVisible; } return ( (this.popover = ReactDOM.findDOMNode(node))} // eslint-disable-line > {trigger} ); } }