import { t } from '@lingui/macro'; import { getAllThematics } from '@services/graphql/queries'; import Link from 'next/link'; import { useRouter } from 'next/router'; import useSWR from 'swr'; import styles from '../Widget.module.scss'; const ThematicsList = ({ title }: { title: string }) => { 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
{t`Failed to load.`}
; if (!data) return
{t`Loading...`}
; const sortedThematics = [...data].sort((a, b) => a.title.localeCompare(b.title) ); const thematics = sortedThematics.map((thematic) => { return currentThematicSlug !== thematic.slug ? (
  • {thematic.title}
  • ) : ( '' ); }); return (

    {title}

    ); }; export default ThematicsList;