* 🎨 feat(web/default): add shadcn-style theme presets, radius prefs, and fix selection badges Integrate the qn-platform–style OKLCH color system into the default frontend while keeping the existing blue-tinted dark tokens for the default theme. Add [data-theme-preset] palettes for seven named presets plus the default zinc-like scale, define [data-theme-radius] overrides so user radius beats preset --radius, and align the Tailwind @custom-variant dark helper with .dark usage. Introduce ThemeCustomizationProvider to own preset and radius state, persist choices in cookies (theme-preset, theme-radius), and sync data-theme-preset / data-theme-radius on <html>. Wrap the tree in main.tsx. Extend ConfigDrawer with theme preset swatches (scoped data-theme-preset) and radius previews wired to context; refactor swatch/card markup so selected CircleCheck badges sit outside clipped rows (remove outer overflow-hidden that hid the centered checkmark). Add i18n keys for preset names, radius, and accessibility labels across en, zh, fr, ja, ru, vi. * 🎨 fix(web): align segmented controls with theme radius tokens - Replace hard-coded inner pill radii (rounded-[5px]) on dashboard chart toolbars with radius-md so the active state follows --radius when users change Radius in Theme Settings. - Use nested radii consistent with TabsList/TabsTrigger: outer rounded-lg (var(--radius)) and inner rounded-md (calc(var(--radius) - 2px)) so the track and active thumb stay concentric at small scales (e.g. 0.3rem) instead of a squared “focus” block inside a rounded shell. - Apply the same pattern to pricing SegmentedControl and the segmented groups in consumption-distribution-chart, model-charts, and user-charts. Verified: bun run typecheck (web/default) * ✨ feat(pricing): enrich model details with uptime sparkline and API documentation Add a compact 30-day uptime sparkline (OpenRouter-style bars + aggregate %) with per-day tooltips, surface it in a status row under quick stats and in the per-group performance table, and extend mock data so uptime series are stable and optionally scoped by group. Introduce an API tab with Shiki-highlighted code samples (cURL, Python, TypeScript, JavaScript), endpoint-type switching, authentication guidance, a supported-parameters table, and mock per-group RPM/TPM/RPD limits. Infer vendor, tokenizer, license, and data-retention hints for a provider & data privacy card on the Overview tab (capabilities/modalities stay with model identity; rate limits stay with the API tab). Update i18n for all new user-facing strings across en, zh, fr, ja, ru, and vi. * 🏆 feat(rankings): add comprehensive rankings dashboard Add a mock-data powered rankings experience with period tabs, model, app, and vendor leaderboards, market share and history charts, movers, new releases, and per-category sections while backend analytics are pending. Link ranked models to pricing details and ranked vendors to filtered pricing results, and include localized copy for all supported frontend locales. * fix(theme): correct theme preset selection state - update Base UI Radio selectors to use data-checked/data-unchecked states. - fix unchecked theme options still showing selected indicators. - isolate the default theme preview tokens to prevent preset changes from leaking into it. * fix(setup): correct usage mode radio state - use Base UI data-checked/data-unchecked states for RadioGroup styling. - hide radio indicators when options are unchecked to avoid setup page display issues. - drive usage mode card and icon selection styles from Base UI state. * fix(auth): submit sign-in and sign-up forms * 🎨 refactor: Align default theme with shadcn Base Nova and prune legacy customization Migrate shadcn UI to Base UI primitives via CLI (`base-nova` / `components.json`) and reinstall full component registry with `--overwrite`, including Hugeicons-backed widgets and newly added registry components. - Remove custom multi-preset/theme-radius system (`ThemeCustomizationProvider`, cookies, preset UI from config drawer); rely on official semantic CSS tokens + light/dark only. - Replace `theme.css` with shadcn’s documented neutral `:root`/`.dark` palette and `@theme inline` mappings (plus skeleton token vars for existing shimmer usage). - Update global styles for Base UI: collapsible animation uses `--collapsible-panel-height`; clarify scroll-lock override comment. Application compatibility: - Keep minimal shims where app code diverged from official APIs (popover collision props, combobox legacy `options` callers, Spinner prop typing). - Switch interactive styling from Radix-era `data-state` / `--radix-*` selectors to Base UI semantics (`data-open`, `data-popup-open`, `data-panel-open`, `--anchor-width`, etc.) Tooling / docs / build: - Rename Rsbuild vendor chunk grouping to `@base-ui` + transitive `@radix-ui`. - Refresh AGENTS.md / CLAUDE.md / classic→default sync skill for Base UI stack. - Bump `package.json` / lockfile for shadcn-postinstall deps (Hugeicons, chart stack, themes, etc.) Verified: `bun run typecheck` passes. Note: `bun run lint` still reports pre-existing hooks rule violations elsewhere; not addressed in this change. * 🎨 chore(web/default): unify table toolbar, relocate usage stats, refine filters - Refactor DataTableToolbar to a single wrapping flex row with a right-aligned action cluster (Reset / Search / View / Expand) for a cleaner Ant Design Pro–style filter bar; remove the dedicated stats row and the toolbar `stats` prop. - Move Common Logs summary badges (Usage / RPM / TPM) and the sensitive- data visibility toggle into the page header via CommonLogsHeaderActions and SectionPageLayout.Actions so the toolbar stays focused on filters. - Slim CommonLogsFilterBar props (no stats / preActions eye control). - Improve CompactDateTimeRangePicker: show minute-precision labels on the trigger (seconds omitted; aligns with datetime-local inputs); widen the trigger on sm+ breakpoints so the full range is visible without truncation; apply the same width in task logs filters. - Simplify DataTableViewOptions: text-only “View” trigger, no sliders icon. - Earlier layout tweak: extra top padding on SectionPageLayout scroll content so control focus rings are not clipped by overflow. * feat(web/default): Base UI migration and component foundation Migrate from Radix UI to Base UI, rewrite core UI primitives, update dependencies (recharts, date-fns, next-themes), add shadcn agent skill documentation, and refresh AI element components. This is the foundational work from the v2/localmain lineage that was not covered by the individual feature commits above. --------- Co-authored-by: t0ng7u <dev@aiass.cc> Co-authored-by: QuentinHsu <xuquentinyang@gmail.com>
599 lines
21 KiB
TypeScript
Vendored
599 lines
21 KiB
TypeScript
Vendored
import { useEffect, useState, type ReactNode } from 'react'
|
|
import { useForm } from 'react-hook-form'
|
|
import { zodResolver } from '@hookform/resolvers/zod'
|
|
import { useQuery } from '@tanstack/react-query'
|
|
import {
|
|
ChevronDown,
|
|
KeyRound,
|
|
Settings2,
|
|
WalletCards,
|
|
type LucideIcon,
|
|
} from 'lucide-react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { toast } from 'sonner'
|
|
import { getUserModels, getUserGroups } from '@/lib/api'
|
|
import { getCurrencyDisplay, getCurrencyLabel } from '@/lib/currency'
|
|
import { cn } from '@/lib/utils'
|
|
import { useStatus } from '@/hooks/use-status'
|
|
import { Button } from '@/components/ui/button'
|
|
import {
|
|
Collapsible,
|
|
CollapsibleContent,
|
|
CollapsibleTrigger,
|
|
} from '@/components/ui/collapsible'
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormDescription,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from '@/components/ui/form'
|
|
import { Input } from '@/components/ui/input'
|
|
import {
|
|
Sheet,
|
|
SheetClose,
|
|
SheetContent,
|
|
SheetDescription,
|
|
SheetFooter,
|
|
SheetHeader,
|
|
SheetTitle,
|
|
} from '@/components/ui/sheet'
|
|
import { Switch } from '@/components/ui/switch'
|
|
import { Textarea } from '@/components/ui/textarea'
|
|
import { DateTimePicker } from '@/components/datetime-picker'
|
|
import { MultiSelect } from '@/components/multi-select'
|
|
import { createApiKey, updateApiKey, getApiKey } from '../api'
|
|
import { ERROR_MESSAGES, SUCCESS_MESSAGES } from '../constants'
|
|
import {
|
|
apiKeyFormSchema,
|
|
type ApiKeyFormValues,
|
|
getApiKeyFormDefaultValues,
|
|
transformFormDataToPayload,
|
|
transformApiKeyToFormDefaults,
|
|
} from '../lib'
|
|
import { type ApiKey } from '../types'
|
|
import {
|
|
ApiKeyGroupCombobox,
|
|
type ApiKeyGroupOption,
|
|
} from './api-key-group-combobox'
|
|
import { useApiKeys } from './api-keys-provider'
|
|
|
|
type ApiKeyMutateDrawerProps = {
|
|
open: boolean
|
|
onOpenChange: (open: boolean) => void
|
|
currentRow?: ApiKey
|
|
side?: 'left' | 'right'
|
|
}
|
|
|
|
type ApiKeyFormSectionProps = {
|
|
title: string
|
|
description: string
|
|
icon: LucideIcon
|
|
children: ReactNode
|
|
}
|
|
|
|
function ApiKeyFormSection(props: ApiKeyFormSectionProps) {
|
|
const Icon = props.icon
|
|
|
|
return (
|
|
<section className='bg-card rounded-lg border'>
|
|
<div className='flex items-center gap-2.5 border-b px-3 py-2.5 sm:gap-3 sm:px-4 sm:py-3'>
|
|
<div className='bg-muted text-muted-foreground flex size-8 shrink-0 items-center justify-center rounded-lg border sm:size-10'>
|
|
<Icon className='size-4 sm:size-5' />
|
|
</div>
|
|
<div className='min-w-0'>
|
|
<h3 className='text-sm leading-none font-medium'>{props.title}</h3>
|
|
<p className='text-muted-foreground mt-0.5 text-xs sm:mt-1'>
|
|
{props.description}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div className='space-y-3 p-3 sm:space-y-4 sm:p-4'>{props.children}</div>
|
|
</section>
|
|
)
|
|
}
|
|
|
|
export function ApiKeysMutateDrawer({
|
|
open,
|
|
onOpenChange,
|
|
currentRow,
|
|
side = 'right',
|
|
}: ApiKeyMutateDrawerProps) {
|
|
const { t } = useTranslation()
|
|
const isUpdate = !!currentRow
|
|
const { triggerRefresh } = useApiKeys()
|
|
const { status } = useStatus()
|
|
const [isSubmitting, setIsSubmitting] = useState(false)
|
|
const [advancedOpen, setAdvancedOpen] = useState(false)
|
|
const defaultUseAutoGroup = status?.default_use_auto_group === true
|
|
|
|
// Fetch models
|
|
const { data: modelsData } = useQuery({
|
|
queryKey: ['user-models'],
|
|
queryFn: getUserModels,
|
|
staleTime: 5 * 60 * 1000, // Cache for 5 minutes
|
|
})
|
|
|
|
// Fetch groups
|
|
const { data: groupsData } = useQuery({
|
|
queryKey: ['user-groups'],
|
|
queryFn: getUserGroups,
|
|
staleTime: 5 * 60 * 1000,
|
|
})
|
|
|
|
const models = modelsData?.data || []
|
|
const groupsRaw = groupsData?.data || {}
|
|
const groups: ApiKeyGroupOption[] = Object.entries(groupsRaw).map(
|
|
([key, info]) => ({
|
|
value: key,
|
|
label: key,
|
|
desc: info.desc || key,
|
|
ratio: info.ratio,
|
|
})
|
|
)
|
|
|
|
// Add auto group if configured
|
|
if (!groups.some((g) => g.value === 'auto')) {
|
|
groups.unshift({
|
|
value: 'auto',
|
|
label: 'auto',
|
|
desc: t('Auto (Circuit Breaker)'),
|
|
})
|
|
}
|
|
|
|
const form = useForm<ApiKeyFormValues>({
|
|
resolver: zodResolver(apiKeyFormSchema),
|
|
defaultValues: getApiKeyFormDefaultValues(defaultUseAutoGroup),
|
|
})
|
|
|
|
// Load existing data when updating
|
|
useEffect(() => {
|
|
if (open && isUpdate && currentRow) {
|
|
// For update, fetch fresh data
|
|
getApiKey(currentRow.id).then((result) => {
|
|
if (result.success && result.data) {
|
|
form.reset(transformApiKeyToFormDefaults(result.data))
|
|
}
|
|
})
|
|
} else if (open && !isUpdate) {
|
|
// For create, reset to defaults
|
|
form.reset(getApiKeyFormDefaultValues(defaultUseAutoGroup))
|
|
}
|
|
}, [open, isUpdate, currentRow, form, defaultUseAutoGroup])
|
|
|
|
const onSubmit = async (data: ApiKeyFormValues) => {
|
|
setIsSubmitting(true)
|
|
try {
|
|
const basePayload = transformFormDataToPayload(data)
|
|
|
|
if (isUpdate && currentRow) {
|
|
const result = await updateApiKey({
|
|
...basePayload,
|
|
id: currentRow.id,
|
|
})
|
|
if (result.success) {
|
|
toast.success(t(SUCCESS_MESSAGES.API_KEY_UPDATED))
|
|
onOpenChange(false)
|
|
triggerRefresh()
|
|
} else {
|
|
toast.error(result.message || t(ERROR_MESSAGES.UPDATE_FAILED))
|
|
}
|
|
} else {
|
|
// Create mode - handle batch creation
|
|
const count = data.tokenCount || 1
|
|
let successCount = 0
|
|
|
|
for (let i = 0; i < count; i++) {
|
|
const result = await createApiKey({
|
|
...basePayload,
|
|
name:
|
|
i === 0 && data.name
|
|
? data.name
|
|
: `${data.name || 'default'}-${Math.random().toString(36).slice(2, 8)}`,
|
|
})
|
|
if (result.success) {
|
|
successCount++
|
|
} else {
|
|
toast.error(result.message || t(ERROR_MESSAGES.CREATE_FAILED))
|
|
break
|
|
}
|
|
}
|
|
|
|
if (successCount > 0) {
|
|
toast.success(
|
|
t('Successfully created {{count}} API Key(s)', {
|
|
count: successCount,
|
|
})
|
|
)
|
|
onOpenChange(false)
|
|
triggerRefresh()
|
|
}
|
|
}
|
|
} catch (_error) {
|
|
toast.error(t(ERROR_MESSAGES.UNEXPECTED))
|
|
} finally {
|
|
setIsSubmitting(false)
|
|
}
|
|
}
|
|
|
|
const handleSetExpiry = (months: number, days: number, hours: number) => {
|
|
if (months === 0 && days === 0 && hours === 0) {
|
|
form.setValue('expired_time', undefined)
|
|
return
|
|
}
|
|
|
|
const now = new Date()
|
|
now.setMonth(now.getMonth() + months)
|
|
now.setDate(now.getDate() + days)
|
|
now.setHours(now.getHours() + hours)
|
|
|
|
form.setValue('expired_time', now)
|
|
}
|
|
|
|
const { meta: currencyMeta } = getCurrencyDisplay()
|
|
const currencyLabel = getCurrencyLabel()
|
|
const tokensOnly = currencyMeta.kind === 'tokens'
|
|
const quotaLabel = t('Quota ({{currency}})', { currency: currencyLabel })
|
|
const quotaPlaceholder = tokensOnly
|
|
? t('Enter quota in tokens')
|
|
: t('Enter quota in {{currency}}', { currency: currencyLabel })
|
|
const selectedGroup = form.watch('group')
|
|
const unlimitedQuota = form.watch('unlimited_quota')
|
|
|
|
return (
|
|
<Sheet
|
|
open={open}
|
|
onOpenChange={(v) => {
|
|
onOpenChange(v)
|
|
if (!v) {
|
|
form.reset()
|
|
}
|
|
}}
|
|
>
|
|
<SheetContent
|
|
side={side}
|
|
className='bg-background flex !h-dvh !w-screen max-w-none gap-0 overflow-hidden p-0 sm:!w-full sm:!max-w-[620px]'
|
|
>
|
|
<SheetHeader className='bg-background border-b px-4 py-3 text-start sm:px-5 sm:py-4'>
|
|
<SheetTitle className='text-base sm:text-lg'>
|
|
{isUpdate ? t('Update API Key') : t('Create API Key')}
|
|
</SheetTitle>
|
|
<SheetDescription className='pr-6 text-xs sm:text-sm'>
|
|
{isUpdate
|
|
? t('Update the API key by providing necessary info.')
|
|
: t('Add a new API key by providing necessary info.')}{' '}
|
|
{t("Click save when you're done.")}
|
|
</SheetDescription>
|
|
</SheetHeader>
|
|
<Form {...form}>
|
|
<form
|
|
id='api-key-form'
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
className='min-h-0 flex-1 space-y-3 overflow-y-auto overscroll-contain px-3 py-3 sm:space-y-4 sm:px-4 sm:py-4'
|
|
>
|
|
<ApiKeyFormSection
|
|
title={t('Basic Information')}
|
|
description={t('Set API key basic information')}
|
|
icon={KeyRound}
|
|
>
|
|
<FormField
|
|
control={form.control}
|
|
name='name'
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t('Name')}</FormLabel>
|
|
<FormControl>
|
|
<Input {...field} placeholder={t('Enter a name')} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name='group'
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t('Group')}</FormLabel>
|
|
<FormControl>
|
|
<ApiKeyGroupCombobox
|
|
options={groups}
|
|
value={field.value}
|
|
onValueChange={field.onChange}
|
|
placeholder={t('Select a group')}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
{selectedGroup === 'auto' && (
|
|
<FormField
|
|
control={form.control}
|
|
name='cross_group_retry'
|
|
render={({ field }) => (
|
|
<FormItem className='flex min-h-16 flex-row items-center justify-between gap-3 rounded-lg border px-3 py-2.5 sm:min-h-20 sm:gap-4 sm:px-4 sm:py-3'>
|
|
<div className='space-y-0.5'>
|
|
<FormLabel className='text-sm'>
|
|
{t('Cross-group retry')}
|
|
</FormLabel>
|
|
<FormDescription className='line-clamp-2 text-xs sm:line-clamp-none'>
|
|
{t(
|
|
'When enabled, if channels in the current group fail, it will try channels in the next group in order.'
|
|
)}
|
|
</FormDescription>
|
|
</div>
|
|
<FormControl>
|
|
<Switch
|
|
checked={!!field.value}
|
|
onCheckedChange={field.onChange}
|
|
/>
|
|
</FormControl>
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
)}
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name='expired_time'
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t('Expiration Time')}</FormLabel>
|
|
<div className='grid gap-2 sm:grid-cols-[minmax(0,1fr)_auto] sm:items-center'>
|
|
<FormControl>
|
|
<DateTimePicker
|
|
value={field.value}
|
|
onChange={field.onChange}
|
|
placeholder={t('Never expires')}
|
|
className='min-w-0 [&_input[type=time]]:w-24 sm:[&_input[type=time]]:w-32'
|
|
/>
|
|
</FormControl>
|
|
<div className='grid grid-cols-4 gap-2 sm:flex'>
|
|
<Button
|
|
type='button'
|
|
variant='outline'
|
|
size='sm'
|
|
className='px-2 text-xs sm:px-3 sm:text-sm'
|
|
onClick={() => handleSetExpiry(0, 0, 0)}
|
|
>
|
|
{t('Never')}
|
|
</Button>
|
|
<Button
|
|
type='button'
|
|
variant='outline'
|
|
size='sm'
|
|
className='px-2 text-xs sm:px-3 sm:text-sm'
|
|
onClick={() => handleSetExpiry(1, 0, 0)}
|
|
>
|
|
{t('1 Month')}
|
|
</Button>
|
|
<Button
|
|
type='button'
|
|
variant='outline'
|
|
size='sm'
|
|
className='px-2 text-xs sm:px-3 sm:text-sm'
|
|
onClick={() => handleSetExpiry(0, 1, 0)}
|
|
>
|
|
{t('1 Day')}
|
|
</Button>
|
|
<Button
|
|
type='button'
|
|
variant='outline'
|
|
size='sm'
|
|
className='px-2 text-xs sm:px-3 sm:text-sm'
|
|
onClick={() => handleSetExpiry(0, 0, 1)}
|
|
>
|
|
{t('1 Hour')}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
{!isUpdate && (
|
|
<FormField
|
|
control={form.control}
|
|
name='tokenCount'
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t('Quantity')}</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
{...field}
|
|
type='number'
|
|
min='1'
|
|
placeholder={t('Number of keys to create')}
|
|
onChange={(e) =>
|
|
field.onChange(parseInt(e.target.value, 10) || 1)
|
|
}
|
|
/>
|
|
</FormControl>
|
|
<FormDescription>
|
|
{t(
|
|
'Create multiple API keys at once (random suffix will be added to names)'
|
|
)}
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
)}
|
|
</ApiKeyFormSection>
|
|
|
|
<ApiKeyFormSection
|
|
title={t('Quota Settings')}
|
|
description={t('Set quota amount and limits')}
|
|
icon={WalletCards}
|
|
>
|
|
{!unlimitedQuota && (
|
|
<FormField
|
|
control={form.control}
|
|
name='remain_quota_dollars'
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{quotaLabel}</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
{...field}
|
|
type='number'
|
|
step={tokensOnly ? 1 : 0.01}
|
|
placeholder={quotaPlaceholder}
|
|
onChange={(e) =>
|
|
field.onChange(parseFloat(e.target.value) || 0)
|
|
}
|
|
/>
|
|
</FormControl>
|
|
<FormDescription>
|
|
{tokensOnly
|
|
? t('Enter the quota amount in tokens')
|
|
: t('Enter the quota amount in {{currency}}', {
|
|
currency: currencyLabel,
|
|
})}
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
)}
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name='unlimited_quota'
|
|
render={({ field }) => (
|
|
<FormItem className='flex min-h-16 flex-row items-center justify-between gap-3 rounded-lg border px-3 py-2.5 sm:min-h-20 sm:gap-4 sm:px-4 sm:py-3'>
|
|
<div className='space-y-0.5'>
|
|
<FormLabel className='text-sm'>
|
|
{t('Unlimited Quota')}
|
|
</FormLabel>
|
|
<FormDescription className='text-xs'>
|
|
{t('Enable unlimited quota for this API key')}
|
|
</FormDescription>
|
|
</div>
|
|
<FormControl>
|
|
<Switch
|
|
checked={field.value}
|
|
onCheckedChange={field.onChange}
|
|
/>
|
|
</FormControl>
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</ApiKeyFormSection>
|
|
|
|
<Collapsible open={advancedOpen} onOpenChange={setAdvancedOpen}>
|
|
<section className='bg-card rounded-lg border'>
|
|
<CollapsibleTrigger
|
|
render={
|
|
<button
|
|
type='button'
|
|
className='hover:bg-muted/50 flex w-full items-center gap-2.5 px-3 py-2.5 text-left transition-colors sm:gap-3 sm:px-4 sm:py-3'
|
|
/>
|
|
}
|
|
>
|
|
<div className='bg-muted text-muted-foreground flex size-8 shrink-0 items-center justify-center rounded-lg border sm:size-10'>
|
|
<Settings2 className='size-4 sm:size-5' />
|
|
</div>
|
|
<div className='min-w-0 flex-1'>
|
|
<h3 className='text-sm leading-none font-medium'>
|
|
{t('Advanced Settings')}
|
|
</h3>
|
|
<p className='text-muted-foreground mt-1 text-xs'>
|
|
{t('Set API key access restrictions')}
|
|
</p>
|
|
</div>
|
|
<ChevronDown
|
|
className={cn(
|
|
'text-muted-foreground size-4 shrink-0 transition-transform',
|
|
advancedOpen && 'rotate-180'
|
|
)}
|
|
/>
|
|
</CollapsibleTrigger>
|
|
<CollapsibleContent>
|
|
<div className='space-y-3 border-t p-3 sm:space-y-4 sm:p-4'>
|
|
<FormField
|
|
control={form.control}
|
|
name='model_limits'
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t('Model Limits')}</FormLabel>
|
|
<FormControl>
|
|
<MultiSelect
|
|
options={models.map((m) => ({
|
|
label: m,
|
|
value: m,
|
|
}))}
|
|
selected={field.value}
|
|
onChange={field.onChange}
|
|
placeholder={t(
|
|
'Select models (empty for allow all)'
|
|
)}
|
|
/>
|
|
</FormControl>
|
|
<FormDescription>
|
|
{t('Limit which models can be used with this key')}
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name='allow_ips'
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>
|
|
{t('IP Whitelist (supports CIDR)')}
|
|
</FormLabel>
|
|
<FormControl>
|
|
<Textarea
|
|
{...field}
|
|
className='min-h-20 resize-none'
|
|
placeholder={t(
|
|
'One IP per line (empty for no restriction)'
|
|
)}
|
|
rows={3}
|
|
/>
|
|
</FormControl>
|
|
<FormDescription>
|
|
{t(
|
|
'Do not over-trust this feature. IP may be spoofed. Please use with nginx, CDN and other gateways.'
|
|
)}
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</div>
|
|
</CollapsibleContent>
|
|
</section>
|
|
</Collapsible>
|
|
</form>
|
|
</Form>
|
|
<SheetFooter className='bg-background grid grid-cols-2 gap-2 border-t px-3 py-3 sm:flex sm:flex-row sm:justify-end sm:px-5 sm:py-4'>
|
|
<SheetClose
|
|
render={<Button variant='outline' className='w-full sm:w-auto' />}
|
|
>
|
|
{t('Close')}
|
|
</SheetClose>
|
|
<Button
|
|
form='api-key-form'
|
|
type='submit'
|
|
disabled={isSubmitting}
|
|
className='w-full sm:w-auto'
|
|
>
|
|
{isSubmitting ? t('Saving...') : t('Save changes')}
|
|
</Button>
|
|
</SheetFooter>
|
|
</SheetContent>
|
|
</Sheet>
|
|
)
|
|
}
|