2016-11-20 10:39:18 -08:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import Column from '../ui/components/column';
|
2017-01-19 01:54:18 -08:00
|
|
|
import { expandNotifications } from '../../actions/notifications';
|
2016-11-20 10:39:18 -08:00
|
|
|
import NotificationContainer from './containers/notification_container';
|
|
|
|
import { ScrollContainer } from 'react-router-scroll';
|
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2017-01-02 05:09:57 -08:00
|
|
|
import ColumnSettingsContainer from './containers/column_settings_container';
|
|
|
|
import { createSelector } from 'reselect';
|
|
|
|
import Immutable from 'immutable';
|
2016-11-20 10:39:18 -08:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
title: { id: 'column.notifications', defaultMessage: 'Notifications' }
|
|
|
|
});
|
|
|
|
|
2017-01-02 05:09:57 -08:00
|
|
|
const getNotifications = createSelector([
|
2017-01-09 05:00:55 -08:00
|
|
|
state => Immutable.List(state.getIn(['settings', 'notifications', 'shows']).filter(item => !item).keys()),
|
2017-01-02 05:09:57 -08:00
|
|
|
state => state.getIn(['notifications', 'items'])
|
|
|
|
], (excludedTypes, notifications) => notifications.filterNot(item => excludedTypes.includes(item.get('type'))));
|
|
|
|
|
2016-11-20 10:39:18 -08:00
|
|
|
const mapStateToProps = state => ({
|
2017-01-25 19:30:40 -08:00
|
|
|
notifications: getNotifications(state),
|
|
|
|
isLoading: state.getIn(['notifications', 'isLoading'], true)
|
2016-11-20 10:39:18 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
const Notifications = React.createClass({
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
notifications: ImmutablePropTypes.list.isRequired,
|
2016-11-21 01:03:55 -08:00
|
|
|
dispatch: React.PropTypes.func.isRequired,
|
2017-01-02 05:09:57 -08:00
|
|
|
trackScroll: React.PropTypes.bool,
|
2017-01-25 19:30:40 -08:00
|
|
|
intl: React.PropTypes.object.isRequired,
|
|
|
|
isLoading: React.PropTypes.bool
|
2016-11-20 10:39:18 -08:00
|
|
|
},
|
|
|
|
|
2016-12-13 04:42:10 -08:00
|
|
|
getDefaultProps () {
|
|
|
|
return {
|
|
|
|
trackScroll: true
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2016-11-20 10:39:18 -08:00
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
|
|
|
handleScroll (e) {
|
|
|
|
const { scrollTop, scrollHeight, clientHeight } = e.target;
|
2017-01-25 19:30:40 -08:00
|
|
|
const offset = scrollHeight - scrollTop - clientHeight;
|
2016-11-20 10:39:18 -08:00
|
|
|
|
2017-01-25 19:30:40 -08:00
|
|
|
if (250 > offset && !this.props.isLoading) {
|
2016-11-20 10:39:18 -08:00
|
|
|
this.props.dispatch(expandNotifications());
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
render () {
|
2016-11-21 01:03:55 -08:00
|
|
|
const { intl, notifications, trackScroll } = this.props;
|
|
|
|
|
|
|
|
const scrollableArea = (
|
|
|
|
<div className='scrollable' onScroll={this.handleScroll}>
|
|
|
|
<div>
|
|
|
|
{notifications.map(item => <NotificationContainer key={item.get('id')} notification={item} accountId={item.get('account')} />)}
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-11-20 10:39:18 -08:00
|
|
|
);
|
2016-11-21 01:03:55 -08:00
|
|
|
|
|
|
|
if (trackScroll) {
|
|
|
|
return (
|
|
|
|
<Column icon='bell' heading={intl.formatMessage(messages.title)}>
|
2017-01-24 04:04:12 -08:00
|
|
|
<ColumnSettingsContainer />
|
2016-11-21 01:03:55 -08:00
|
|
|
<ScrollContainer scrollKey='notifications'>
|
|
|
|
{scrollableArea}
|
|
|
|
</ScrollContainer>
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
<Column icon='bell' heading={intl.formatMessage(messages.title)}>
|
2017-01-02 05:09:57 -08:00
|
|
|
<ColumnSettingsContainer />
|
2016-11-21 01:03:55 -08:00
|
|
|
{scrollableArea}
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
2016-11-20 10:39:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(mapStateToProps)(injectIntl(Notifications));
|