Files
frp-panel/www/components/app-sidebar.tsx
VaalaCat 373276633f feat: proxy list [新增代理列表实体]
refactor: change client manager structure [重构:更改客户端管理器结构适配影子客户端]

feat: add proxy config table and dao [添加代理配置独立数据表和DAO层]

feat: new proxy config entity [新建的代理配置实体]

feat: update and delete proxy config [更新和删除代理配置接口]

feat: get config api and beautify proxy item [更新获取配置API并美化代理项]

feat: change proxy form style [美化修改代理的表单样式]

fix: client edit [修复:编辑客户端的问题]

fix: shadow copy status error [修复:影子客户端复制状态错误]

fix: http proxy bug [修复:HTTP代理类型的错误]

fix: cannot update client [修复:无法更新客户端]

feat: record trigger refetch [自动重新获取表格内的数据]

fix: filter string length [修复:过滤字符串长度]

fix: add client error [修复:添加客户端错误]

fix: do not notify client when stopped [修复:停止时不通知客户端]

fix: delete when proxy duplicate [修复:代理重复时删除]

feat: add http proxy location [添加HTTP代理路由路径]

chore: edit style [编辑样式美化]

fix: remove expired client [修复:自动移除过期客户端]

feat: proxy status [新增代理状态提示]

fix: build [修复:构建]

fix: refetch trigger [修复:重新获取数据的问题]

fix: remove all expired client [修复:移除所有过期客户端]

feat: i18n for proxy [代理页面的国际化翻译]
2024-12-20 12:18:28 +00:00

74 lines
2.4 KiB
TypeScript

import * as React from "react"
import { NavMain } from "@/components/nav-main"
import { NavUser } from "@/components/nav-user"
import {
Sidebar,
SidebarContent,
SidebarFooter,
SidebarHeader,
SidebarMenuButton,
SidebarRail,
} from "@/components/ui/sidebar"
import { $platformInfo, $userInfo } from "@/store/user"
import { useStore } from "@nanostores/react"
import { TbBuildingTunnel } from "react-icons/tb"
import { RegisterAndLogin } from "./header"
import { useRouter } from "next/navigation"
import { useQuery } from "@tanstack/react-query"
import { getPlatformInfo } from "@/api/platform"
import { getNavItems } from '@/config/nav'
import { useTranslation } from 'react-i18next'
export interface AppSidebarProps extends React.ComponentProps<typeof Sidebar> {
children?: React.ReactNode
footer?: React.ReactNode
}
export function AppSidebar({ ...props }: AppSidebarProps) {
const router = useRouter()
const { t } = useTranslation()
const userInfo = useStore($userInfo)
const { data: platformInfo } = useQuery({
queryKey: ['platformInfo'],
queryFn: getPlatformInfo,
})
React.useEffect(() => {
$platformInfo.set(platformInfo)
}, [platformInfo])
return (
<Sidebar collapsible="icon" {...props}>
<SidebarHeader>
<SidebarMenuButton
size="lg"
className="data-[state=open]:bg-sidebar-accent data-[state=open]:text-sidebar-accent-foreground"
onClick={() => router.push("/")}
>
<div className="flex aspect-square size-8 items-center justify-center rounded-lg bg-sidebar-primary text-sidebar-primary-foreground">
<TbBuildingTunnel className="size-4" />
</div>
<div className="grid flex-1 text-left text-sm leading-tight">
<span className="truncate font-semibold font-mono">
{t('app.title')}
</span>
<span className="truncate text-xs font-mono">{t('app.subtitle')}</span>
</div>
</SidebarMenuButton>
<NavMain items={getNavItems(t)} />
</SidebarHeader>
<SidebarContent>
{props.children}
</SidebarContent>
<SidebarFooter>
{props.footer}
<div className="flex w-full flex-row group-data-[collapsible=icon]:flex-col-reverse gap-2 justify-between">
{userInfo && <NavUser user={userInfo} />}
{!userInfo && <RegisterAndLogin />}
</div>
</SidebarFooter>
<SidebarRail />
</Sidebar>
)
}