blob: 8523bd10e0263ed8ddc3bc9bc1ef2ea727031127 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
import { ExpandableWidget, List } from '@components/WidgetParts';
import { t } from '@lingui/macro';
import { getAllThematics } from '@services/graphql/queries';
import { TitleLevel } from '@ts/types/app';
import Link from 'next/link';
import { useRouter } from 'next/router';
import useSWR from 'swr';
const ThematicsList = ({
title,
titleLevel,
}: {
title: string;
titleLevel?: TitleLevel;
}) => {
const router = useRouter();
const isThematic = () => router.asPath.includes('/thematique/');
const currentThematicSlug = isThematic()
? router.asPath.replace('/thematique/', '')
: '';
const { data, error } = useSWR('/api/thematics', getAllThematics);
if (error) return <div>{t`Failed to load.`}</div>;
if (!data) return <div>{t`Loading...`}</div>;
const thematics = data.map((thematic) => {
return currentThematicSlug !== thematic.slug ? (
<li key={thematic.databaseId}>
<Link href={`/thematique/${thematic.slug}`}>
<a>{thematic.title}</a>
</Link>
</li>
) : (
''
);
});
return (
<ExpandableWidget title={title} titleLevel={titleLevel} withBorders={true}>
<List items={thematics} />
</ExpandableWidget>
);
};
export default ThematicsList;
|