mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-23 22:53:08 +00:00
142 lines
6.1 KiB
TypeScript
142 lines
6.1 KiB
TypeScript
import { Button, IconButton } from "@mui/joy";
|
|
import axios from "axios";
|
|
import copy from "copy-to-clipboard";
|
|
import { useEffect, useState } from "react";
|
|
import { toast } from "react-hot-toast";
|
|
import { ListUserAccessTokensResponse, UserAccessToken } from "@/types/proto/api/v2/user_service_pb";
|
|
import useUserStore from "../../stores/v1/user";
|
|
import { showCommonDialog } from "../Alert";
|
|
import CreateAccessTokenDialog from "../CreateAccessTokenDialog";
|
|
import Icon from "../Icon";
|
|
|
|
const listAccessTokens = async (userId: number) => {
|
|
const { data } = await axios.get<ListUserAccessTokensResponse>(`/api/v2/users/${userId}/access_tokens`);
|
|
return data.accessTokens;
|
|
};
|
|
|
|
const AccessTokenSection = () => {
|
|
const currentUser = useUserStore().getCurrentUser();
|
|
const [userAccessTokens, setUserAccessTokens] = useState<UserAccessToken[]>([]);
|
|
const [showCreateDialog, setShowCreateDialog] = useState<boolean>(false);
|
|
|
|
useEffect(() => {
|
|
listAccessTokens(currentUser.id).then((accessTokens) => {
|
|
setUserAccessTokens(accessTokens);
|
|
});
|
|
}, []);
|
|
|
|
const handleCreateAccessTokenDialogConfirm = async () => {
|
|
const accessTokens = await listAccessTokens(currentUser.id);
|
|
setUserAccessTokens(accessTokens);
|
|
};
|
|
|
|
const copyAccessToken = (accessToken: string) => {
|
|
copy(accessToken);
|
|
toast.success("Access token copied to clipboard");
|
|
};
|
|
|
|
const handleDeleteAccessToken = async (accessToken: string) => {
|
|
showCommonDialog({
|
|
title: "Delete Access Token",
|
|
content: `Are you sure to delete access token \`${getFormatedAccessToken(accessToken)}\`? You cannot undo this action.`,
|
|
style: "danger",
|
|
onConfirm: async () => {
|
|
await axios.delete(`/api/v2/users/${currentUser.id}/access_tokens/${accessToken}`);
|
|
setUserAccessTokens(userAccessTokens.filter((token) => token.accessToken !== accessToken));
|
|
},
|
|
});
|
|
};
|
|
|
|
const getFormatedAccessToken = (accessToken: string) => {
|
|
return `${accessToken.slice(0, 4)}****${accessToken.slice(-4)}`;
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div className="w-full flex flex-col justify-start items-start space-y-4">
|
|
<div className="w-full">
|
|
<div className="sm:flex sm:items-center">
|
|
<div className="sm:flex-auto">
|
|
<p className="text-base font-semibold leading-6 text-gray-900">Access Tokens</p>
|
|
<p className="mt-2 text-sm text-gray-700">A list of all access tokens for your account.</p>
|
|
</div>
|
|
<div className="mt-4 sm:ml-16 sm:mt-0 sm:flex-none">
|
|
<Button
|
|
variant="outlined"
|
|
color="neutral"
|
|
onClick={() => {
|
|
setShowCreateDialog(true);
|
|
}}
|
|
>
|
|
Create
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
<div className="mt-2 flow-root">
|
|
<div className="overflow-x-auto">
|
|
<div className="inline-block min-w-full py-2 align-middle">
|
|
<table className="min-w-full divide-y divide-gray-300">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" className="px-3 py-3.5 text-left text-sm font-semibold text-gray-900">
|
|
Token
|
|
</th>
|
|
<th scope="col" className="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900">
|
|
Description
|
|
</th>
|
|
<th scope="col" className="px-3 py-3.5 text-left text-sm font-semibold text-gray-900">
|
|
Created At
|
|
</th>
|
|
<th scope="col" className="px-3 py-3.5 text-left text-sm font-semibold text-gray-900">
|
|
Expires At
|
|
</th>
|
|
<th scope="col" className="relative py-3.5 pl-3 pr-4">
|
|
<span className="sr-only">Delete</span>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody className="divide-y divide-gray-200">
|
|
{userAccessTokens.map((userAccessToken) => (
|
|
<tr key={userAccessToken.accessToken}>
|
|
<td className="whitespace-nowrap px-3 py-4 text-sm text-gray-900 flex flex-row justify-start items-center gap-x-1">
|
|
<span className="font-mono">{getFormatedAccessToken(userAccessToken.accessToken)}</span>
|
|
<Button color="neutral" variant="plain" size="sm" onClick={() => copyAccessToken(userAccessToken.accessToken)}>
|
|
<Icon.Clipboard className="w-4 h-auto text-gray-500" />
|
|
</Button>
|
|
</td>
|
|
<td className="whitespace-nowrap py-4 pl-4 pr-3 text-sm text-gray-900">{userAccessToken.description}</td>
|
|
<td className="whitespace-nowrap px-3 py-4 text-sm text-gray-500">{String(userAccessToken.issuedAt)}</td>
|
|
<td className="whitespace-nowrap px-3 py-4 text-sm text-gray-500">
|
|
{String(userAccessToken.expiresAt ?? "Never")}
|
|
</td>
|
|
<td className="relative whitespace-nowrap py-4 pl-3 pr-4 text-right text-sm">
|
|
<IconButton
|
|
color="danger"
|
|
variant="plain"
|
|
size="sm"
|
|
onClick={() => {
|
|
handleDeleteAccessToken(userAccessToken.accessToken);
|
|
}}
|
|
>
|
|
<Icon.Trash className="w-4 h-auto" />
|
|
</IconButton>
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{showCreateDialog && (
|
|
<CreateAccessTokenDialog onClose={() => setShowCreateDialog(false)} onConfirm={handleCreateAccessTokenDialogConfirm} />
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default AccessTokenSection;
|