56 lines
1.5 KiB
JavaScript
56 lines
1.5 KiB
JavaScript
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import PropTypes from 'prop-types';
|
|
import { Helmet } from'react-helmet';
|
|
import { getSettings } from 'soapbox/actions/settings';
|
|
|
|
const getNotifTotals = state => {
|
|
const notifications = state.getIn(['notifications', 'unread'], 0);
|
|
const chats = state.get('chats').reduce((acc, curr) => acc + Math.min(curr.get('unread', 0), 1), 0);
|
|
const reports = state.getIn(['admin', 'openReports']).count();
|
|
const approvals = state.getIn(['admin', 'awaitingApproval']).count();
|
|
return notifications + chats + reports + approvals;
|
|
};
|
|
|
|
const mapStateToProps = state => {
|
|
const settings = getSettings(state);
|
|
|
|
return {
|
|
siteTitle: state.getIn(['instance', 'title']),
|
|
unreadCount: getNotifTotals(state),
|
|
demetricator: settings.get('demetricator'),
|
|
};
|
|
};
|
|
|
|
class SoapboxHelmet extends React.Component {
|
|
|
|
static propTypes = {
|
|
siteTitle: PropTypes.string,
|
|
children: PropTypes.node,
|
|
unreadCount: PropTypes.number,
|
|
demetricator: PropTypes.bool,
|
|
};
|
|
|
|
addCounter = title => {
|
|
const { unreadCount, demetricator } = this.props;
|
|
if (unreadCount < 1 || demetricator) return title;
|
|
return `(${unreadCount}) ${title}`;
|
|
}
|
|
|
|
render() {
|
|
const { siteTitle, children } = this.props;
|
|
|
|
return (
|
|
<Helmet
|
|
titleTemplate={this.addCounter(`%s | ${siteTitle}`)}
|
|
defaultTitle={this.addCounter(siteTitle)}
|
|
defer={false}
|
|
>
|
|
{children}
|
|
</Helmet>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
export default connect(mapStateToProps)(SoapboxHelmet);
|