blob: c7843b7aef069a3b935a42e1918193969093a989 (
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
47
48
49
50
51
52
53
54
55
56
|
import Spinner from '@components/Spinner/Spinner';
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);
const getList = () => {
if (error) return <ul>{t`Failed to load.`}</ul>;
if (!data)
return (
<ul>
<Spinner />
</ul>
);
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 <List items={subjects} />;
};
return (
<ExpandableWidget title={title} titleLevel={titleLevel} withBorders={true}>
{getList()}
</ExpandableWidget>
);
};
export default TopicsList;
|