aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/dashboard/admin/UserList.tsx
diff options
context:
space:
mode:
authorkamtschatka <simon.schatka@gmx.at>2024-10-19 23:48:14 +0200
committerGitHub <noreply@github.com>2024-10-19 22:48:14 +0100
commit9a56e58bd54b2bfe11104e80c602493d720ff6be (patch)
treebd5ac7c8dd386881f077519e40d911d8e07dbace /apps/web/components/dashboard/admin/UserList.tsx
parent0debc6b415baa466245901fb52c009d09ef3ba15 (diff)
downloadkarakeep-9a56e58bd54b2bfe11104e80c602493d720ff6be.tar.zst
feature: Allow reseting user password, change their roles and create new users. Fixes #495 (#567)
* How do I set the variable "user" or "system" for AI inference #262 changed from system to user * Make Myself an Admin #560 added user management functionality to the admin page * A bunch of UI fixes and simplifications --------- Co-authored-by: Mohamed Bassem <me@mbassem.com>
Diffstat (limited to 'apps/web/components/dashboard/admin/UserList.tsx')
-rw-r--r--apps/web/components/dashboard/admin/UserList.tsx49
1 files changed, 42 insertions, 7 deletions
diff --git a/apps/web/components/dashboard/admin/UserList.tsx b/apps/web/components/dashboard/admin/UserList.tsx
index 65bf4068..2937df28 100644
--- a/apps/web/components/dashboard/admin/UserList.tsx
+++ b/apps/web/components/dashboard/admin/UserList.tsx
@@ -1,6 +1,7 @@
"use client";
-import { ActionButton } from "@/components/ui/action-button";
+import { ActionButtonWithTooltip } from "@/components/ui/action-button";
+import { ButtonWithTooltip } from "@/components/ui/button";
import LoadingSpinner from "@/components/ui/spinner";
import {
Table,
@@ -12,9 +13,13 @@ import {
} from "@/components/ui/table";
import { toast } from "@/components/ui/use-toast";
import { api } from "@/lib/trpc";
-import { Trash } from "lucide-react";
+import { Check, KeyRound, Pencil, Trash, UserPlus, X } from "lucide-react";
import { useSession } from "next-auth/react";
+import AddUserDialog from "./AddUserDialog";
+import ChangeRoleDialog from "./ChangeRoleDialog";
+import ResetPasswordDialog from "./ResetPasswordDialog";
+
function toHumanReadableSize(size: number) {
const sizes = ["Bytes", "KB", "MB", "GB", "TB"];
if (size === 0) return "0 Bytes";
@@ -49,7 +54,14 @@ export default function UsersSection() {
return (
<>
- <div className="mb-2 text-xl font-medium">Users List</div>
+ <div className="mb-2 flex items-center justify-between text-xl font-medium">
+ <span>Users List</span>
+ <AddUserDialog>
+ <ButtonWithTooltip tooltip="Create User" variant="outline">
+ <UserPlus size={16} />
+ </ButtonWithTooltip>
+ </AddUserDialog>
+ </div>
<Table>
<TableHeader className="bg-gray-200">
@@ -58,7 +70,8 @@ export default function UsersSection() {
<TableHead>Num Bookmarks</TableHead>
<TableHead>Asset Sizes</TableHead>
<TableHead>Role</TableHead>
- <TableHead>Action</TableHead>
+ <TableHead>Local User</TableHead>
+ <TableHead>Actions</TableHead>
</TableHeader>
<TableBody>
{users.users.map((u) => (
@@ -72,15 +85,37 @@ export default function UsersSection() {
{toHumanReadableSize(userStats[u.id].assetSizes)}
</TableCell>
<TableCell className="py-1 capitalize">{u.role}</TableCell>
- <TableCell className="py-1">
- <ActionButton
+ <TableCell className="py-1 capitalize">
+ {u.localUser ? <Check /> : <X />}
+ </TableCell>
+ <TableCell className="flex gap-1 py-1">
+ <ActionButtonWithTooltip
+ tooltip="Delete user"
variant="outline"
onClick={() => deleteUser({ userId: u.id })}
loading={isDeletionPending}
disabled={session!.user.id == u.id}
>
<Trash size={16} color="red" />
- </ActionButton>
+ </ActionButtonWithTooltip>
+ <ResetPasswordDialog userId={u.id}>
+ <ButtonWithTooltip
+ tooltip="Reset password"
+ variant="outline"
+ disabled={session!.user.id == u.id || !u.localUser}
+ >
+ <KeyRound size={16} color="red" />
+ </ButtonWithTooltip>
+ </ResetPasswordDialog>
+ <ChangeRoleDialog userId={u.id} currentRole={u.role!}>
+ <ButtonWithTooltip
+ tooltip="Change role"
+ variant="outline"
+ disabled={session!.user.id == u.id}
+ >
+ <Pencil size={16} color="red" />
+ </ButtonWithTooltip>
+ </ChangeRoleDialog>
</TableCell>
</TableRow>
))}