2022-06-07 13:21:18 -07:00
|
|
|
import React, { useEffect } from 'react';
|
2022-06-02 11:51:09 -07:00
|
|
|
import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
|
|
|
|
import { createSelector } from 'reselect';
|
|
|
|
|
|
|
|
import { setupListAdder, resetListAdder } from 'soapbox/actions/lists';
|
|
|
|
import { CardHeader, CardTitle, Modal } from 'soapbox/components/ui';
|
|
|
|
import { useAppDispatch, useAppSelector } from 'soapbox/hooks';
|
|
|
|
|
|
|
|
import NewListForm from '../lists/components/new_list_form';
|
|
|
|
|
|
|
|
import Account from './components/account';
|
|
|
|
import List from './components/list';
|
|
|
|
|
|
|
|
import type { List as ImmutableList } from 'immutable';
|
|
|
|
import type { RootState } from 'soapbox/store';
|
|
|
|
import type { List as ListEntity } from 'soapbox/types/entities';
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
close: { id: 'lightbox.close', defaultMessage: 'Close' },
|
|
|
|
subheading: { id: 'lists.subheading', defaultMessage: 'Your lists' },
|
|
|
|
add: { id: 'lists.new.create', defaultMessage: 'Add List' },
|
|
|
|
});
|
|
|
|
|
|
|
|
// hack
|
|
|
|
const getOrderedLists = createSelector([(state: RootState) => state.lists], lists => {
|
|
|
|
if (!lists) {
|
|
|
|
return lists;
|
|
|
|
}
|
|
|
|
|
|
|
|
return lists.toList().filter(item => !!item).sort((a, b) => (a as ListEntity).title.localeCompare((b as ListEntity).title)) as ImmutableList<ListEntity>;
|
|
|
|
});
|
|
|
|
|
|
|
|
interface IListAdder {
|
|
|
|
accountId: string,
|
|
|
|
onClose: (type: string) => void,
|
|
|
|
}
|
|
|
|
|
|
|
|
const ListAdder: React.FC<IListAdder> = ({ accountId, onClose }) => {
|
|
|
|
const intl = useIntl();
|
|
|
|
const dispatch = useAppDispatch();
|
|
|
|
|
|
|
|
const listIds = useAppSelector((state) => getOrderedLists(state).map(list => list.id));
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
dispatch(setupListAdder(accountId));
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
dispatch(resetListAdder());
|
|
|
|
};
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const onClickClose = () => {
|
|
|
|
onClose('LIST_ADDER');
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Modal
|
|
|
|
title={<FormattedMessage id='list_adder.header_title' defaultMessage='Add or Remove from Lists' />}
|
|
|
|
onClose={onClickClose}
|
|
|
|
>
|
|
|
|
<Account accountId={accountId} />
|
|
|
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<CardHeader>
|
|
|
|
<CardTitle title={intl.formatMessage(messages.add)} />
|
|
|
|
</CardHeader>
|
|
|
|
<NewListForm />
|
|
|
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<CardHeader>
|
|
|
|
<CardTitle title={intl.formatMessage(messages.subheading)} />
|
|
|
|
</CardHeader>
|
|
|
|
<div>
|
|
|
|
{listIds.map(ListId => <List key={ListId} listId={ListId} />)}
|
|
|
|
</div>
|
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ListAdder;
|