1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-12 12:22:13 +00:00
seahub/frontend/src/components/common/notification.js
杨顺强 e57701fa38 Prop type check repair (#2919)
* repair intent check wraning

* change doublequote to singlequote, add semicolon

* optimized code

* modify type-check wraning
2019-01-31 17:37:02 +08:00

68 lines
2.1 KiB
JavaScript

import React from 'react';
import { seafileAPI } from '../../utils/seafile-api';
import { gettext, siteRoot } from '../../utils/constants';
class Notification extends React.Component {
constructor(props) {
super(props);
this.state = {
showNotice: false,
notice_html: '',
unseenCount: 0,
};
}
componentDidMount() {
seafileAPI.getUnseenNotificationCount().then(res => {
this.setState({unseenCount: res.data.unseen_count});
});
}
onClick = () => {
if (this.state.showNotice) {
seafileAPI.updateNotifications();
this.setState({
showNotice: false,
unseenCount: 0
});
} else {
this.loadNotices();
this.setState({showNotice: true});
}
}
loadNotices = () => {
seafileAPI.listPopupNotices().then(res => {
this.setState({
notice_html: res.data.notice_html
});
});
}
render() {
const { notice_html } = this.state;
return (
<div id="notifications">
<a href="#" onClick={this.onClick} className="no-deco" id="notice-icon" title="Notifications" aria-label="Notifications">
<span className="sf2-icon-bell"></span>
<span className={`num ${this.state.unseenCount ? '' : 'hide'}`}>{this.state.unseenCount}</span>
</a>
<div id="notice-popover" className={`sf-popover ${this.state.showNotice ? '': 'hide'}`}>
<div className="outer-caret up-outer-caret"><div className="inner-caret"></div></div>
<div className="sf-popover-hd ovhd">
<h3 className="sf-popover-title title">{gettext('Notifications')}</h3>
<a href="#" onClick={this.onClick} title={gettext('Close')} aria-label={gettext('Close')} className="sf-popover-close js-close sf2-icon-x1 action-icon float-right"></a>
</div>
<div className="sf-popover-con">
<ul className="notice-list" dangerouslySetInnerHTML={{__html: notice_html}}></ul>
<a href={siteRoot + 'notification/list/'} className="view-all">{gettext('See All Notifications')}</a>
</div>
</div>
</div>
);
}
}
export default Notification;