186 lines
5.7 KiB
TypeScript
186 lines
5.7 KiB
TypeScript
import { GetStaticProps } from "next";
|
|
import SubPanel from "components/Panels/SubPanel";
|
|
import ContentPanel, {
|
|
ContentPanelWidthSizes,
|
|
} from "components/Panels/ContentPanel";
|
|
import { GetContentsQuery } from "graphql/operations-types";
|
|
import { getContents } from "graphql/operations";
|
|
import PanelHeader from "components/PanelComponents/PanelHeader";
|
|
import AppLayout from "components/AppLayout";
|
|
import LibraryContentPreview from "components/Library/LibraryContentPreview";
|
|
import { prettyinlineTitle, prettySlug } from "queries/helpers";
|
|
import { AppStaticProps, getAppStaticProps } from "queries/getAppStaticProps";
|
|
import Select from "components/Select";
|
|
import { useEffect, useState } from "react";
|
|
|
|
interface ContentsProps extends AppStaticProps {
|
|
contents: GetContentsQuery["contents"]["data"];
|
|
}
|
|
|
|
type GroupContentItems = Map<string, GetContentsQuery["contents"]["data"]>;
|
|
|
|
export default function Contents(props: ContentsProps): JSX.Element {
|
|
const { langui, contents } = props;
|
|
|
|
const [groupingMethod, setGroupingMethod] = useState<number>(-1);
|
|
|
|
const [groups, setGroups] = useState<GroupContentItems>(
|
|
getGroups(groupingMethod, contents)
|
|
);
|
|
|
|
useEffect(() => {
|
|
setGroups(getGroups(groupingMethod, contents));
|
|
}, [langui, groupingMethod, contents]);
|
|
|
|
const subPanel = (
|
|
<SubPanel>
|
|
<PanelHeader
|
|
icon="workspaces"
|
|
title={langui.contents}
|
|
description={langui.contents_description}
|
|
/>
|
|
|
|
<div className="flex flex-row gap-2 place-items-center">
|
|
<p className="flex-shrink-0">{langui.group_by}:</p>
|
|
<Select
|
|
className="w-full"
|
|
options={[langui.category, langui.type]}
|
|
state={groupingMethod}
|
|
setState={setGroupingMethod}
|
|
allowEmpty
|
|
/>
|
|
</div>
|
|
</SubPanel>
|
|
);
|
|
const contentPanel = (
|
|
<ContentPanel width={ContentPanelWidthSizes.large}>
|
|
{[...groups].map(([name, items]) => (
|
|
<>
|
|
{items.length > 0 && (
|
|
<>
|
|
{name && (
|
|
<h2
|
|
key={"h2" + name}
|
|
className="text-2xl pb-2 pt-10 first-of-type:pt-0"
|
|
>
|
|
{name}
|
|
</h2>
|
|
)}
|
|
<div
|
|
key={"items" + name}
|
|
className="grid gap-8 items-end grid-cols-2 desktop:grid-cols-[repeat(auto-fill,_minmax(15rem,1fr))]"
|
|
>
|
|
{items.map((item) => (
|
|
<LibraryContentPreview key={item.id} item={item.attributes} />
|
|
))}
|
|
</div>
|
|
</>
|
|
)}
|
|
</>
|
|
))}
|
|
</ContentPanel>
|
|
);
|
|
return (
|
|
<AppLayout
|
|
navTitle={langui.contents}
|
|
subPanel={subPanel}
|
|
contentPanel={contentPanel}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export const getStaticProps: GetStaticProps = async (context) => {
|
|
const contents = (
|
|
await getContents({
|
|
language_code: context.locale || "en",
|
|
})
|
|
).contents.data;
|
|
|
|
contents.sort((a, b) => {
|
|
const titleA =
|
|
a.attributes.titles.length > 0
|
|
? prettyinlineTitle(
|
|
a.attributes.titles[0].pre_title,
|
|
a.attributes.titles[0].title,
|
|
a.attributes.titles[0].subtitle
|
|
)
|
|
: a.attributes.slug;
|
|
const titleB =
|
|
b.attributes.titles.length > 0
|
|
? prettyinlineTitle(
|
|
b.attributes.titles[0].pre_title,
|
|
b.attributes.titles[0].title,
|
|
b.attributes.titles[0].subtitle
|
|
)
|
|
: b.attributes.slug;
|
|
return titleA.localeCompare(titleB);
|
|
});
|
|
|
|
const props: ContentsProps = {
|
|
...(await getAppStaticProps(context)),
|
|
contents: contents,
|
|
};
|
|
return {
|
|
props: props,
|
|
};
|
|
};
|
|
|
|
function getGroups(
|
|
groupByType: number,
|
|
items: ContentsProps["contents"]
|
|
): GroupContentItems {
|
|
switch (groupByType) {
|
|
case 0:
|
|
const typeGroup = new Map();
|
|
typeGroup.set("Drakengard 1", []);
|
|
typeGroup.set("Drakengard 1.3", []);
|
|
typeGroup.set("Drakengard 2", []);
|
|
typeGroup.set("Drakengard 3", []);
|
|
typeGroup.set("Drakengard 4", []);
|
|
typeGroup.set("NieR Gestalt", []);
|
|
typeGroup.set("NieR Replicant", []);
|
|
typeGroup.set("NieR Replicant ver.1.22474487139...", []);
|
|
typeGroup.set("NieR:Automata", []);
|
|
typeGroup.set("NieR Re[in]carnation", []);
|
|
typeGroup.set("SINoALICE", []);
|
|
typeGroup.set("Voice of Cards", []);
|
|
typeGroup.set("Final Fantasy XIV", []);
|
|
typeGroup.set("Thou Shalt Not Die", []);
|
|
typeGroup.set("Bakuken", []);
|
|
typeGroup.set("YoRHa", []);
|
|
typeGroup.set("YoRHa Boys", []);
|
|
typeGroup.set("No category", []);
|
|
|
|
items.map((item) => {
|
|
if (item.attributes.categories.data.length === 0) {
|
|
typeGroup.get("No category")?.push(item);
|
|
} else {
|
|
item.attributes.categories.data.map((category) => {
|
|
typeGroup.get(category.attributes.name)?.push(item);
|
|
});
|
|
}
|
|
});
|
|
return typeGroup;
|
|
|
|
case 1:
|
|
const groupType: GroupContentItems = new Map();
|
|
items.map((item) => {
|
|
const type =
|
|
item.attributes.type.data.attributes.titles.length > 0
|
|
? item.attributes.type.data.attributes.titles[0].title
|
|
: prettySlug(item.attributes.type.data.attributes.slug);
|
|
|
|
if (!groupType.has(type)) groupType.set(type, []);
|
|
groupType.get(type)?.push(item);
|
|
});
|
|
|
|
return groupType;
|
|
|
|
default:
|
|
const groupDefault: GroupContentItems = new Map();
|
|
groupDefault.set("", items);
|
|
return groupDefault;
|
|
}
|
|
}
|