2016-12-15 16:10:36 +02:00
|
|
|
const React = require('react');
|
|
|
|
const ReactRedux = require('react-redux');
|
2017-01-23 16:00:10 +02:00
|
|
|
const PeopleSection = require('@components/people-list');
|
2017-01-18 19:00:59 +02:00
|
|
|
const selectors = require('@state/selectors');
|
2016-12-20 21:06:02 +02:00
|
|
|
const Section = require('./section');
|
2017-01-23 16:00:10 +02:00
|
|
|
const actions = require('@state/actions');
|
2016-12-15 16:10:36 +02:00
|
|
|
|
|
|
|
const {
|
|
|
|
connect
|
|
|
|
} = ReactRedux;
|
|
|
|
|
2017-01-18 19:00:59 +02:00
|
|
|
const {
|
2017-01-23 16:00:10 +02:00
|
|
|
peopleByOrgIdSelector,
|
|
|
|
orgUISelector
|
2017-01-18 19:00:59 +02:00
|
|
|
} = selectors;
|
|
|
|
|
2017-01-23 16:00:10 +02:00
|
|
|
const {
|
|
|
|
handleInviteToggle
|
|
|
|
} = actions;
|
2016-12-15 16:10:36 +02:00
|
|
|
|
2016-12-20 21:06:02 +02:00
|
|
|
const People = (props) => {
|
2017-01-18 19:00:59 +02:00
|
|
|
|
2016-12-20 21:06:02 +02:00
|
|
|
return (
|
|
|
|
<Section {...props}>
|
2017-01-23 16:00:10 +02:00
|
|
|
<PeopleSection {...props} />
|
2016-12-20 21:06:02 +02:00
|
|
|
</Section>
|
|
|
|
);
|
2016-12-15 16:10:36 +02:00
|
|
|
};
|
|
|
|
|
2017-01-18 19:00:59 +02:00
|
|
|
const mapStateToProps = (state, {
|
|
|
|
params = {}
|
|
|
|
}) => ({
|
2017-01-23 16:00:10 +02:00
|
|
|
people: peopleByOrgIdSelector(params.org)(state),
|
|
|
|
orgUI: orgUISelector(state)
|
2017-01-18 19:00:59 +02:00
|
|
|
});
|
2016-12-15 16:10:36 +02:00
|
|
|
|
2017-01-23 16:00:10 +02:00
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
|
|
handleToggle: () => dispatch(handleInviteToggle())
|
|
|
|
});
|
2016-12-15 16:10:36 +02:00
|
|
|
|
2017-01-18 19:00:59 +02:00
|
|
|
module.exports = connect(
|
|
|
|
mapStateToProps,
|
|
|
|
mapDispatchToProps
|
|
|
|
)(People);
|