about summary refs log tree commit diff
path: root/app/assets/javascripts/components/features/ui/containers/status_list_container.jsx
blob: 045cc59d1cedc88828da533c3015a9fa3901d6fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import { connect }           from 'react-redux';
import StatusList            from '../../../components/status_list';
import { replyCompose }      from '../../../actions/compose';
import {
  reblog,
  favourite,
  unreblog,
  unfavourite
}                            from '../../../actions/interactions';
import { expandTimeline }    from '../../../actions/timelines';
import { makeGetTimeline }   from '../../../selectors';
import { deleteStatus }      from '../../../actions/statuses';

const makeMapStateToProps = () => {
  const getTimeline = makeGetTimeline();

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

  return mapStateToProps;
};

const mapDispatchToProps = function (dispatch, props) {
  return {
    onReply (status) {
      dispatch(replyCompose(status));
    },

    onFavourite (status) {
      if (status.get('favourited')) {
        dispatch(unfavourite(status));
      } else {
        dispatch(favourite(status));
      }
    },

    onReblog (status) {
      if (status.get('reblogged')) {
        dispatch(unreblog(status));
      } else {
        dispatch(reblog(status));
      }
    },

    onScrollToBottom () {
      dispatch(expandTimeline(props.type));
    },

    onDelete (status) {
      dispatch(deleteStatus(status.get('id')));
    }
  };
};

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