about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/report/containers/status_check_box_container.js
blob: 8997718a2aa46c8ea4b56f2e310b42c407162490 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { connect } from 'react-redux';
import StatusCheckBox from '../components/status_check_box';
import { toggleStatusReport } from '../../../actions/reports';
import Immutable from 'immutable';

const mapStateToProps = (state, { id }) => ({
  status: state.getIn(['statuses', id]),
  checked: state.getIn(['reports', 'new', 'status_ids'], Immutable.Set()).includes(id),
});

const mapDispatchToProps = (dispatch, { id }) => ({

  onToggle (e) {
    dispatch(toggleStatusReport(id, e.target.checked));
  },

});

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