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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
import { useEffect, useState } from "react";
import {
Input,
Button,
ButtonGroup,
Card,
CardBody,
CardHeader,
Divider,
Tooltip,
Listbox,
ListboxItem,
Dropdown,
DropdownTrigger,
DropdownMenu,
DropdownItem,
} from "@nextui-org/react";
import { EllipsisVerticalIcon } from "lucide-react";
import { DateTime } from "luxon";
import { NotebookPenIcon } from "lucide-react";
import Runbook from "@/state/runbooks/runbook";
import { useStore } from "@/state/store";
const NoteSidebar = () => {
const runbooks = useStore((state) => state.runbooks);
const refreshRunbooks = useStore((state) => state.refreshRunbooks);
const currentRunbook = useStore((state) => state.currentRunbook);
const setCurrentRunbook = useStore((state) => state.setCurrentRunbook);
useEffect(() => {
refreshRunbooks();
}, []);
return (
<div className="min-w-48 h-screen flex flex-col border-r-1">
<div className="overflow-y-auto flex-grow">
<Listbox
hideSelectedIcon
items={runbooks}
variant="flat"
aria-label="Runbook list"
selectionMode="single"
selectedKeys={[currentRunbook]}
itemClasses={{ base: "data-[selected=true]:bg-gray-200" }}
topContent={
<ButtonGroup>
<Tooltip showArrow content="New Runbook" closeDelay={50}>
<Button
isIconOnly
aria-label="New note"
variant="light"
size="sm"
onPress={async () => {
let runbook = await Runbook.create();
setCurrentRunbook(runbook.id);
refreshRunbooks();
}}
>
<NotebookPenIcon className="p-[0.15rem]" />
</Button>
</Tooltip>
</ButtonGroup>
}
>
{(runbook) => (
<ListboxItem
key={runbook.id}
onPress={() => {
setCurrentRunbook(runbook.id);
}}
textValue={runbook.name || "Untitled"}
endContent={
<Dropdown>
<DropdownTrigger className="bg-transparent">
<Button isIconOnly>
<EllipsisVerticalIcon
size="16px"
className="bg-transparent"
/>
</Button>
</DropdownTrigger>
<DropdownMenu aria-label="Dynamic Actions">
<DropdownItem
key={"delete"}
color="danger"
className="text-danger"
onPress={async () => {
await Runbook.delete(runbook.id);
refreshRunbooks();
}}
>
Delete
</DropdownItem>
</DropdownMenu>
</Dropdown>
}
>
<div className="flex flex-col">
<div className="text-md">{runbook.name || "Untitled"}</div>
<div className="text-xs text-gray-500">
<em>
{DateTime.fromJSDate(runbook.updated).toLocaleString(
DateTime.DATETIME_SIMPLE,
)}
</em>
</div>
</div>
</ListboxItem>
)}
</Listbox>
</div>
</div>
);
};
export default NoteSidebar;
|