import { GetStaticProps } from "next"; import SubPanel from "components/Panels/SubPanel"; import ContentPanel, { ContentPanelWidthSizes, } from "components/Panels/ContentPanel"; import { GetContentsQuery, GetWebsiteInterfaceQuery, } from "graphql/operations-types"; import { getContents, getWebsiteInterface } from "graphql/operations"; import PanelHeader from "components/PanelComponents/PanelHeader"; import AppLayout from "components/AppLayout"; import LibraryContentPreview from "components/Library/LibraryContentPreview"; import { prettyinlineTitle } from "queries/helpers"; type LibraryProps = { contents: GetContentsQuery; langui: GetWebsiteInterfaceQuery; }; export default function Library(props: LibraryProps): JSX.Element { const langui = props.langui.websiteInterfaces.data[0].attributes; props.contents.contents.data.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 subPanel = ( ); const contentPanel = ( {props.contents.contents.data.map((item) => ( ))} ); return ( ); } export const getStaticProps: GetStaticProps = async (context) => { if (context.locale) { const props: LibraryProps = { contents: await getContents({ language_code: context.locale, }), langui: await getWebsiteInterface({ language_code: context.locale, }), }; return { props: props, }; } else { return { props: {} }; } };