feat(web/default): unified UI overhaul — Base UI migration, theme presets, rankings dashboard, and table toolbar refactor (#4633)
* 🎨 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>
This commit is contained in:
+4
-1
@@ -88,7 +88,10 @@ export function PresetSelector(props: PresetSelectorProps) {
|
||||
<div className='grid grid-cols-1 gap-3 sm:grid-cols-2'>
|
||||
<div className='space-y-1.5'>
|
||||
<Label>{t('Preset Template')}</Label>
|
||||
<Select value={selectedPreset} onValueChange={handlePresetChange}>
|
||||
<Select
|
||||
value={selectedPreset}
|
||||
onValueChange={(v) => v !== null && handlePresetChange(v)}
|
||||
>
|
||||
<SelectTrigger className='w-full'>
|
||||
<SelectValue placeholder={t('Select a preset...')} />
|
||||
</SelectTrigger>
|
||||
|
||||
+5
-5
@@ -387,11 +387,11 @@ export function ChannelAffinitySection(props: Props) {
|
||||
JSON
|
||||
</Button>
|
||||
<DropdownMenu>
|
||||
<DropdownMenuTrigger asChild>
|
||||
<Button variant='outline' size='sm'>
|
||||
<Plus className='mr-1 h-3 w-3' />
|
||||
{t('Add Rule')}
|
||||
</Button>
|
||||
<DropdownMenuTrigger
|
||||
render={<Button variant='outline' size='sm' />}
|
||||
>
|
||||
<Plus className='mr-1 h-3 w-3' />
|
||||
{t('Add Rule')}
|
||||
</DropdownMenuTrigger>
|
||||
<DropdownMenuContent>
|
||||
<DropdownMenuItem
|
||||
|
||||
+16
-10
@@ -277,9 +277,13 @@ export function RuleEditorDialog(props: Props) {
|
||||
<div key={idx} className='flex items-center gap-2'>
|
||||
<Select
|
||||
value={src.type}
|
||||
onValueChange={(v: KeySource['type']) => {
|
||||
onValueChange={(v) => {
|
||||
if (v === null) return
|
||||
const next = [...keySources]
|
||||
next[idx] = normalizeKeySource({ ...src, type: v })
|
||||
next[idx] = normalizeKeySource({
|
||||
...src,
|
||||
type: v as KeySource['type'],
|
||||
})
|
||||
setKeySources(next)
|
||||
}}
|
||||
>
|
||||
@@ -333,14 +337,16 @@ export function RuleEditorDialog(props: Props) {
|
||||
|
||||
{/* Advanced */}
|
||||
<Collapsible open={advancedOpen} onOpenChange={setAdvancedOpen}>
|
||||
<CollapsibleTrigger asChild>
|
||||
<Button
|
||||
type='button'
|
||||
variant='ghost'
|
||||
className='w-full justify-start'
|
||||
>
|
||||
{advancedOpen ? '▼' : '▶'} {t('Advanced Settings')}
|
||||
</Button>
|
||||
<CollapsibleTrigger
|
||||
render={
|
||||
<Button
|
||||
type='button'
|
||||
variant='ghost'
|
||||
className='w-full justify-start'
|
||||
/>
|
||||
}
|
||||
>
|
||||
{advancedOpen ? '▼' : '▶'} {t('Advanced Settings')}
|
||||
</CollapsibleTrigger>
|
||||
<CollapsibleContent className='space-y-3 pt-2'>
|
||||
<div className='grid gap-1.5'>
|
||||
|
||||
+5
-10
@@ -1,17 +1,12 @@
|
||||
import { Outlet } from '@tanstack/react-router'
|
||||
import { Main } from '@/components/layout'
|
||||
import { AppHeader } from '@/components/layout/components/app-header'
|
||||
|
||||
export function SystemSettings() {
|
||||
return (
|
||||
<>
|
||||
<AppHeader />
|
||||
|
||||
<Main>
|
||||
<div className='min-h-0 flex-1 px-4 pt-6 pb-4'>
|
||||
<Outlet />
|
||||
</div>
|
||||
</Main>
|
||||
</>
|
||||
<Main>
|
||||
<div className='min-h-0 flex-1 px-4 pt-6 pb-4'>
|
||||
<Outlet />
|
||||
</div>
|
||||
</Main>
|
||||
)
|
||||
}
|
||||
|
||||
+7
-5
@@ -213,11 +213,13 @@ export function PaymentMethodsVisualEditor({
|
||||
</div>
|
||||
<div className='flex gap-2'>
|
||||
<Popover>
|
||||
<PopoverTrigger asChild>
|
||||
<Button variant='outline' className='flex-1 sm:flex-none'>
|
||||
<Lightbulb className='h-4 w-4 sm:mr-2' />
|
||||
<span className='sm:inline'>{t('Templates')}</span>
|
||||
</Button>
|
||||
<PopoverTrigger
|
||||
render={
|
||||
<Button variant='outline' className='flex-1 sm:flex-none' />
|
||||
}
|
||||
>
|
||||
<Lightbulb className='h-4 w-4 sm:mr-2' />
|
||||
<span className='sm:inline'>{t('Templates')}</span>
|
||||
</PopoverTrigger>
|
||||
<PopoverContent className='w-60'>
|
||||
<div className='space-y-2'>
|
||||
|
||||
+15
-15
@@ -510,7 +510,7 @@ export function PerformanceSection(props: Props) {
|
||||
<Label className='text-xs'>{t('Cleanup Mode')}</Label>
|
||||
<Select
|
||||
value={logCleanupMode}
|
||||
onValueChange={setLogCleanupMode}
|
||||
onValueChange={(v) => v !== null && setLogCleanupMode(v)}
|
||||
>
|
||||
<SelectTrigger className='w-[160px]'>
|
||||
<SelectValue />
|
||||
@@ -541,16 +541,18 @@ export function PerformanceSection(props: Props) {
|
||||
/>
|
||||
</div>
|
||||
<AlertDialog>
|
||||
<AlertDialogTrigger asChild>
|
||||
<Button
|
||||
variant='destructive'
|
||||
size='sm'
|
||||
disabled={logCleanupLoading}
|
||||
>
|
||||
{logCleanupLoading
|
||||
? t('Cleaning...')
|
||||
: t('Clean Up Log Files')}
|
||||
</Button>
|
||||
<AlertDialogTrigger
|
||||
render={
|
||||
<Button
|
||||
variant='destructive'
|
||||
size='sm'
|
||||
disabled={logCleanupLoading}
|
||||
/>
|
||||
}
|
||||
>
|
||||
{logCleanupLoading
|
||||
? t('Cleaning...')
|
||||
: t('Clean Up Log Files')}
|
||||
</AlertDialogTrigger>
|
||||
<AlertDialogContent>
|
||||
<AlertDialogHeader>
|
||||
@@ -604,10 +606,8 @@ export function PerformanceSection(props: Props) {
|
||||
{t('Refresh Stats')}
|
||||
</Button>
|
||||
<AlertDialog>
|
||||
<AlertDialogTrigger asChild>
|
||||
<Button variant='outline' size='sm'>
|
||||
{t('Clean up inactive cache')}
|
||||
</Button>
|
||||
<AlertDialogTrigger render={<Button variant='outline' size='sm' />}>
|
||||
{t('Clean up inactive cache')}
|
||||
</AlertDialogTrigger>
|
||||
<AlertDialogContent>
|
||||
<AlertDialogHeader>
|
||||
|
||||
+6
-5
@@ -119,10 +119,8 @@ export function ChannelSelectorDialog({
|
||||
id: 'select',
|
||||
header: ({ table }) => (
|
||||
<Checkbox
|
||||
checked={
|
||||
table.getIsAllPageRowsSelected() ||
|
||||
(table.getIsSomePageRowsSelected() && 'indeterminate')
|
||||
}
|
||||
checked={table.getIsAllPageRowsSelected()}
|
||||
indeterminate={table.getIsSomePageRowsSelected()}
|
||||
onCheckedChange={(value) =>
|
||||
table.toggleAllPageRowsSelected(!!value)
|
||||
}
|
||||
@@ -225,7 +223,10 @@ export function ChannelSelectorDialog({
|
||||
|
||||
return (
|
||||
<div className='flex items-center gap-2'>
|
||||
<Select value={endpointType} onValueChange={handleTypeChange}>
|
||||
<Select
|
||||
value={endpointType}
|
||||
onValueChange={(v) => v !== null && handleTypeChange(v)}
|
||||
>
|
||||
<SelectTrigger className='h-8 w-32'>
|
||||
<SelectValue />
|
||||
</SelectTrigger>
|
||||
|
||||
+4
-4
@@ -526,10 +526,10 @@ export const GroupRatioVisualEditor = memo(function GroupRatioVisualEditor({
|
||||
<div className='rounded-lg border'>
|
||||
<div className='flex items-center justify-between p-4'>
|
||||
<div className='flex items-center gap-2'>
|
||||
<CollapsibleTrigger asChild>
|
||||
<Button variant='ghost' size='sm'>
|
||||
<ChevronDown className='h-4 w-4' />
|
||||
</Button>
|
||||
<CollapsibleTrigger
|
||||
render={<Button variant='ghost' size='sm' />}
|
||||
>
|
||||
<ChevronDown className='h-4 w-4' />
|
||||
</CollapsibleTrigger>
|
||||
<span className='font-semibold'>
|
||||
{userGroupData.userGroup}
|
||||
|
||||
+13
-9
@@ -133,14 +133,16 @@ function GroupSection(props: GroupSectionProps) {
|
||||
<div className='rounded-lg border'>
|
||||
<div className='flex items-center justify-between p-3'>
|
||||
<div className='flex items-center gap-2'>
|
||||
<CollapsibleTrigger asChild>
|
||||
<Button variant='ghost' size='sm' className='h-6 w-6 p-0'>
|
||||
{open ? (
|
||||
<ChevronUp className='h-4 w-4' />
|
||||
) : (
|
||||
<ChevronDown className='h-4 w-4' />
|
||||
)}
|
||||
</Button>
|
||||
<CollapsibleTrigger
|
||||
render={
|
||||
<Button variant='ghost' size='sm' className='h-6 w-6 p-0' />
|
||||
}
|
||||
>
|
||||
{open ? (
|
||||
<ChevronUp className='h-4 w-4' />
|
||||
) : (
|
||||
<ChevronDown className='h-4 w-4' />
|
||||
)}
|
||||
</CollapsibleTrigger>
|
||||
<span className='font-semibold'>{props.groupName}</span>
|
||||
<StatusBadge variant='neutral' copyable={false}>
|
||||
@@ -172,7 +174,9 @@ function GroupSection(props: GroupSectionProps) {
|
||||
<div key={rule._id} className='flex items-center gap-2'>
|
||||
<Select
|
||||
value={rule.op}
|
||||
onValueChange={(v) => props.onUpdate(rule._id, 'op', v)}
|
||||
onValueChange={(v) =>
|
||||
v !== null && props.onUpdate(rule._id, 'op', v)
|
||||
}
|
||||
>
|
||||
<SelectTrigger className='w-[130px]'>
|
||||
<SelectValue>
|
||||
|
||||
@@ -478,19 +478,21 @@ export function ModelRatioDialog({
|
||||
)}
|
||||
|
||||
<Collapsible open={advancedOpen} onOpenChange={setAdvancedOpen}>
|
||||
<CollapsibleTrigger asChild>
|
||||
<Button
|
||||
type='button'
|
||||
variant='outline'
|
||||
className='flex w-full items-center justify-between'
|
||||
>
|
||||
{t('Advanced options')}
|
||||
<ChevronDown
|
||||
className={`h-4 w-4 transition-transform duration-200 ${
|
||||
advancedOpen ? 'rotate-180' : ''
|
||||
}`}
|
||||
<CollapsibleTrigger
|
||||
render={
|
||||
<Button
|
||||
type='button'
|
||||
variant='outline'
|
||||
className='flex w-full items-center justify-between'
|
||||
/>
|
||||
</Button>
|
||||
}
|
||||
>
|
||||
{t('Advanced options')}
|
||||
<ChevronDown
|
||||
className={`h-4 w-4 transition-transform duration-200 ${
|
||||
advancedOpen ? 'rotate-180' : ''
|
||||
}`}
|
||||
/>
|
||||
</CollapsibleTrigger>
|
||||
<CollapsibleContent className='space-y-6 pt-6'>
|
||||
<FormField
|
||||
|
||||
@@ -869,7 +869,9 @@ function RuleConditionRow({
|
||||
</Select>
|
||||
<Select
|
||||
value={timeCond.timezone}
|
||||
onValueChange={(value) => onChange({ ...timeCond, timezone: value })}
|
||||
onValueChange={(value) =>
|
||||
value !== null && onChange({ ...timeCond, timezone: value })
|
||||
}
|
||||
>
|
||||
<SelectTrigger className='w-56' size='sm'>
|
||||
<SelectValue />
|
||||
@@ -882,7 +884,10 @@ function RuleConditionRow({
|
||||
))}
|
||||
</SelectContent>
|
||||
</Select>
|
||||
<Select value={timeCond.mode} onValueChange={handleModeChange}>
|
||||
<Select
|
||||
value={timeCond.mode}
|
||||
onValueChange={(v) => v !== null && handleModeChange(v)}
|
||||
>
|
||||
<SelectTrigger className='w-32' size='sm'>
|
||||
<SelectValue />
|
||||
</SelectTrigger>
|
||||
@@ -937,7 +942,10 @@ function RuleConditionRow({
|
||||
}
|
||||
className='w-44'
|
||||
/>
|
||||
<Select value={phCond.mode} onValueChange={handleModeChange}>
|
||||
<Select
|
||||
value={phCond.mode}
|
||||
onValueChange={(v) => v !== null && handleModeChange(v)}
|
||||
>
|
||||
<SelectTrigger className='w-32' size='sm'>
|
||||
<SelectValue />
|
||||
</SelectTrigger>
|
||||
@@ -964,7 +972,10 @@ function RuleConditionRow({
|
||||
|
||||
return (
|
||||
<div className='flex flex-wrap items-center gap-2'>
|
||||
<Select value={condition.source} onValueChange={handleSourceChange}>
|
||||
<Select
|
||||
value={condition.source}
|
||||
onValueChange={(v) => v !== null && handleSourceChange(v)}
|
||||
>
|
||||
<SelectTrigger className='w-28' size='sm'>
|
||||
<SelectValue />
|
||||
</SelectTrigger>
|
||||
@@ -1388,11 +1399,13 @@ function LlmPromptHelper({ modelName }: LlmPromptHelperProps) {
|
||||
|
||||
return (
|
||||
<Collapsible open={open} onOpenChange={setOpen}>
|
||||
<CollapsibleTrigger asChild>
|
||||
<Button variant='ghost' size='sm' className='h-7 px-2 text-xs'>
|
||||
<Copy className='mr-1.5 h-3 w-3' />
|
||||
{t('LLM prompt helper')}
|
||||
</Button>
|
||||
<CollapsibleTrigger
|
||||
render={
|
||||
<Button variant='ghost' size='sm' className='h-7 px-2 text-xs' />
|
||||
}
|
||||
>
|
||||
<Copy className='mr-1.5 h-3 w-3' />
|
||||
{t('LLM prompt helper')}
|
||||
</CollapsibleTrigger>
|
||||
<CollapsibleContent className='mt-2'>
|
||||
<div className='bg-muted/30 rounded-md border p-3'>
|
||||
|
||||
+18
-17
@@ -100,14 +100,16 @@ export function useUpstreamRatioSyncColumns(
|
||||
) : (
|
||||
<TooltipProvider>
|
||||
<Tooltip>
|
||||
<TooltipTrigger asChild>
|
||||
<StatusBadge
|
||||
label={String(current)}
|
||||
variant='info'
|
||||
size='sm'
|
||||
className='max-w-[200px] truncate'
|
||||
/>
|
||||
</TooltipTrigger>
|
||||
<TooltipTrigger
|
||||
render={
|
||||
<StatusBadge
|
||||
label={String(current)}
|
||||
variant='info'
|
||||
size='sm'
|
||||
className='max-w-[200px] truncate'
|
||||
/>
|
||||
}
|
||||
></TooltipTrigger>
|
||||
<TooltipContent>
|
||||
<p className='max-w-xs text-xs break-all'>
|
||||
{String(current)}
|
||||
@@ -161,15 +163,12 @@ export function useUpstreamRatioSyncColumns(
|
||||
selectableCount > 0 && selectedCount === selectableCount
|
||||
const someSelected =
|
||||
selectedCount > 0 && selectedCount < selectableCount
|
||||
let checkboxState: boolean | 'indeterminate' = false
|
||||
if (allSelected) checkboxState = true
|
||||
else if (someSelected) checkboxState = 'indeterminate'
|
||||
|
||||
return (
|
||||
<div className='flex items-center gap-2'>
|
||||
{selectableCount > 0 && (
|
||||
<Checkbox
|
||||
checked={checkboxState}
|
||||
checked={allSelected}
|
||||
indeterminate={someSelected}
|
||||
disabled={isDisabled}
|
||||
onCheckedChange={(checked) => {
|
||||
if (checked) {
|
||||
@@ -311,10 +310,12 @@ function renderUpstreamValue(args: RenderUpstreamValueArgs) {
|
||||
/>
|
||||
<TooltipProvider>
|
||||
<Tooltip>
|
||||
<TooltipTrigger asChild>
|
||||
<span className='inline-block max-w-[240px] cursor-default truncate font-mono text-sm'>
|
||||
{text}
|
||||
</span>
|
||||
<TooltipTrigger
|
||||
render={
|
||||
<span className='inline-block max-w-[240px] cursor-default truncate font-mono text-sm' />
|
||||
}
|
||||
>
|
||||
{text}
|
||||
</TooltipTrigger>
|
||||
<TooltipContent>
|
||||
<p className='max-w-xs text-xs break-all'>{text}</p>
|
||||
|
||||
+1
-1
@@ -213,7 +213,7 @@ export function UpstreamRatioSyncTable({
|
||||
</div>
|
||||
<Select
|
||||
value={ratioTypeFilter}
|
||||
onValueChange={setRatioTypeFilter}
|
||||
onValueChange={(v) => v !== null && setRatioTypeFilter(v)}
|
||||
disabled={isDisabled}
|
||||
>
|
||||
<SelectTrigger className='w-full sm:w-56'>
|
||||
|
||||
Reference in New Issue
Block a user