entire timelines (only fetch since last known ID). Side effect: account timelines no longer update in real-time
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			748 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			748 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { connect }         from 'react-redux';
 | 
						|
import PureRenderMixin     from 'react-addons-pure-render-mixin';
 | 
						|
import StatusListContainer from '../ui/containers/status_list_container';
 | 
						|
import Column              from '../ui/components/column';
 | 
						|
import { refreshTimeline } from '../../actions/timelines';
 | 
						|
 | 
						|
const MentionsTimeline = React.createClass({
 | 
						|
 | 
						|
  propTypes: {
 | 
						|
    dispatch: React.PropTypes.func.isRequired
 | 
						|
  },
 | 
						|
 | 
						|
  mixins: [PureRenderMixin],
 | 
						|
 | 
						|
  componentWillMount () {
 | 
						|
    this.props.dispatch(refreshTimeline('mentions'));
 | 
						|
  },
 | 
						|
 | 
						|
  render () {
 | 
						|
    return (
 | 
						|
      <Column icon='at' heading='Mentions'>
 | 
						|
        <StatusListContainer {...this.props} type='mentions' />
 | 
						|
      </Column>
 | 
						|
    );
 | 
						|
  },
 | 
						|
 | 
						|
});
 | 
						|
 | 
						|
export default connect()(MentionsTimeline);
 |