blob: e90f91cdf164ee1ca4420cc4871a32bde35610e6 (
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 { ReactNode, useState } from 'react';
import { NavbarItem } from '../components/navbar';
import RemoveRoundedIcon from '@material-ui/icons/RemoveRounded';
import KeyboardArrowRightRoundedIcon from '@material-ui/icons/KeyboardArrowRightRounded';
import KeyboardArrowDownRoundedIcon from '@material-ui/icons/KeyboardArrowDownRounded';
interface chapter {
name: string;
sectionLink?: string;
children?: Array<chapter>;
}
function NavbarChapter(props: {
level: number;
chapter: chapter;
children?: ReactNode;
}) {
var [ collapsed, setCollapsed ] = useState(true);
var icon = props.chapter.children?.length > 0 ?
collapsed ? <KeyboardArrowDownRoundedIcon/> : <KeyboardArrowRightRoundedIcon/> :
<RemoveRoundedIcon/>
var classes: Array<string> = [];
classes.push("chapter")
classes.push(`indentLevel${props.level}`)
return <NavbarItem icon={icon} classList={classes} title={props.chapter.name} style={{
marginLeft: 12 * props.level
}}>
{props.children}
</NavbarItem>
}
class Chapter {
constructor(public chapters: Array<chapter>, public level: number) {}
render() {
return <div className="chapterChildren">
{
this.chapters?.map(chapter => {
return <NavbarChapter level={this.level} chapter={chapter}>
{ new Chapter(chapter.children, this.level + 1).render() }
</NavbarChapter>
})
}
</div>
}
}
export default function Chapters(props: {
chapters: Array<chapter>;
}) {
return new Chapter(props.chapters, 0).render();
}
|