* Normalize code around localStorage Persist disabled embed state * fix: Cannot view more than 10 starred items on load * More tidying of sidebar state
116 lines
3.3 KiB
TypeScript
116 lines
3.3 KiB
TypeScript
import fractionalIndex from "fractional-index";
|
|
import { observer } from "mobx-react";
|
|
import * as React from "react";
|
|
import { useDrop } from "react-dnd";
|
|
import { useTranslation } from "react-i18next";
|
|
import Collection from "~/models/Collection";
|
|
import Fade from "~/components/Fade";
|
|
import Flex from "~/components/Flex";
|
|
import { createCollection } from "~/actions/definitions/collections";
|
|
import useStores from "~/hooks/useStores";
|
|
import useToasts from "~/hooks/useToasts";
|
|
import DraggableCollectionLink from "./DraggableCollectionLink";
|
|
import DropCursor from "./DropCursor";
|
|
import Header from "./Header";
|
|
import PlaceholderCollections from "./PlaceholderCollections";
|
|
import Relative from "./Relative";
|
|
import SidebarAction from "./SidebarAction";
|
|
import { DragObject } from "./SidebarLink";
|
|
|
|
function Collections() {
|
|
const [isFetching, setFetching] = React.useState(false);
|
|
const [fetchError, setFetchError] = React.useState();
|
|
const { documents, collections } = useStores();
|
|
const { showToast } = useToasts();
|
|
const isPreloaded = !!collections.orderedData.length;
|
|
const { t } = useTranslation();
|
|
const orderedCollections = collections.orderedData;
|
|
|
|
React.useEffect(() => {
|
|
async function load() {
|
|
if (!collections.isLoaded && !isFetching && !fetchError) {
|
|
try {
|
|
setFetching(true);
|
|
await collections.fetchPage({
|
|
limit: 100,
|
|
});
|
|
} catch (error) {
|
|
showToast(
|
|
t("Collections could not be loaded, please reload the app"),
|
|
{
|
|
type: "error",
|
|
}
|
|
);
|
|
setFetchError(error);
|
|
} finally {
|
|
setFetching(false);
|
|
}
|
|
}
|
|
}
|
|
|
|
load();
|
|
}, [collections, isFetching, showToast, fetchError, t]);
|
|
|
|
const [
|
|
{ isCollectionDropping, isDraggingAnyCollection },
|
|
dropToReorderCollection,
|
|
] = useDrop({
|
|
accept: "collection",
|
|
drop: async (item: DragObject) => {
|
|
collections.move(
|
|
item.id,
|
|
fractionalIndex(null, orderedCollections[0].index)
|
|
);
|
|
},
|
|
canDrop: (item) => {
|
|
return item.id !== orderedCollections[0].id;
|
|
},
|
|
collect: (monitor) => ({
|
|
isCollectionDropping: monitor.isOver(),
|
|
isDraggingAnyCollection: monitor.getItemType() === "collection",
|
|
}),
|
|
});
|
|
|
|
const content = (
|
|
<>
|
|
{isDraggingAnyCollection && (
|
|
<DropCursor
|
|
isActiveDrop={isCollectionDropping}
|
|
innerRef={dropToReorderCollection}
|
|
position="top"
|
|
/>
|
|
)}
|
|
{orderedCollections.map((collection: Collection, index: number) => (
|
|
<DraggableCollectionLink
|
|
key={collection.id}
|
|
collection={collection}
|
|
activeDocument={documents.active}
|
|
prefetchDocument={documents.prefetchDocument}
|
|
belowCollection={orderedCollections[index + 1]}
|
|
/>
|
|
))}
|
|
<SidebarAction action={createCollection} depth={0} />
|
|
</>
|
|
);
|
|
|
|
if (!collections.isLoaded || fetchError) {
|
|
return (
|
|
<Flex column>
|
|
<Header id="collections" title={t("Collections")}>
|
|
<PlaceholderCollections />
|
|
</Header>
|
|
</Flex>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Flex column>
|
|
<Header id="collections" title={t("Collections")}>
|
|
<Relative>{isPreloaded ? content : <Fade>{content}</Fade>}</Relative>
|
|
</Header>
|
|
</Flex>
|
|
);
|
|
}
|
|
|
|
export default observer(Collections);
|