2016-11-10 00:47:47 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
2016-10-12 13:17:17 +02:00
|
|
|
import StatusListContainer from '../ui/containers/status_list_container';
|
2016-11-10 00:47:47 +01:00
|
|
|
import Column from '../ui/components/column';
|
2016-10-07 16:00:11 +02:00
|
|
|
import {
|
|
|
|
refreshTimeline,
|
2016-11-10 00:47:47 +01:00
|
|
|
updateTimeline,
|
|
|
|
deleteFromTimelines
|
|
|
|
} from '../../actions/timelines';
|
2016-11-18 15:36:16 +01:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
title: { id: 'column.public', defaultMessage: 'Public' }
|
|
|
|
});
|
2016-10-07 16:00:11 +02:00
|
|
|
|
|
|
|
const PublicTimeline = React.createClass({
|
|
|
|
|
2016-10-16 19:23:17 +02:00
|
|
|
propTypes: {
|
|
|
|
dispatch: React.PropTypes.func.isRequired
|
|
|
|
},
|
|
|
|
|
2016-10-07 16:00:11 +02:00
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
|
|
|
componentWillMount () {
|
|
|
|
const { dispatch } = this.props;
|
|
|
|
|
|
|
|
dispatch(refreshTimeline('public'));
|
|
|
|
|
|
|
|
if (typeof App !== 'undefined') {
|
|
|
|
this.subscription = App.cable.subscriptions.create('PublicChannel', {
|
|
|
|
|
|
|
|
received (data) {
|
2016-11-10 00:47:47 +01:00
|
|
|
switch(data.type) {
|
|
|
|
case 'update':
|
|
|
|
return dispatch(updateTimeline('public', JSON.parse(data.message)));
|
|
|
|
case 'delete':
|
|
|
|
return dispatch(deleteFromTimelines(data.id));
|
|
|
|
}
|
2016-10-07 16:00:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
if (typeof this.subscription !== 'undefined') {
|
|
|
|
this.subscription.unsubscribe();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
render () {
|
2016-11-16 17:20:52 +01:00
|
|
|
const { intl } = this.props;
|
|
|
|
|
2016-10-07 16:00:11 +02:00
|
|
|
return (
|
2016-11-18 15:36:16 +01:00
|
|
|
<Column icon='globe' heading={intl.formatMessage(messages.title)}>
|
2016-10-12 13:17:17 +02:00
|
|
|
<StatusListContainer type='public' />
|
2016-10-07 16:00:11 +02:00
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-11-16 17:20:52 +01:00
|
|
|
export default connect()(injectIntl(PublicTimeline));
|