* Reorganize repo * Overhaul website design and rewrite in NextJS and Typescript * Delete website-publish.yml
61 lines
1.5 KiB
TypeScript
61 lines
1.5 KiB
TypeScript
import React, { useMemo } from 'react';
|
|
import { Navigate, useParams } from 'react-router-dom';
|
|
|
|
import MainView from '../App/MainView';
|
|
import Collection from './Collection';
|
|
|
|
import type { Collections } from '../../interface';
|
|
|
|
function getDefaultPath(collections: Collections) {
|
|
const first = Object.values(collections).filter(collection => collection.hide !== true)[0];
|
|
if (first) {
|
|
return `/collections/${first.name}`;
|
|
} else {
|
|
throw new Error('Could not find a non hidden collection');
|
|
}
|
|
}
|
|
|
|
interface CollectionRouteProps {
|
|
isSearchResults?: boolean;
|
|
isSingleSearchResult?: boolean;
|
|
collections: Collections;
|
|
}
|
|
|
|
const CollectionRoute = ({
|
|
isSearchResults,
|
|
isSingleSearchResult,
|
|
collections,
|
|
}: CollectionRouteProps) => {
|
|
const { name, searchTerm, filterTerm } = useParams();
|
|
const collection = useMemo(() => {
|
|
if (!name) {
|
|
return false;
|
|
}
|
|
return collections[name];
|
|
}, [collections, name]);
|
|
|
|
const defaultPath = useMemo(() => getDefaultPath(collections), [collections]);
|
|
|
|
if (!name || !collection) {
|
|
return <Navigate to={defaultPath} />;
|
|
}
|
|
|
|
if ('files' in collection && collection.files?.length === 1) {
|
|
return <Navigate to={`/collections/${collection.name}/entries/${collection.files[0].name}`} />;
|
|
}
|
|
|
|
return (
|
|
<MainView>
|
|
<Collection
|
|
name={name}
|
|
searchTerm={searchTerm}
|
|
filterTerm={filterTerm}
|
|
isSearchResults={isSearchResults}
|
|
isSingleSearchResult={isSingleSearchResult}
|
|
/>
|
|
</MainView>
|
|
);
|
|
};
|
|
|
|
export default CollectionRoute;
|