mirror of
https://github.com/glitch-soc/mastodon.git
synced 2026-03-29 03:00:33 +02:00
180 lines
5.1 KiB
TypeScript
180 lines
5.1 KiB
TypeScript
import { useEffect, useMemo, useCallback } from 'react';
|
|
|
|
import { defineMessages, useIntl, FormattedMessage } from 'react-intl';
|
|
|
|
import { Helmet } from 'react-helmet';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
import AddIcon from '@/material-icons/400-24px/add.svg?react';
|
|
import ListAltIcon from '@/material-icons/400-24px/list_alt.svg?react';
|
|
import MoreHorizIcon from '@/material-icons/400-24px/more_horiz.svg?react';
|
|
import SquigglyArrow from '@/svg-icons/squiggly_arrow.svg?react';
|
|
import { openModal } from 'flavours/glitch/actions/modal';
|
|
import { Column } from 'flavours/glitch/components/column';
|
|
import { ColumnHeader } from 'flavours/glitch/components/column_header';
|
|
import { Dropdown } from 'flavours/glitch/components/dropdown_menu';
|
|
import { Icon } from 'flavours/glitch/components/icon';
|
|
import ScrollableList from 'flavours/glitch/components/scrollable_list';
|
|
import {
|
|
fetchAccountCollections,
|
|
selectMyCollections,
|
|
} from 'flavours/glitch/reducers/slices/collections';
|
|
import { useAppSelector, useAppDispatch } from 'flavours/glitch/store';
|
|
|
|
import { messages as editorMessages } from './editor';
|
|
|
|
const messages = defineMessages({
|
|
heading: { id: 'column.collections', defaultMessage: 'My collections' },
|
|
view: {
|
|
id: 'collections.view_collection',
|
|
defaultMessage: 'View collection',
|
|
},
|
|
delete: {
|
|
id: 'collections.delete_collection',
|
|
defaultMessage: 'Delete collection',
|
|
},
|
|
more: { id: 'status.more', defaultMessage: 'More' },
|
|
});
|
|
|
|
const ListItem: React.FC<{
|
|
id: string;
|
|
name: string;
|
|
}> = ({ id, name }) => {
|
|
const dispatch = useAppDispatch();
|
|
const intl = useIntl();
|
|
|
|
const handleDeleteClick = useCallback(() => {
|
|
dispatch(
|
|
openModal({
|
|
modalType: 'CONFIRM_DELETE_COLLECTION',
|
|
modalProps: {
|
|
name,
|
|
id,
|
|
},
|
|
}),
|
|
);
|
|
}, [dispatch, id, name]);
|
|
|
|
const menu = useMemo(
|
|
() => [
|
|
{ text: intl.formatMessage(messages.view), to: `/collections/${id}` },
|
|
null,
|
|
{
|
|
text: intl.formatMessage(editorMessages.manageAccounts),
|
|
to: `/collections/${id}/edit`,
|
|
},
|
|
{
|
|
text: intl.formatMessage(editorMessages.editDetails),
|
|
to: `/collections/${id}/edit/details`,
|
|
},
|
|
{
|
|
text: intl.formatMessage(editorMessages.editSettings),
|
|
to: `/collections/${id}/edit/settings`,
|
|
},
|
|
null,
|
|
{
|
|
text: intl.formatMessage(messages.delete),
|
|
action: handleDeleteClick,
|
|
dangerous: true,
|
|
},
|
|
],
|
|
[intl, id, handleDeleteClick],
|
|
);
|
|
|
|
return (
|
|
<div className='lists__item'>
|
|
<Link
|
|
to={`/collections/${id}/edit/details`}
|
|
className='lists__item__title'
|
|
>
|
|
<span>{name}</span>
|
|
</Link>
|
|
|
|
<Dropdown
|
|
scrollKey='collections'
|
|
items={menu}
|
|
icon='ellipsis-h'
|
|
iconComponent={MoreHorizIcon}
|
|
title={intl.formatMessage(messages.more)}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export const Collections: React.FC<{
|
|
multiColumn?: boolean;
|
|
}> = ({ multiColumn }) => {
|
|
const dispatch = useAppDispatch();
|
|
const intl = useIntl();
|
|
const me = useAppSelector((state) => state.meta.get('me') as string);
|
|
const { collections, status } = useAppSelector(selectMyCollections);
|
|
|
|
useEffect(() => {
|
|
void dispatch(fetchAccountCollections({ accountId: me }));
|
|
}, [dispatch, me]);
|
|
|
|
const emptyMessage =
|
|
status === 'error' ? (
|
|
<FormattedMessage
|
|
id='collections.error_loading_collections'
|
|
defaultMessage='There was an error when trying to load your collections.'
|
|
/>
|
|
) : (
|
|
<>
|
|
<span>
|
|
<FormattedMessage
|
|
id='collections.no_collections_yet'
|
|
defaultMessage='No collections yet.'
|
|
/>
|
|
<br />
|
|
<FormattedMessage
|
|
id='collections.create_a_collection_hint'
|
|
defaultMessage='Create a collection to recommend or share your favourite accounts with others.'
|
|
/>
|
|
</span>
|
|
|
|
<SquigglyArrow className='empty-column-indicator__arrow' />
|
|
</>
|
|
);
|
|
|
|
return (
|
|
<Column
|
|
bindToDocument={!multiColumn}
|
|
label={intl.formatMessage(messages.heading)}
|
|
>
|
|
<ColumnHeader
|
|
title={intl.formatMessage(messages.heading)}
|
|
icon='list-ul'
|
|
iconComponent={ListAltIcon}
|
|
multiColumn={multiColumn}
|
|
extraButton={
|
|
<Link
|
|
to='/collections/new'
|
|
className='column-header__button'
|
|
title={intl.formatMessage(editorMessages.create)}
|
|
aria-label={intl.formatMessage(editorMessages.create)}
|
|
>
|
|
<Icon id='plus' icon={AddIcon} />
|
|
</Link>
|
|
}
|
|
/>
|
|
|
|
<ScrollableList
|
|
scrollKey='collections'
|
|
emptyMessage={emptyMessage}
|
|
isLoading={status === 'loading'}
|
|
bindToDocument={!multiColumn}
|
|
>
|
|
{collections.map((item) => (
|
|
<ListItem key={item.id} id={item.id} name={item.name} />
|
|
))}
|
|
</ScrollableList>
|
|
|
|
<Helmet>
|
|
<title>{intl.formatMessage(messages.heading)}</title>
|
|
<meta name='robots' content='noindex' />
|
|
</Helmet>
|
|
</Column>
|
|
);
|
|
};
|