chore: implemented feedback plus some restructuring

This commit is contained in:
Catalin Pit
2024-01-17 12:44:25 +02:00
parent a1215df91a
commit 3b82ba57f3
6 changed files with 15 additions and 6 deletions

View File

@ -3,6 +3,7 @@
import Link from 'next/link'; import Link from 'next/link';
import { import {
Braces,
CreditCard, CreditCard,
Lock, Lock,
LogOut, LogOut,
@ -97,6 +98,13 @@ export const ProfileDropdown = ({ user }: ProfileDropdownProps) => {
</Link> </Link>
</DropdownMenuItem> </DropdownMenuItem>
<DropdownMenuItem asChild>
<Link href="/settings/tokens" className="cursor-pointer">
<Braces className="mr-2 h-4 w-4" />
API Tokens
</Link>
</DropdownMenuItem>
{isBillingEnabled && ( {isBillingEnabled && (
<DropdownMenuItem asChild> <DropdownMenuItem asChild>
<Link href="/settings/billing" className="cursor-pointer"> <Link href="/settings/billing" className="cursor-pointer">

View File

@ -48,12 +48,12 @@ export const DesktopNav = ({ className, ...props }: DesktopNavProps) => {
</Button> </Button>
</Link> </Link>
<Link href="/settings/token"> <Link href="/settings/tokens">
<Button <Button
variant="ghost" variant="ghost"
className={cn( className={cn(
'w-full justify-start', 'w-full justify-start',
pathname?.startsWith('/settings/token') && 'bg-secondary', pathname?.startsWith('/settings/tokens') && 'bg-secondary',
)} )}
> >
<Braces className="mr-2 h-5 w-5" /> <Braces className="mr-2 h-5 w-5" />

View File

@ -51,12 +51,12 @@ export const MobileNav = ({ className, ...props }: MobileNavProps) => {
</Button> </Button>
</Link> </Link>
<Link href="/settings/token"> <Link href="/settings/tokens">
<Button <Button
variant="ghost" variant="ghost"
className={cn( className={cn(
'w-full justify-start', 'w-full justify-start',
pathname?.startsWith('/settings/token') && 'bg-secondary', pathname?.startsWith('/settings/tokens') && 'bg-secondary',
)} )}
> >
<Braces className="mr-2 h-5 w-5" /> <Braces className="mr-2 h-5 w-5" />

View File

@ -148,7 +148,7 @@ export default function DeleteTokenDialog({ token, onDelete, children }: DeleteT
/> />
<DialogFooter> <DialogFooter>
<div className="flex w-full flex-1 flex-nowrap gap-4"> <div className="flex w-full flex-nowrap gap-4">
<Button <Button
type="button" type="button"
variant="secondary" variant="secondary"
@ -161,6 +161,7 @@ export default function DeleteTokenDialog({ token, onDelete, children }: DeleteT
<Button <Button
type="submit" type="submit"
variant="destructive" variant="destructive"
className="flex-1"
disabled={!form.formState.isValid} disabled={!form.formState.isValid}
loading={form.formState.isSubmitting} loading={form.formState.isSubmitting}
> >

View File

@ -25,7 +25,7 @@ export const createApiToken = async ({ userId, tokenName }: CreateApiTokenInput)
}); });
if (!dbToken) { if (!dbToken) {
throw new Error(`Failed to create the API token`); throw new Error('Failed to create the API token');
} }
return { return {