-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathNavigation.tsx
42 lines (40 loc) · 1.09 KB
/
Navigation.tsx
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
import { TablerIcon } from '@tabler/icons';
import React from 'react';
import { Button } from './components/Button';
import { DefaultView, UrlStateContext } from './urlState';
export function Navigation<View extends string = DefaultView>({
pages,
}: {
pages: Array<{ title: string; icon: TablerIcon; endpoint: View }>;
}) {
const {
state: { projectId, view },
setState: setUrlState,
} = React.useContext(UrlStateContext);
return (
<div className="navigation">
{pages.map((page) => (
<div
key={page.title}
className={`navigation-item ${
view === page.endpoint ? 'navigation-item--active' : ''
}`}
title={page.title}
>
<Button
icon
onClick={() =>
setUrlState({
view: page.endpoint as DefaultView /* this is unideal but made difficult because the UrlStateContext is global */,
page: 0,
projectId,
})
}
>
<page.icon />
</Button>
</div>
))}
</div>
);
}