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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
|
"use client";
import { useRouter } from "next/navigation";
import { ActionButton } from "@/components/ui/action-button";
import LoadingSpinner from "@/components/ui/spinner";
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table";
import { toast } from "@/components/ui/use-toast";
import { api } from "@/lib/trpc";
import { keepPreviousData } from "@tanstack/react-query";
import { Trash } from "lucide-react";
import { useSession } from "next-auth/react";
function ActionsSection() {
const { mutate: recrawlLinks, isPending: isRecrawlPending } =
api.admin.recrawlAllLinks.useMutation({
onSuccess: () => {
toast({
description: "Recrawl enqueued",
});
},
onError: (e) => {
toast({
variant: "destructive",
description: e.message,
});
},
});
const { mutate: reindexBookmarks, isPending: isReindexPending } =
api.admin.reindexAllBookmarks.useMutation({
onSuccess: () => {
toast({
description: "Reindex enqueued",
});
},
onError: (e) => {
toast({
variant: "destructive",
description: e.message,
});
},
});
return (
<>
<p className="text-xl">Actions</p>
<ActionButton
className="w-1/2"
variant="destructive"
loading={isRecrawlPending}
onClick={() => recrawlLinks()}
>
Recrawl All Links
</ActionButton>
<ActionButton
className="w-1/2"
variant="destructive"
loading={isReindexPending}
onClick={() => reindexBookmarks()}
>
Reindex All Bookmarks
</ActionButton>
</>
);
}
function ServerStatsSection() {
const { data: serverStats } = api.admin.stats.useQuery(undefined, {
refetchInterval: 1000,
placeholderData: keepPreviousData,
});
if (!serverStats) {
return <LoadingSpinner />;
}
return (
<>
<p className="text-xl">Server Stats</p>
<Table className="w-1/2">
<TableBody>
<TableRow>
<TableCell className="w-2/3">Num Users</TableCell>
<TableCell>{serverStats.numUsers}</TableCell>
</TableRow>
<TableRow>
<TableCell>Num Bookmarks</TableCell>
<TableCell>{serverStats.numBookmarks}</TableCell>
</TableRow>
</TableBody>
</Table>
<hr />
<p className="text-xl">Background Jobs</p>
<Table className="w-1/2">
<TableBody>
<TableRow>
<TableCell className="w-2/3">Pending Crawling Jobs</TableCell>
<TableCell>{serverStats.pendingCrawls}</TableCell>
</TableRow>
<TableRow>
<TableCell>Pending Indexing Jobs</TableCell>
<TableCell>{serverStats.pendingIndexing}</TableCell>
</TableRow>
<TableRow>
<TableCell>Pending OpenAI Jobs</TableCell>
<TableCell>{serverStats.pendingOpenai}</TableCell>
</TableRow>
</TableBody>
</Table>
</>
);
}
function UsersSection() {
const { data: session } = useSession();
const invalidateUserList = api.useUtils().users.list.invalidate;
const { data: users } = api.users.list.useQuery();
const { mutate: deleteUser, isPending: isDeletionPending } =
api.users.delete.useMutation({
onSuccess: () => {
toast({
description: "User deleted",
});
invalidateUserList();
},
onError: (e) => {
toast({
variant: "destructive",
description: `Something went wrong: ${e.message}`,
});
},
});
if (!users) {
return <LoadingSpinner />;
}
return (
<>
<p className="text-xl">Users</p>
<Table>
<TableHeader>
<TableHead>Name</TableHead>
<TableHead>Email</TableHead>
<TableHead>Role</TableHead>
<TableHead>Action</TableHead>
</TableHeader>
<TableBody>
{users.users.map((u) => (
<TableRow key={u.id}>
<TableCell>{u.name}</TableCell>
<TableCell>{u.email}</TableCell>
<TableCell>{u.role}</TableCell>
<TableCell>
<ActionButton
variant="destructive"
onClick={() => deleteUser({ userId: u.id })}
loading={isDeletionPending}
disabled={session!.user.id == u.id}
>
<Trash />
</ActionButton>
</TableCell>
</TableRow>
))}
</TableBody>
</Table>
</>
);
}
export default function AdminPage() {
const router = useRouter();
const { data: session, status } = useSession();
if (status == "loading") {
return <LoadingSpinner />;
}
if (!session || session.user.role != "admin") {
router.push("/");
return;
}
return (
<div className="m-4 flex flex-col gap-5 rounded-md border bg-white p-4">
<p className="text-2xl">Admin</p>
<hr />
<ServerStatsSection />
<hr />
<UsersSection />
<hr />
<ActionsSection />
</div>
);
}
|