2575c5d448
* Add ordering Icons * Refactor doCollectionEdit - It required claims as parameter, when only uris are used to populate the collection, so that was changed to pass down the uris instead. - There were unused and mostly unnecessary functions inside, for example the parameter claimIds was never used so it would never enter the claimSearch function which again would be used to generate uris, so it's better to just use uris as parameter * Add List Reordering changes * Add toggle button for list editing * Add toggle on content page collection sidebar * Enable drag-n-drop to re-order list items https://www.youtube.com/watch?v=aYZRRyukuIw * Allow removing all unavailable claims from a List * Fix <g> on icons * Fix section buttons positioning * Move preventDefault and stopPropagation to buttons div instead of each button, preventing clicking even if disabled opening the claim * Change dragging cursor * Fix sizing * Fix dragging component * Restrict dragging to vertical axis * Ignore shuffle state for ordering * Fix console errors * Mobile fixes * Fix sidebar spacing * Fix grey on mobile after click
242 lines
6.5 KiB
JavaScript
242 lines
6.5 KiB
JavaScript
// @flow
|
|
|
|
// $FlowFixMe
|
|
import { DragDropContext, Droppable } from 'react-beautiful-dnd';
|
|
|
|
import React from 'react';
|
|
import ClaimList from 'component/claimList';
|
|
import Page from 'component/page';
|
|
import * as PAGES from 'constants/pages';
|
|
import { useHistory } from 'react-router-dom';
|
|
import CollectionEdit from 'component/collectionEdit';
|
|
import Card from 'component/common/card';
|
|
import Button from 'component/button';
|
|
import CollectionActions from 'component/collectionActions';
|
|
import classnames from 'classnames';
|
|
import ClaimAuthor from 'component/claimAuthor';
|
|
import FileDescription from 'component/fileDescription';
|
|
import * as COLLECTIONS_CONSTS from 'constants/collections';
|
|
import Icon from 'component/common/icon';
|
|
import * as ICONS from 'constants/icons';
|
|
import Spinner from 'component/spinner';
|
|
|
|
export const PAGE_VIEW_QUERY = 'view';
|
|
export const EDIT_PAGE = 'edit';
|
|
|
|
type Props = {
|
|
collectionId: string,
|
|
uri: string,
|
|
claim: Claim,
|
|
title: string,
|
|
thumbnail: string,
|
|
collection: Collection,
|
|
collectionUrls: Array<string>,
|
|
collectionCount: number,
|
|
isResolvingCollection: boolean,
|
|
isMyClaim: boolean,
|
|
isMyCollection: boolean,
|
|
claimIsPending: boolean,
|
|
collectionHasEdits: boolean,
|
|
deleteCollection: (string, string) => void,
|
|
editCollection: (string, CollectionEditParams) => void,
|
|
fetchCollectionItems: (string, () => void) => void,
|
|
resolveUris: (string) => void,
|
|
user: ?User,
|
|
};
|
|
|
|
export default function CollectionPage(props: Props) {
|
|
const {
|
|
collectionId,
|
|
uri,
|
|
claim,
|
|
collection,
|
|
collectionUrls,
|
|
collectionCount,
|
|
collectionHasEdits,
|
|
claimIsPending,
|
|
isResolvingCollection,
|
|
editCollection,
|
|
fetchCollectionItems,
|
|
deleteCollection,
|
|
} = props;
|
|
|
|
const {
|
|
replace,
|
|
location: { search },
|
|
} = useHistory();
|
|
|
|
const [didTryResolve, setDidTryResolve] = React.useState(false);
|
|
const [showInfo, setShowInfo] = React.useState(false);
|
|
const [showEdit, setShowEdit] = React.useState(false);
|
|
const [unavailableUris, setUnavailable] = React.useState([]);
|
|
|
|
const { name, totalItems } = collection || {};
|
|
const isBuiltin = COLLECTIONS_CONSTS.BUILTIN_LISTS.includes(collectionId);
|
|
|
|
function handleOnDragEnd(result) {
|
|
const { source, destination } = result;
|
|
|
|
if (!destination) return;
|
|
|
|
const { index: from } = source;
|
|
const { index: to } = destination;
|
|
|
|
editCollection(collectionId, { order: { from, to } });
|
|
}
|
|
|
|
const urlParams = new URLSearchParams(search);
|
|
const editing = urlParams.get(PAGE_VIEW_QUERY) === EDIT_PAGE;
|
|
|
|
const urlsReady =
|
|
collectionUrls && (totalItems === undefined || (totalItems && totalItems === collectionUrls.length));
|
|
|
|
React.useEffect(() => {
|
|
if (collectionId && !urlsReady && !didTryResolve && !collection) {
|
|
fetchCollectionItems(collectionId, () => setDidTryResolve(true));
|
|
}
|
|
}, [collectionId, urlsReady, didTryResolve, setDidTryResolve, fetchCollectionItems, collection]);
|
|
|
|
const pending = (
|
|
<div className="help card__title--help">
|
|
<Spinner type={'small'} />
|
|
{__('Your publish is being confirmed and will be live soon')}
|
|
</div>
|
|
);
|
|
|
|
const unpublished = (
|
|
<Button
|
|
button="close"
|
|
icon={ICONS.REFRESH}
|
|
label={__('Clear Edits')}
|
|
onClick={() => deleteCollection(collectionId, COLLECTIONS_CONSTS.COL_KEY_EDITED)}
|
|
/>
|
|
);
|
|
|
|
const removeUnavailable = (
|
|
<Button
|
|
button="close"
|
|
icon={ICONS.DELETE}
|
|
label={__('Remove all unavailable claims')}
|
|
onClick={() => {
|
|
editCollection(collectionId, { uris: unavailableUris, remove: true });
|
|
setUnavailable([]);
|
|
}}
|
|
/>
|
|
);
|
|
|
|
let titleActions;
|
|
if (collectionHasEdits) {
|
|
titleActions = unpublished;
|
|
} else if (claimIsPending) {
|
|
titleActions = pending;
|
|
}
|
|
|
|
const subTitle = (
|
|
<div>
|
|
<span className="collection__subtitle">
|
|
{collectionCount === 1 ? __('1 item') : __('%collectionCount% items', { collectionCount })}
|
|
</span>
|
|
{uri && <ClaimAuthor uri={uri} />}
|
|
</div>
|
|
);
|
|
const info = (
|
|
<Card
|
|
title={
|
|
<span>
|
|
<Icon
|
|
icon={
|
|
(collectionId === COLLECTIONS_CONSTS.WATCH_LATER_ID && ICONS.TIME) ||
|
|
(collectionId === COLLECTIONS_CONSTS.FAVORITES_ID && ICONS.STAR) ||
|
|
ICONS.STACK
|
|
}
|
|
className="icon--margin-right"
|
|
/>
|
|
{claim ? claim.value.title || claim.name : collection && collection.name}
|
|
</span>
|
|
}
|
|
titleActions={unavailableUris.length > 0 ? removeUnavailable : titleActions}
|
|
subtitle={subTitle}
|
|
body={
|
|
<CollectionActions
|
|
uri={uri}
|
|
collectionId={collectionId}
|
|
setShowInfo={setShowInfo}
|
|
showInfo={showInfo}
|
|
isBuiltin={isBuiltin}
|
|
collectionUrls={collectionUrls}
|
|
setShowEdit={setShowEdit}
|
|
showEdit={showEdit}
|
|
/>
|
|
}
|
|
actions={
|
|
showInfo &&
|
|
uri && (
|
|
<div className="section">
|
|
<FileDescription uri={uri} expandOverride />
|
|
</div>
|
|
)
|
|
}
|
|
/>
|
|
);
|
|
|
|
if (!collection && (isResolvingCollection || !didTryResolve)) {
|
|
return (
|
|
<Page>
|
|
<h2 className="main--empty empty">{__('Loading...')}</h2>
|
|
</Page>
|
|
);
|
|
}
|
|
|
|
if (!collection && !isResolvingCollection && didTryResolve) {
|
|
return (
|
|
<Page>
|
|
<h2 className="main--empty empty">{__('Nothing here')}</h2>
|
|
</Page>
|
|
);
|
|
}
|
|
|
|
if (editing) {
|
|
return (
|
|
<Page
|
|
noFooter
|
|
noSideNavigation={editing}
|
|
backout={{
|
|
title: __('%action% %collection%', { collection: name, action: uri ? __('Editing') : __('Publishing') }),
|
|
simpleTitle: uri ? __('Editing') : __('Publishing'),
|
|
}}
|
|
>
|
|
<CollectionEdit
|
|
uri={uri}
|
|
collectionId={collectionId}
|
|
onDone={(id) => {
|
|
replace(`/$/${PAGES.LIST}/${id}`);
|
|
}}
|
|
/>
|
|
</Page>
|
|
);
|
|
}
|
|
|
|
if (urlsReady) {
|
|
return (
|
|
<Page>
|
|
<div className={classnames('section card-stack')}>
|
|
{info}
|
|
|
|
<DragDropContext onDragEnd={handleOnDragEnd}>
|
|
<Droppable droppableId="list__ordering">
|
|
{(DroppableProvided) => (
|
|
<ClaimList
|
|
uris={collectionUrls}
|
|
collectionId={collectionId}
|
|
showEdit={showEdit}
|
|
droppableProvided={DroppableProvided}
|
|
unavailableUris={unavailableUris}
|
|
/>
|
|
)}
|
|
</Droppable>
|
|
</DragDropContext>
|
|
</div>
|
|
</Page>
|
|
);
|
|
}
|
|
}
|