import AppLayout from "components/AppLayout"; import Chip from "components/Chip"; import PanelHeader from "components/PanelComponents/PanelHeader"; import ContentPanel, { ContentPanelWidthSizes, } from "components/Panels/ContentPanel"; import SubPanel from "components/Panels/SubPanel"; import Select from "components/Inputs/Select"; import Switch from "components/Inputs/Switch"; import ThumbnailPreview from "components/PreviewCard"; import { GetContentsQuery } from "graphql/generated"; import { getReadySdk } from "graphql/sdk"; import { GetStaticPropsContext } from "next"; import { AppStaticProps, getAppStaticProps } from "queries/getAppStaticProps"; import { prettyinlineTitle, prettySlug } from "queries/helpers"; import { useEffect, useState } from "react"; interface Props extends AppStaticProps { contents: Exclude["data"]; } type GroupContentItems = Map; export default function Contents(props: Props): JSX.Element { const { langui, contents } = props; const [groupingMethod, setGroupingMethod] = useState(-1); const [keepInfoVisible, setKeepInfoVisible] = useState(false); const [groups, setGroups] = useState( getGroups(langui, groupingMethod, contents) ); useEffect(() => { setGroups(getGroups(langui, groupingMethod, contents)); }, [langui, groupingMethod, contents]); const subPanel = (

{langui.group_by}: