mirror of
https://github.com/VaalaCat/frp-panel.git
synced 2025-10-13 02:53:53 +08:00
98 lines
3.3 KiB
TypeScript
98 lines
3.3 KiB
TypeScript
import * as React from "react"
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuLabel,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuShortcut,
|
|
DropdownMenuTrigger,
|
|
} from "@/components/ui/dropdown-menu"
|
|
import { useRouter } from 'next/navigation'
|
|
import {
|
|
SidebarMenu,
|
|
SidebarMenuButton,
|
|
SidebarMenuItem,
|
|
useSidebar,
|
|
} from "@/components/ui/sidebar"
|
|
import { CaretSortIcon, PlusIcon } from "@radix-ui/react-icons"
|
|
import { useTranslation } from "react-i18next"
|
|
|
|
export function TeamSwitcher({
|
|
teams,
|
|
}: {
|
|
teams: {
|
|
name: string
|
|
logo: React.ElementType
|
|
plan: string
|
|
}[]
|
|
}) {
|
|
const { isMobile } = useSidebar()
|
|
const [activeTeam, setActiveTeam] = React.useState(teams[0])
|
|
const router = useRouter()
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<SidebarMenu>
|
|
<SidebarMenuItem>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<SidebarMenuButton
|
|
size="lg"
|
|
className="data-[state=open]:bg-sidebar-accent data-[state=open]:text-sidebar-accent-foreground"
|
|
>
|
|
<div className="flex aspect-square size-8 items-center justify-center rounded-lg bg-sidebar-primary text-sidebar-primary-foreground">
|
|
<activeTeam.logo className="size-4" />
|
|
</div>
|
|
<div className="grid flex-1 text-left text-sm leading-tight">
|
|
<span className="truncate font-semibold">
|
|
{activeTeam.name}
|
|
</span>
|
|
<span className="truncate text-xs">{activeTeam.plan}</span>
|
|
</div>
|
|
<CaretSortIcon className="ml-auto" />
|
|
</SidebarMenuButton>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent
|
|
className="w-[--radix-dropdown-menu-trigger-width] min-w-56 rounded-lg"
|
|
align="start"
|
|
side={isMobile ? "bottom" : "right"}
|
|
sideOffset={4}
|
|
>
|
|
<DropdownMenuLabel className="text-xs text-muted-foreground">
|
|
{t('team.title')}
|
|
</DropdownMenuLabel>
|
|
{teams.map((team, index) => (
|
|
<DropdownMenuItem
|
|
key={team.name}
|
|
onClick={() => { router.push('/') }}
|
|
className="gap-2 p-2"
|
|
>
|
|
<div className="flex size-6 items-center justify-center rounded-sm border">
|
|
<team.logo className="size-4 shrink-0" />
|
|
</div>
|
|
<div className="flex flex-1 flex-col">
|
|
<div>
|
|
{team.name}
|
|
</div>
|
|
<div className="text-xs text-muted-foreground">
|
|
{team.plan}
|
|
</div>
|
|
</div>
|
|
<DropdownMenuShortcut>⌘{index + 1}</DropdownMenuShortcut>
|
|
</DropdownMenuItem>
|
|
))}
|
|
{/* <DropdownMenuSeparator />
|
|
<DropdownMenuItem className="gap-2 p-2">
|
|
<div className="flex size-6 items-center justify-center rounded-md border bg-background">
|
|
<PlusIcon className="size-4" />
|
|
</div>
|
|
<div className="font-medium text-muted-foreground">{t('team.add')}</div>
|
|
</DropdownMenuItem> */}
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</SidebarMenuItem>
|
|
</SidebarMenu>
|
|
)
|
|
}
|