blob: 5bf12b9acb1fee4119b03c9b9be890013effc8f8 (
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 { getAllSubjects } 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 TopicsList = ({
title,
titleLevel,
}: {
title: string;
titleLevel?: TitleLevel;
}) => {
const router = useRouter();
const isTopic = () => router.asPath.includes('/sujet/');
const currentTopicSlug = isTopic()
? router.asPath.replace('/sujet/', '')
: '';
const { data, error } = useSWR('/api/subjects', getAllSubjects);
if (error) return <div>{t`Failed to load.`}</div>;
if (!data) return <div>{t`Loading...`}</div>;
const subjects = data.map((subject) => {
return currentTopicSlug !== subject.slug ? (
<li key={subject.databaseId}>
<Link href={`/sujet/${subject.slug}`}>
<a>{subject.title}</a>
</Link>
</li>
) : (
''
);
});
return (
<ExpandableWidget title={title} titleLevel={titleLevel} withBorders={true}>
<List items={subjects} />
</ExpandableWidget>
);
};
export default TopicsList;
|