import { useEffect, useMemo, useState } from 'react' import { Container } from 'react-bootstrap' import { Link } from 'react-router-dom' import { listAllForums } from '../api/client' import { useTranslation } from 'react-i18next' export default function Home() { const [forums, setForums] = useState([]) const [error, setError] = useState('') const [loading, setLoading] = useState(true) const { t } = useTranslation() useEffect(() => { listAllForums() .then(setForums) .catch((err) => setError(err.message)) .finally(() => setLoading(false)) }, []) const getParentId = (forum) => { if (!forum.parent) return null if (typeof forum.parent === 'string') { return forum.parent.split('/').pop() } return forum.parent.id ?? null } const forumTree = useMemo(() => { const map = new Map() const roots = [] forums.forEach((forum) => { map.set(String(forum.id), { ...forum, children: [] }) }) forums.forEach((forum) => { const parentId = getParentId(forum) const node = map.get(String(forum.id)) if (parentId && map.has(String(parentId))) { map.get(String(parentId)).children.push(node) } else { roots.push(node) } }) const sortNodes = (nodes) => { nodes.sort((a, b) => { if (a.position !== b.position) return a.position - b.position return a.name.localeCompare(b.name) }) nodes.forEach((node) => sortNodes(node.children)) } sortNodes(roots) return roots }, [forums]) const renderTree = (nodes, depth = 0) => nodes.map((node) => (
{t('app.brand')}
{t('home.hero_body')}
{t('home.loading')}
} {error &&{error}
} {!loading && forumTree.length === 0 && ({t('home.empty')}
)} {forumTree.length > 0 &&