2016-11-09 23:47:47 +00:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
2016-10-12 11:17:17 +00:00
|
|
|
import StatusListContainer from '../ui/containers/status_list_container';
|
2016-11-09 23:47:47 +00:00
|
|
|
import Column from '../ui/components/column';
|
2016-10-07 14:00:11 +00:00
|
|
|
import {
|
|
|
|
refreshTimeline,
|
2016-11-09 23:47:47 +00:00
|
|
|
updateTimeline,
|
|
|
|
deleteFromTimelines
|
|
|
|
} from '../../actions/timelines';
|
2016-10-07 14:00:11 +00:00
|
|
|
|
|
|
|
const PublicTimeline = React.createClass({
|
|
|
|
|
2016-10-16 17:23:17 +00:00
|
|
|
propTypes: {
|
|
|
|
dispatch: React.PropTypes.func.isRequired
|
|
|
|
},
|
|
|
|
|
2016-10-07 14:00:11 +00: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-09 23:47:47 +00:00
|
|
|
switch(data.type) {
|
|
|
|
case 'update':
|
|
|
|
return dispatch(updateTimeline('public', JSON.parse(data.message)));
|
|
|
|
case 'delete':
|
|
|
|
return dispatch(deleteFromTimelines(data.id));
|
|
|
|
}
|
2016-10-07 14:00:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
if (typeof this.subscription !== 'undefined') {
|
|
|
|
this.subscription.unsubscribe();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<Column icon='globe' heading='Public'>
|
2016-10-12 11:17:17 +00:00
|
|
|
<StatusListContainer type='public' />
|
2016-10-07 14:00:11 +00:00
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-10-12 11:17:17 +00:00
|
|
|
export default connect()(PublicTimeline);
|