143 lines
4.2 KiB
TypeScript
Executable File
143 lines
4.2 KiB
TypeScript
Executable File
import {Link} from 'react-router-dom';
|
|
import clsx from 'clsx';
|
|
import {AccountSettingsPanel} from '../account-settings-panel';
|
|
import {User} from '../../../user';
|
|
import {IllustratedMessage} from '../../../../ui/images/illustrated-message';
|
|
import {SvgImage} from '../../../../ui/images/svg-image/svg-image';
|
|
import {Button} from '../../../../ui/buttons/button';
|
|
import {FormattedDate} from '../../../../i18n/formatted-date';
|
|
import {AccessToken} from '../../../access-token';
|
|
import {DialogTrigger} from '../../../../ui/overlays/dialog/dialog-trigger';
|
|
import {ConfirmationDialog} from '../../../../ui/overlays/dialog/confirmation-dialog';
|
|
import {useDeleteAccessToken} from './delete-access-token';
|
|
import {CreateNewTokenDialog} from './create-new-token-dialog';
|
|
import {LinkStyle} from '../../../../ui/buttons/external-link';
|
|
import {useAuth} from '../../../use-auth';
|
|
import {Trans} from '../../../../i18n/trans';
|
|
import secureFilesSvg from './secure-files.svg';
|
|
import {useSettings} from '../../../../core/settings/use-settings';
|
|
import {queryClient} from '@common/http/query-client';
|
|
import {AccountSettingsId} from '@common/auth/ui/account-settings/account-settings-sidenav';
|
|
|
|
interface Props {
|
|
user: User;
|
|
}
|
|
export function AccessTokenPanel({user}: Props) {
|
|
const tokens = user.tokens || [];
|
|
const {hasPermission} = useAuth();
|
|
const {api} = useSettings();
|
|
if (!api?.integrated || !hasPermission('api.access')) return null;
|
|
return (
|
|
<AccountSettingsPanel
|
|
id={AccountSettingsId.Developers}
|
|
title={<Trans message="API access tokens" />}
|
|
titleSuffix={
|
|
<Link className={LinkStyle} to="/api-docs" target="_blank">
|
|
<Trans message="Documentation" />
|
|
</Link>
|
|
}
|
|
actions={<CreateNewTokenButton />}
|
|
>
|
|
{!tokens.length ? (
|
|
<IllustratedMessage
|
|
className="py-40"
|
|
image={<SvgImage src={secureFilesSvg} />}
|
|
title={<Trans message="You have no personal access tokens yet" />}
|
|
/>
|
|
) : (
|
|
tokens.map((token, index) => (
|
|
<TokenLine
|
|
token={token}
|
|
key={token.id}
|
|
isLast={index === tokens.length - 1}
|
|
/>
|
|
))
|
|
)}
|
|
</AccountSettingsPanel>
|
|
);
|
|
}
|
|
|
|
interface TokenLineProps {
|
|
token: AccessToken;
|
|
isLast: boolean;
|
|
}
|
|
function TokenLine({token, isLast}: TokenLineProps) {
|
|
return (
|
|
<div
|
|
className={clsx(
|
|
'flex items-center gap-24',
|
|
!isLast && 'mb-12 pb-12 border-b',
|
|
)}
|
|
>
|
|
<div className="text-sm">
|
|
<div className="font-semibold">
|
|
<Trans message="Name" />
|
|
</div>
|
|
<div>{token.name}</div>
|
|
<div className="font-semibold mt-10">
|
|
<Trans message="Last used" />
|
|
</div>
|
|
<div>
|
|
{token.last_used_at ? (
|
|
<FormattedDate date={token.last_used_at} />
|
|
) : (
|
|
<Trans message="Never" />
|
|
)}
|
|
</div>
|
|
</div>
|
|
<DeleteTokenButton token={token} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function CreateNewTokenButton() {
|
|
return (
|
|
<DialogTrigger type="modal">
|
|
<Button variant="flat" color="primary">
|
|
<Trans message="Create token" />
|
|
</Button>
|
|
<CreateNewTokenDialog />
|
|
</DialogTrigger>
|
|
);
|
|
}
|
|
|
|
interface DeleteTokenButtonProps {
|
|
token: AccessToken;
|
|
}
|
|
function DeleteTokenButton({token}: DeleteTokenButtonProps) {
|
|
const deleteToken = useDeleteAccessToken();
|
|
return (
|
|
<DialogTrigger
|
|
type="modal"
|
|
onClose={isConfirmed => {
|
|
if (isConfirmed) {
|
|
deleteToken.mutate(
|
|
{id: token.id},
|
|
{
|
|
onSuccess: () =>
|
|
queryClient.invalidateQueries({queryKey: ['users']}),
|
|
},
|
|
);
|
|
}
|
|
}}
|
|
>
|
|
<Button
|
|
size="xs"
|
|
variant="outline"
|
|
color="danger"
|
|
className="flex-shrink-0 ml-auto"
|
|
>
|
|
<Trans message="Delete" />
|
|
</Button>
|
|
<ConfirmationDialog
|
|
isDanger
|
|
title={<Trans message="Delete token?" />}
|
|
body={
|
|
<Trans message="This token will be deleted immediately and permanently. Once deleted, it can no longer be used to make API requests." />
|
|
}
|
|
confirm={<Trans message="Delete" />}
|
|
/>
|
|
</DialogTrigger>
|
|
);
|
|
}
|