about summary refs log tree commit diff
path: root/app/assets/javascripts/components/features/ui/containers/status_list_container.jsx
blob: 213435a06c7940476e21332e8b812b769e7f3eb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { connect }           from 'react-redux';
import StatusList            from '../../../components/status_list';
import { expandTimeline }    from '../../../actions/timelines';

const mapStateToProps = (state, props) => ({
  statusIds: state.getIn(['timelines', props.type])
});

const mapDispatchToProps = function (dispatch, props) {
  return {
    onScrollToBottom () {
      dispatch(expandTimeline(props.type));
    }
  };
};

export default connect(mapStateToProps, mapDispatchToProps)(StatusList);