refactor: system settings UI for consistent, compact layouts

Redesign the system settings interface to align with the rest of the console experience by using fixed header actions, removing redundant subtitles, respecting global content width, and standardizing responsive form layouts.

Introduce reusable settings layout primitives for forms, switch rows, grouped controls, nested control sections, title status indicators, and page action portals. Replace duplicated card-style switch markup with explicit compact components, improve nested switch readability, and reduce visual noise across authentication, billing, content, integrations, maintenance, models, and request-limit settings.

Also complete missing i18n translations, remove obsolete subtitle translation keys, refine i18n sync reporting, fix sidebar truncation for long labels, and verify the frontend with type checking and lint diagnostics.
This commit is contained in:
t0ng7u
2026-05-25 00:34:26 +08:00
parent 92a0959448
commit b08febaa3c
97 changed files with 2420 additions and 3032 deletions
@@ -31,7 +31,6 @@ import {
import { Input } from '@/components/ui/input'
import { Label } from '@/components/ui/label'
import { Separator } from '@/components/ui/separator'
import { Switch } from '@/components/ui/switch'
import {
Table,
TableBody,
@@ -43,6 +42,8 @@ import {
import { Textarea } from '@/components/ui/textarea'
import { ConfirmDialog } from '@/components/confirm-dialog'
import { StatusBadge } from '@/components/status-badge'
import { SettingsSwitchField } from '../../components/settings-form-layout'
import { SettingsPageActionsPortal } from '../../components/settings-page-context'
import { SettingsSection } from '../../components/settings-section'
import { useUpdateOption } from '../../hooks/use-update-option'
import { getCacheStats, clearAllCache, clearRuleCache } from './api'
@@ -333,12 +334,7 @@ export function ChannelAffinitySection(props: Props) {
return (
<>
<SettingsSection
title={t('Channel Affinity')}
description={t(
'Prioritize reusing the last successful channel based on keys extracted from request context (sticky routing)'
)}
>
<SettingsSection title={t('Channel Affinity')}>
<Alert>
<AlertDescription className='text-xs'>
{t(
@@ -349,10 +345,12 @@ export function ChannelAffinitySection(props: Props) {
{/* Basic Settings */}
<div className='grid grid-cols-1 gap-4 md:grid-cols-3'>
<div className='flex items-center gap-2'>
<Switch checked={enabled} onCheckedChange={setEnabled} />
<Label>{t('Enable')}</Label>
</div>
<SettingsSwitchField
checked={enabled}
onCheckedChange={setEnabled}
label={t('Enable')}
className='border-b-0 py-0'
/>
<div className='grid gap-1.5'>
<Label>{t('Max Entries')}</Label>
<Input
@@ -373,23 +371,18 @@ export function ChannelAffinitySection(props: Props) {
</div>
</div>
<div className='flex items-center gap-2'>
<Switch
checked={switchOnSuccess}
onCheckedChange={setSwitchOnSuccess}
/>
<Label>{t('Switch affinity on success')}</Label>
<span className='text-muted-foreground text-xs'>
{t(
'If the affinity channel fails and retry succeeds on another channel, update affinity to the successful channel.'
)}
</span>
</div>
<SettingsSwitchField
checked={switchOnSuccess}
onCheckedChange={setSwitchOnSuccess}
label={t('Switch affinity on success')}
description={t(
'If the affinity channel fails and retry succeeds on another channel, update affinity to the successful channel.'
)}
/>
<Separator />
{/* Toolbar */}
<div className='flex flex-wrap items-center gap-2'>
<SettingsPageActionsPortal>
<Button
variant={editMode === 'visual' ? 'default' : 'outline'}
size='sm'
@@ -472,7 +465,7 @@ export function ChannelAffinitySection(props: Props) {
{cacheStats.cache_capacity}
</span>
)}
</div>
</SettingsPageActionsPortal>
{/* Rules Table or JSON Editor */}
{editMode === 'visual' ? (
@@ -45,8 +45,8 @@ import {
SelectValue,
} from '@/components/ui/select'
import { Separator } from '@/components/ui/separator'
import { Switch } from '@/components/ui/switch'
import { Textarea } from '@/components/ui/textarea'
import { SettingsSwitchField } from '../../components/settings-form-layout'
import { RULE_TEMPLATES } from './constants'
import type { AffinityRule, KeySource } from './types'
@@ -264,13 +264,11 @@ export function RuleEditorDialog(props: Props) {
</div>
</div>
<div className='flex items-center gap-2'>
<Switch
checked={form.watch('skip_retry_on_failure')}
onCheckedChange={(v) => form.setValue('skip_retry_on_failure', v)}
/>
<Label>{t('Skip retry on failure')}</Label>
</div>
<SettingsSwitchField
checked={form.watch('skip_retry_on_failure')}
onCheckedChange={(v) => form.setValue('skip_retry_on_failure', v)}
label={t('Skip retry on failure')}
/>
<Separator />
@@ -415,34 +413,29 @@ export function RuleEditorDialog(props: Props) {
/>
</div>
<div className='grid grid-cols-3 gap-3'>
<div className='flex items-center gap-2'>
<Switch
checked={form.watch('include_using_group')}
onCheckedChange={(v) =>
form.setValue('include_using_group', v)
}
/>
<Label className='text-xs'>{t('Include Group')}</Label>
</div>
<div className='flex items-center gap-2'>
<Switch
checked={form.watch('include_model_name')}
onCheckedChange={(v) =>
form.setValue('include_model_name', v)
}
/>
<Label className='text-xs'>{t('Include Model')}</Label>
</div>
<div className='flex items-center gap-2'>
<Switch
checked={form.watch('include_rule_name')}
onCheckedChange={(v) =>
form.setValue('include_rule_name', v)
}
/>
<Label className='text-xs'>{t('Include Rule Name')}</Label>
</div>
<div className='grid gap-3 sm:grid-cols-3'>
<SettingsSwitchField
checked={form.watch('include_using_group')}
onCheckedChange={(v) =>
form.setValue('include_using_group', v)
}
label={t('Include Group')}
className='border-b-0 py-0'
/>
<SettingsSwitchField
checked={form.watch('include_model_name')}
onCheckedChange={(v) =>
form.setValue('include_model_name', v)
}
label={t('Include Model')}
className='border-b-0 py-0'
/>
<SettingsSwitchField
checked={form.watch('include_rule_name')}
onCheckedChange={(v) => form.setValue('include_rule_name', v)}
label={t('Include Rule Name')}
className='border-b-0 py-0'
/>
</div>
</CollapsibleContent>
</Collapsible>
@@ -21,7 +21,6 @@ import { useForm, type Resolver } from 'react-hook-form'
import { zodResolver } from '@hookform/resolvers/zod'
import { useTranslation } from 'react-i18next'
import { toast } from 'sonner'
import { Button } from '@/components/ui/button'
import {
Form,
FormControl,
@@ -33,6 +32,12 @@ import {
} from '@/components/ui/form'
import { Input } from '@/components/ui/input'
import { Switch } from '@/components/ui/switch'
import {
SettingsForm,
SettingsSwitchContent,
SettingsSwitchItem,
} from '../components/settings-form-layout'
import { SettingsPageFormActions } from '../components/settings-page-context'
import { SettingsSection } from '../components/settings-section'
import { useUpdateOption } from '../hooks/use-update-option'
@@ -105,31 +110,28 @@ export function CheckinSettingsSection({
}
return (
<SettingsSection
title={t('Check-in Settings')}
description={t('Configure daily check-in rewards for users')}
>
<SettingsSection title={t('Check-in Settings')}>
<Form {...form}>
<form
onSubmit={form.handleSubmit(onSubmit)}
autoComplete='off'
className='space-y-6'
>
<SettingsForm onSubmit={form.handleSubmit(onSubmit)} autoComplete='off'>
<SettingsPageFormActions
onSave={form.handleSubmit(onSubmit)}
isSaving={updateOption.isPending || isSubmitting}
isSaveDisabled={!isDirty}
saveLabel='Save check-in settings'
/>
<FormField
control={form.control}
name='enabled'
render={({ field }) => (
<FormItem className='flex flex-row items-center justify-between rounded-lg border p-4'>
<div className='space-y-0.5'>
<FormLabel className='text-base'>
{t('Enable check-in feature')}
</FormLabel>
<SettingsSwitchItem>
<SettingsSwitchContent>
<FormLabel>{t('Enable check-in feature')}</FormLabel>
<FormDescription>
{t(
'Allow users to check in daily for random quota rewards'
)}
</FormDescription>
</div>
</SettingsSwitchContent>
<FormControl>
<Switch
checked={field.value}
@@ -137,7 +139,7 @@ export function CheckinSettingsSection({
disabled={updateOption.isPending || isSubmitting}
/>
</FormControl>
</FormItem>
</SettingsSwitchItem>
)}
/>
@@ -188,16 +190,7 @@ export function CheckinSettingsSection({
/>
</div>
)}
<Button
type='submit'
disabled={!isDirty || updateOption.isPending || isSubmitting}
>
{updateOption.isPending || isSubmitting
? t('Saving...')
: t('Save check-in settings')}
</Button>
</form>
</SettingsForm>
</Form>
</SettingsSection>
)
@@ -19,10 +19,8 @@ For commercial licensing, please contact support@quantumnous.com
import * as z from 'zod'
import type { Resolver } from 'react-hook-form'
import { zodResolver } from '@hookform/resolvers/zod'
import { RotateCcw } from 'lucide-react'
import { useTranslation } from 'react-i18next'
import { DEFAULT_CURRENCY_CONFIG } from '@/stores/system-config-store'
import { Button } from '@/components/ui/button'
import {
Form,
FormControl,
@@ -44,6 +42,12 @@ import {
import { Switch } from '@/components/ui/switch'
import { FormDirtyIndicator } from '../components/form-dirty-indicator'
import { FormNavigationGuard } from '../components/form-navigation-guard'
import {
SettingsForm,
SettingsSwitchContent,
SettingsSwitchItem,
} from '../components/settings-form-layout'
import { SettingsPageFormActions } from '../components/settings-page-context'
import { SettingsSection } from '../components/settings-section'
import { useSettingsForm } from '../hooks/use-settings-form'
import { useUpdateOption } from '../hooks/use-update-option'
@@ -141,12 +145,15 @@ export function PricingSection({ defaultValues }: PricingSectionProps) {
<>
<FormNavigationGuard when={isDirty} />
<SettingsSection
title={t('Pricing & Display')}
description={t('Configure pricing model and display options')}
>
<SettingsSection title={t('Pricing & Display')}>
<Form {...form}>
<form onSubmit={handleSubmit} className='space-y-6'>
<SettingsForm onSubmit={handleSubmit}>
<SettingsPageFormActions
onSave={handleSubmit}
onReset={handleReset}
isSaving={updateOption.isPending || isSubmitting}
isResetDisabled={!isDirty}
/>
<FormDirtyIndicator isDirty={isDirty} />
{showQuotaPerUnit && (
<FormField
@@ -320,11 +327,9 @@ export function PricingSection({ defaultValues }: PricingSectionProps) {
control={form.control}
name='DisplayInCurrencyEnabled'
render={({ field }) => (
<FormItem className='flex flex-row items-center justify-between rounded-lg border p-4'>
<div className='space-y-0.5'>
<FormLabel className='text-base'>
{t('Display in Currency')}
</FormLabel>
<SettingsSwitchItem>
<SettingsSwitchContent>
<FormLabel>{t('Display in Currency')}</FormLabel>
<FormDescription>
{displayType === 'TOKENS'
? t(
@@ -332,14 +337,14 @@ export function PricingSection({ defaultValues }: PricingSectionProps) {
)
: t('Show prices in currency instead of quota.')}
</FormDescription>
</div>
</SettingsSwitchContent>
<FormControl>
<Switch
checked={field.value}
onCheckedChange={field.onChange}
/>
</FormControl>
</FormItem>
</SettingsSwitchItem>
)}
/>
)}
@@ -348,43 +353,23 @@ export function PricingSection({ defaultValues }: PricingSectionProps) {
control={form.control}
name='DisplayTokenStatEnabled'
render={({ field }) => (
<FormItem className='flex flex-row items-center justify-between rounded-lg border p-4'>
<div className='space-y-0.5'>
<FormLabel className='text-base'>
{t('Display Token Statistics')}
</FormLabel>
<SettingsSwitchItem>
<SettingsSwitchContent>
<FormLabel>{t('Display Token Statistics')}</FormLabel>
<FormDescription>
{t('Show token usage statistics in the UI')}
</FormDescription>
</div>
</SettingsSwitchContent>
<FormControl>
<Switch
checked={field.value}
onCheckedChange={field.onChange}
/>
</FormControl>
</FormItem>
</SettingsSwitchItem>
)}
/>
<div className='flex gap-2'>
<Button
type='submit'
disabled={updateOption.isPending || isSubmitting}
>
{updateOption.isPending ? t('Saving...') : t('Save Changes')}
</Button>
<Button
type='button'
variant='outline'
onClick={handleReset}
disabled={!isDirty || updateOption.isPending || isSubmitting}
>
<RotateCcw className='mr-2 h-4 w-4' />
{t('Reset')}
</Button>
</div>
</form>
</SettingsForm>
</Form>
</SettingsSection>
</>
@@ -22,7 +22,6 @@ import type { Resolver } from 'react-hook-form'
import { zodResolver } from '@hookform/resolvers/zod'
import { useTranslation } from 'react-i18next'
import { Alert, AlertDescription } from '@/components/ui/alert'
import { Button } from '@/components/ui/button'
import {
Form,
FormControl,
@@ -36,6 +35,14 @@ import { Input } from '@/components/ui/input'
import { Switch } from '@/components/ui/switch'
import { FormDirtyIndicator } from '../components/form-dirty-indicator'
import { FormNavigationGuard } from '../components/form-navigation-guard'
import {
SettingsForm,
SettingsSwitchContent,
SettingsSwitchItem,
SettingsFormGrid,
SettingsFormGridItem,
} from '../components/settings-form-layout'
import { SettingsPageFormActions } from '../components/settings-page-context'
import { SettingsSection } from '../components/settings-section'
import { useSettingsForm } from '../hooks/use-settings-form'
import { useUpdateOption } from '../hooks/use-update-option'
@@ -94,10 +101,7 @@ export function QuotaSettingsSection({
})
return (
<SettingsSection
title={t('Quota Settings')}
description={t('Configure user quota allocation and rewards')}
>
<SettingsSection title={t('Quota Settings')}>
<FormNavigationGuard when={isDirty} />
{!complianceConfirmed ? (
@@ -111,177 +115,176 @@ export function QuotaSettingsSection({
) : null}
<Form {...form}>
<form onSubmit={handleSubmit} className='space-y-6'>
<SettingsForm onSubmit={handleSubmit}>
<SettingsPageFormActions
onSave={handleSubmit}
isSaving={updateOption.isPending || isSubmitting}
/>
<FormDirtyIndicator isDirty={isDirty} />
<FormField
control={form.control}
name='QuotaForNewUser'
render={({ field }) => (
<FormItem>
<FormLabel>{t('New User Quota')}</FormLabel>
<FormControl>
<Input
type='number'
value={field.value ?? ''}
onChange={handleNumberChange(field.onChange)}
name={field.name}
onBlur={field.onBlur}
ref={field.ref}
/>
</FormControl>
<FormDescription>
{t('Initial quota given to new users')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='PreConsumedQuota'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Pre-Consumed Quota')}</FormLabel>
<FormControl>
<Input
type='number'
value={field.value ?? ''}
onChange={handleNumberChange(field.onChange)}
name={field.name}
onBlur={field.onBlur}
ref={field.ref}
/>
</FormControl>
<FormDescription>
{t('Quota consumed before charging users')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='QuotaForInviter'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Inviter Reward')}</FormLabel>
<FormControl>
<Input
type='number'
value={field.value ?? ''}
onChange={handleNumberChange(field.onChange)}
name={field.name}
onBlur={field.onBlur}
ref={field.ref}
/>
</FormControl>
<FormDescription>
{t('Quota given to users who invite others')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='QuotaForInvitee'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Invitee Reward')}</FormLabel>
<FormControl>
<Input
type='number'
value={field.value ?? ''}
onChange={handleNumberChange(field.onChange)}
name={field.name}
onBlur={field.onBlur}
ref={field.ref}
/>
</FormControl>
<FormDescription>
{t('Quota given to invited users')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='quota_setting.enable_free_model_pre_consume'
render={({ field }) => (
<FormItem className='flex flex-row items-center justify-between rounded-lg border p-4'>
<div className='space-y-0.5'>
<FormLabel className='text-base'>
{t('Pre-Consume for Free Models')}
</FormLabel>
<SettingsFormGrid>
<FormField
control={form.control}
name='QuotaForNewUser'
render={({ field }) => (
<FormItem>
<FormLabel>{t('New User Quota')}</FormLabel>
<FormControl>
<Input
type='number'
value={field.value ?? ''}
onChange={handleNumberChange(field.onChange)}
name={field.name}
onBlur={field.onBlur}
ref={field.ref}
/>
</FormControl>
<FormDescription>
{t(
'When enabled, zero-cost models also pre-consume quota before final settlement.'
)}
{t('Initial quota given to new users')}
</FormDescription>
</div>
<FormControl>
<Switch
checked={field.value}
onCheckedChange={field.onChange}
disabled={updateOption.isPending}
/>
</FormControl>
</FormItem>
)}
/>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='TopUpLink'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Top-Up Link')}</FormLabel>
<FormControl>
<Input
placeholder={t('https://example.com/topup')}
{...field}
/>
</FormControl>
<FormDescription>
{t('External link for users to purchase quota')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='PreConsumedQuota'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Pre-Consumed Quota')}</FormLabel>
<FormControl>
<Input
type='number'
value={field.value ?? ''}
onChange={handleNumberChange(field.onChange)}
name={field.name}
onBlur={field.onBlur}
ref={field.ref}
/>
</FormControl>
<FormDescription>
{t('Quota consumed before charging users')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='general_setting.docs_link'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Documentation Link')}</FormLabel>
<FormControl>
<Input
placeholder={t('https://docs.example.com')}
{...field}
/>
</FormControl>
<FormDescription>
{t('Link to your documentation site')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='QuotaForInviter'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Inviter Reward')}</FormLabel>
<FormControl>
<Input
type='number'
value={field.value ?? ''}
onChange={handleNumberChange(field.onChange)}
name={field.name}
onBlur={field.onBlur}
ref={field.ref}
/>
</FormControl>
<FormDescription>
{t('Quota given to users who invite others')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<Button
type='submit'
disabled={updateOption.isPending || isSubmitting}
>
{updateOption.isPending ? t('Saving...') : t('Save Changes')}
</Button>
</form>
<FormField
control={form.control}
name='QuotaForInvitee'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Invitee Reward')}</FormLabel>
<FormControl>
<Input
type='number'
value={field.value ?? ''}
onChange={handleNumberChange(field.onChange)}
name={field.name}
onBlur={field.onBlur}
ref={field.ref}
/>
</FormControl>
<FormDescription>
{t('Quota given to invited users')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<SettingsFormGridItem span='full'>
<FormField
control={form.control}
name='quota_setting.enable_free_model_pre_consume'
render={({ field }) => (
<SettingsSwitchItem>
<SettingsSwitchContent>
<FormLabel>{t('Pre-Consume for Free Models')}</FormLabel>
<FormDescription>
{t(
'When enabled, zero-cost models also pre-consume quota before final settlement.'
)}
</FormDescription>
</SettingsSwitchContent>
<FormControl>
<Switch
checked={field.value}
onCheckedChange={field.onChange}
disabled={updateOption.isPending}
/>
</FormControl>
</SettingsSwitchItem>
)}
/>
</SettingsFormGridItem>
<FormField
control={form.control}
name='TopUpLink'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Top-Up Link')}</FormLabel>
<FormControl>
<Input
placeholder={t('https://example.com/topup')}
{...field}
/>
</FormControl>
<FormDescription>
{t('External link for users to purchase quota')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='general_setting.docs_link'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Documentation Link')}</FormLabel>
<FormControl>
<Input
placeholder={t('https://docs.example.com')}
{...field}
/>
</FormControl>
<FormDescription>
{t('Link to your documentation site')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
</SettingsFormGrid>
</SettingsForm>
</Form>
</SettingsSection>
)
@@ -20,7 +20,6 @@ import * as z from 'zod'
import { useForm } from 'react-hook-form'
import { zodResolver } from '@hookform/resolvers/zod'
import { useTranslation } from 'react-i18next'
import { Button } from '@/components/ui/button'
import {
Form,
FormControl,
@@ -32,6 +31,12 @@ import {
} from '@/components/ui/form'
import { Input } from '@/components/ui/input'
import { Switch } from '@/components/ui/switch'
import {
SettingsForm,
SettingsSwitchContent,
SettingsSwitchItem,
} from '../components/settings-form-layout'
import { SettingsPageFormActions } from '../components/settings-page-context'
import { SettingsSection } from '../components/settings-section'
import { useResetForm } from '../hooks/use-reset-form'
import { useUpdateOption } from '../hooks/use-update-option'
@@ -73,12 +78,13 @@ export function SystemBehaviorSection({
}
return (
<SettingsSection
title={t('System Behavior')}
description={t('Configure system-wide behavior and defaults')}
>
<SettingsSection title={t('System Behavior')}>
<Form {...form}>
<form onSubmit={form.handleSubmit(onSubmit)} className='space-y-6'>
<SettingsForm onSubmit={form.handleSubmit(onSubmit)}>
<SettingsPageFormActions
onSave={form.handleSubmit(onSubmit)}
isSaving={updateOption.isPending}
/>
<FormField
control={form.control}
name='RetryTimes'
@@ -109,22 +115,20 @@ export function SystemBehaviorSection({
control={form.control}
name='DefaultCollapseSidebar'
render={({ field }) => (
<FormItem className='flex flex-row items-center justify-between rounded-lg border p-4'>
<div className='space-y-0.5'>
<FormLabel className='text-base'>
{t('Default Collapse Sidebar')}
</FormLabel>
<SettingsSwitchItem>
<SettingsSwitchContent>
<FormLabel>{t('Default Collapse Sidebar')}</FormLabel>
<FormDescription>
{t('Sidebar collapsed by default for new users')}
</FormDescription>
</div>
</SettingsSwitchContent>
<FormControl>
<Switch
checked={field.value}
onCheckedChange={field.onChange}
/>
</FormControl>
</FormItem>
</SettingsSwitchItem>
)}
/>
@@ -132,22 +136,20 @@ export function SystemBehaviorSection({
control={form.control}
name='DemoSiteEnabled'
render={({ field }) => (
<FormItem className='flex flex-row items-center justify-between rounded-lg border p-4'>
<div className='space-y-0.5'>
<FormLabel className='text-base'>
{t('Demo Site Mode')}
</FormLabel>
<SettingsSwitchItem>
<SettingsSwitchContent>
<FormLabel>{t('Demo Site Mode')}</FormLabel>
<FormDescription>
{t('Enable demo mode with limited functionality')}
</FormDescription>
</div>
</SettingsSwitchContent>
<FormControl>
<Switch
checked={field.value}
onCheckedChange={field.onChange}
/>
</FormControl>
</FormItem>
</SettingsSwitchItem>
)}
/>
@@ -155,29 +157,23 @@ export function SystemBehaviorSection({
control={form.control}
name='SelfUseModeEnabled'
render={({ field }) => (
<FormItem className='flex flex-row items-center justify-between rounded-lg border p-4'>
<div className='space-y-0.5'>
<FormLabel className='text-base'>
{t('Self-Use Mode')}
</FormLabel>
<SettingsSwitchItem>
<SettingsSwitchContent>
<FormLabel>{t('Self-Use Mode')}</FormLabel>
<FormDescription>
{t('Optimize system for self-hosted single-user usage')}
</FormDescription>
</div>
</SettingsSwitchContent>
<FormControl>
<Switch
checked={field.value}
onCheckedChange={field.onChange}
/>
</FormControl>
</FormItem>
</SettingsSwitchItem>
)}
/>
<Button type='submit' disabled={updateOption.isPending}>
{updateOption.isPending ? t('Saving...') : t('Save Changes')}
</Button>
</form>
</SettingsForm>
</Form>
</SettingsSection>
)
@@ -19,9 +19,7 @@ For commercial licensing, please contact support@quantumnous.com
import * as z from 'zod'
import type { Resolver } from 'react-hook-form'
import { zodResolver } from '@hookform/resolvers/zod'
import { RotateCcw } from 'lucide-react'
import { useTranslation } from 'react-i18next'
import { Button } from '@/components/ui/button'
import {
Form,
FormControl,
@@ -43,6 +41,12 @@ import {
import { Textarea } from '@/components/ui/textarea'
import { FormDirtyIndicator } from '../components/form-dirty-indicator'
import { FormNavigationGuard } from '../components/form-navigation-guard'
import {
SettingsForm,
SettingsFormGrid,
SettingsFormGridItem,
} from '../components/settings-form-layout'
import { SettingsPageFormActions } from '../components/settings-page-context'
import { SettingsSection } from '../components/settings-section'
import { useSettingsForm } from '../hooks/use-settings-form'
import { useUpdateOption } from '../hooks/use-update-option'
@@ -139,250 +143,243 @@ export function SystemInfoSection({ defaultValues }: SystemInfoSectionProps) {
<>
<FormNavigationGuard when={isDirty} />
<SettingsSection
title={t('System Information')}
description={t('Configure basic system information and branding')}
>
<SettingsSection title={t('System Information')}>
<Form {...form}>
<form onSubmit={handleSubmit} className='space-y-6'>
<SettingsForm onSubmit={handleSubmit}>
<SettingsPageFormActions
onSave={handleSubmit}
onReset={handleReset}
isSaving={isSubmitting || updateOption.isPending}
isResetDisabled={!isDirty}
/>
<FormDirtyIndicator isDirty={isDirty} />
<FormField
control={form.control}
name='theme.frontend'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Frontend Theme')}</FormLabel>
<Select
items={[
{ value: 'default', label: t('Default (New Frontend)') },
{
value: 'classic',
label: t('Classic (Legacy Frontend)'),
},
]}
onValueChange={field.onChange}
value={field.value}
>
<SettingsFormGrid>
<FormField
control={form.control}
name='theme.frontend'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Frontend Theme')}</FormLabel>
<Select
items={[
{
value: 'default',
label: t('Default (New Frontend)'),
},
{
value: 'classic',
label: t('Classic (Legacy Frontend)'),
},
]}
onValueChange={field.onChange}
value={field.value}
>
<FormControl>
<SelectTrigger className='w-full'>
<SelectValue />
</SelectTrigger>
</FormControl>
<SelectContent alignItemWithTrigger={false}>
<SelectGroup>
<SelectItem value='default'>
{t('Default (New Frontend)')}
</SelectItem>
<SelectItem value='classic'>
{t('Classic (Legacy Frontend)')}
</SelectItem>
</SelectGroup>
</SelectContent>
</Select>
<FormDescription>
{t(
'Switch between the new frontend and the classic frontend. Changes take effect after page reload.'
)}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='SystemName'
render={({ field }) => (
<FormItem>
<FormLabel>{t('System Name')}</FormLabel>
<FormControl>
<SelectTrigger className='w-full'>
<SelectValue />
</SelectTrigger>
<Input placeholder={t('New API')} {...field} />
</FormControl>
<SelectContent alignItemWithTrigger={false}>
<SelectGroup>
<SelectItem value='default'>
{t('Default (New Frontend)')}
</SelectItem>
<SelectItem value='classic'>
{t('Classic (Legacy Frontend)')}
</SelectItem>
</SelectGroup>
</SelectContent>
</Select>
<FormDescription>
{t(
'Switch between the new frontend and the classic frontend. Changes take effect after page reload.'
)}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormDescription>
{t('The name displayed across the application')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='SystemName'
render={({ field }) => (
<FormItem>
<FormLabel>{t('System Name')}</FormLabel>
<FormControl>
<Input placeholder={t('New API')} {...field} />
</FormControl>
<FormDescription>
{t('The name displayed across the application')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='ServerAddress'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Server Address')}</FormLabel>
<FormControl>
<Input placeholder='https://yourdomain.com' {...field} />
</FormControl>
<FormDescription>
{t(
'The public URL of your server, used for OAuth callbacks, webhooks, and other external integrations'
)}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='Logo'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Logo URL')}</FormLabel>
<FormControl>
<Input
placeholder={t('https://example.com/logo.png')}
{...field}
/>
</FormControl>
<FormDescription>
{t('URL to your logo image (optional)')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='Footer'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Footer')}</FormLabel>
<FormControl>
<Textarea
placeholder={t(
'© 2025 Your Company. All rights reserved.'
<FormField
control={form.control}
name='ServerAddress'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Server Address')}</FormLabel>
<FormControl>
<Input placeholder='https://yourdomain.com' {...field} />
</FormControl>
<FormDescription>
{t(
'The public URL of your server, used for OAuth callbacks, webhooks, and other external integrations'
)}
{...field}
/>
</FormControl>
<FormDescription>
{t('Footer text displayed at the bottom of pages')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='About'
render={({ field }) => (
<FormItem>
<FormLabel>{t('About')}</FormLabel>
<FormControl>
<Textarea
placeholder={t(
'Enter HTML code (e.g., <p>About us...</p>) or a URL (e.g., https://example.com) to embed as iframe'
<FormField
control={form.control}
name='Logo'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Logo URL')}</FormLabel>
<FormControl>
<Input
placeholder={t('https://example.com/logo.png')}
{...field}
/>
</FormControl>
<FormDescription>
{t('URL to your logo image (optional)')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='Footer'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Footer')}</FormLabel>
<FormControl>
<Textarea
placeholder={t(
'© 2025 Your Company. All rights reserved.'
)}
rows={4}
{...field}
/>
</FormControl>
<FormDescription>
{t('Footer text displayed at the bottom of pages')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='About'
render={({ field }) => (
<FormItem>
<FormLabel>{t('About')}</FormLabel>
<FormControl>
<Textarea
placeholder={t(
'Enter HTML code (e.g., <p>About us...</p>) or a URL (e.g., https://example.com) to embed as iframe'
)}
rows={4}
{...field}
/>
</FormControl>
<FormDescription>
{t(
'Supports HTML markup or iframe embedding. Enter HTML code directly, or provide a complete URL to automatically embed it as an iframe.'
)}
rows={4}
{...field}
/>
</FormControl>
<FormDescription>
{t(
'Supports HTML markup or iframe embedding. Enter HTML code directly, or provide a complete URL to automatically embed it as an iframe.'
)}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='HomePageContent'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Home Page Content')}</FormLabel>
<FormControl>
<Textarea
placeholder={t('Welcome to our New API...')}
rows={6}
{...field}
/>
</FormControl>
<FormDescription>
{t(
'Content displayed on the home page (supports Markdown)'
)}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<SettingsFormGridItem span='full'>
<FormField
control={form.control}
name='HomePageContent'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Home Page Content')}</FormLabel>
<FormControl>
<Textarea
placeholder={t('Welcome to our New API...')}
rows={6}
{...field}
/>
</FormControl>
<FormDescription>
{t(
'Content displayed on the home page (supports Markdown)'
)}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
</SettingsFormGridItem>
<FormField
control={form.control}
name='legal.user_agreement'
render={({ field }) => (
<FormItem>
<FormLabel>{t('User Agreement')}</FormLabel>
<FormControl>
<Textarea
placeholder={t(
'Provide Markdown, HTML, or an external URL for the user agreement'
<FormField
control={form.control}
name='legal.user_agreement'
render={({ field }) => (
<FormItem>
<FormLabel>{t('User Agreement')}</FormLabel>
<FormControl>
<Textarea
placeholder={t(
'Provide Markdown, HTML, or an external URL for the user agreement'
)}
rows={6}
{...field}
/>
</FormControl>
<FormDescription>
{t(
'Leave empty to disable the agreement requirement. Supports Markdown, HTML, or a full URL to redirect users.'
)}
rows={6}
{...field}
/>
</FormControl>
<FormDescription>
{t(
'Leave empty to disable the agreement requirement. Supports Markdown, HTML, or a full URL to redirect users.'
)}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='legal.privacy_policy'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Privacy Policy')}</FormLabel>
<FormControl>
<Textarea
placeholder={t(
'Provide Markdown, HTML, or an external URL for the privacy policy'
<FormField
control={form.control}
name='legal.privacy_policy'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Privacy Policy')}</FormLabel>
<FormControl>
<Textarea
placeholder={t(
'Provide Markdown, HTML, or an external URL for the privacy policy'
)}
rows={6}
{...field}
/>
</FormControl>
<FormDescription>
{t(
'Leave empty to disable the privacy policy requirement. Supports Markdown, HTML, or a full URL to redirect users.'
)}
rows={6}
{...field}
/>
</FormControl>
<FormDescription>
{t(
'Leave empty to disable the privacy policy requirement. Supports Markdown, HTML, or a full URL to redirect users.'
)}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<div className='flex gap-2'>
<Button
type='submit'
disabled={isSubmitting || updateOption.isPending}
>
{updateOption.isPending ? t('Saving...') : t('Save Changes')}
</Button>
<Button
type='button'
variant='outline'
onClick={handleReset}
disabled={!isDirty || updateOption.isPending || isSubmitting}
>
<RotateCcw className='mr-2 h-4 w-4' />
{t('Reset')}
</Button>
</div>
</form>
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
</SettingsFormGrid>
</SettingsForm>
</Form>
</SettingsSection>
</>