2018-11-06 04:52:38 +11:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
|
|
|
import { injectIntl } from 'react-intl';
|
|
|
|
|
2018-11-06 04:52:38 +11:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2023-05-24 01:15:17 +10:00
|
|
|
import { connect } from 'react-redux';
|
2018-11-06 04:52:38 +11:00
|
|
|
import { createSelector } from 'reselect';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
|
|
|
import { setupListAdder, resetListAdder } from '../../actions/lists';
|
2018-11-06 04:52:38 +11:00
|
|
|
import NewListForm from '../lists/components/new_list_form';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
|
|
|
import Account from './components/account';
|
|
|
|
import List from './components/list';
|
2018-11-06 04:52:38 +11:00
|
|
|
// hack
|
|
|
|
|
|
|
|
const getOrderedLists = createSelector([state => state.get('lists')], lists => {
|
|
|
|
if (!lists) {
|
|
|
|
return lists;
|
|
|
|
}
|
|
|
|
|
|
|
|
return lists.toList().filter(item => !!item).sort((a, b) => a.get('title').localeCompare(b.get('title')));
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
listIds: getOrderedLists(state).map(list=>list.get('id')),
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
onInitialize: accountId => dispatch(setupListAdder(accountId)),
|
|
|
|
onReset: () => dispatch(resetListAdder()),
|
|
|
|
});
|
|
|
|
|
|
|
|
class ListAdder extends ImmutablePureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
accountId: PropTypes.string.isRequired,
|
|
|
|
onClose: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
onInitialize: PropTypes.func.isRequired,
|
|
|
|
onReset: PropTypes.func.isRequired,
|
|
|
|
listIds: ImmutablePropTypes.list.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
componentDidMount () {
|
|
|
|
const { onInitialize, accountId } = this.props;
|
|
|
|
onInitialize(accountId);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
const { onReset } = this.props;
|
|
|
|
onReset();
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { accountId, listIds } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='modal-root__modal list-adder'>
|
|
|
|
<div className='list-adder__account'>
|
|
|
|
<Account accountId={accountId} />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<NewListForm />
|
|
|
|
|
|
|
|
|
|
|
|
<div className='list-adder__lists'>
|
|
|
|
{listIds.map(ListId => <List key={ListId} listId={ListId} />)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-03-24 13:17:53 +11:00
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(injectIntl(ListAdder));
|