mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-06 03:30:25 -05:00
57 lines
2.3 KiB
TypeScript
57 lines
2.3 KiB
TypeScript
'use client';
|
|
import { Display } from '@/components/display';
|
|
import useGlobalStore from '@/config/use-global';
|
|
import { Icon } from '@iconify/react';
|
|
import { Button } from '@shadcn/ui/button';
|
|
import { Card, CardContent, CardHeader, CardTitle } from '@shadcn/ui/card';
|
|
import { toast } from '@shadcn/ui/lib/sonner';
|
|
import { Sidebar, SidebarContent } from '@shadcn/ui/sidebar';
|
|
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '@shadcn/ui/tooltip';
|
|
import { useTranslations } from 'next-intl';
|
|
import Recharge from './order/recharge';
|
|
|
|
export function SidebarRight({ ...props }: React.ComponentProps<typeof Sidebar>) {
|
|
const { user } = useGlobalStore();
|
|
const t = useTranslations('layout');
|
|
return (
|
|
<Sidebar collapsible='none' side='right' {...props}>
|
|
<SidebarContent>
|
|
<Card>
|
|
<CardHeader className='flex flex-row items-center justify-between space-y-0 p-3 pb-2'>
|
|
<CardTitle className='text-sm font-medium'>{t('accountBalance')}</CardTitle>
|
|
<Recharge variant='link' className='p-0' />
|
|
</CardHeader>
|
|
<CardContent className='p-3 text-2xl font-bold'>
|
|
<Display type='currency' value={user?.balance} />
|
|
</CardContent>
|
|
</Card>
|
|
<Card>
|
|
<CardHeader className='flex flex-row items-center justify-between space-y-0 p-3 pb-2'>
|
|
<CardTitle className='text-sm font-medium'>{t('inviteCode')}</CardTitle>
|
|
<TooltipProvider>
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<Button
|
|
variant='ghost'
|
|
className='size-5 p-0'
|
|
onClick={() => {
|
|
navigator.clipboard.writeText(
|
|
`${location.origin}/auth?invite=${user?.refer_code}`,
|
|
);
|
|
toast.success(t('copySuccess'));
|
|
}}
|
|
>
|
|
<Icon icon='mdi:content-copy' className='text-primary text-2xl' />
|
|
</Button>
|
|
</TooltipTrigger>
|
|
<TooltipContent>{t('copyInviteLink')}</TooltipContent>
|
|
</Tooltip>
|
|
</TooltipProvider>
|
|
</CardHeader>
|
|
<CardContent className='truncate p-3 font-bold'>{user?.refer_code}</CardContent>
|
|
</Card>
|
|
</SidebarContent>
|
|
</Sidebar>
|
|
);
|
|
}
|