Files
new-api/web/default/src/features/system-settings/general/checkin-settings-section.tsx
T
t0ng7u b08febaa3c 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.
2026-05-25 00:34:26 +08:00

198 lines
5.9 KiB
TypeScript
Vendored

/*
Copyright (C) 2023-2026 QuantumNous
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
For commercial licensing, please contact support@quantumnous.com
*/
import { z } from 'zod'
import { useForm, type Resolver } from 'react-hook-form'
import { zodResolver } from '@hookform/resolvers/zod'
import { useTranslation } from 'react-i18next'
import { toast } from 'sonner'
import {
Form,
FormControl,
FormDescription,
FormField,
FormItem,
FormLabel,
FormMessage,
} 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'
const schema = z.object({
enabled: z.boolean(),
minQuota: z.coerce.number().int().min(0),
maxQuota: z.coerce.number().int().min(0),
})
type Values = z.infer<typeof schema>
export function CheckinSettingsSection({
defaultValues,
}: {
defaultValues: {
enabled: boolean
minQuota: number
maxQuota: number
}
}) {
const { t } = useTranslation()
const updateOption = useUpdateOption()
const form = useForm<Values>({
resolver: zodResolver(schema) as unknown as Resolver<Values>,
defaultValues: {
enabled: defaultValues.enabled,
minQuota: defaultValues.minQuota,
maxQuota: defaultValues.maxQuota,
},
})
const { isDirty, isSubmitting } = form.formState
const enabled = form.watch('enabled')
async function onSubmit(values: Values) {
const updates: Array<{ key: string; value: string }> = []
if (values.enabled !== defaultValues.enabled) {
updates.push({
key: 'checkin_setting.enabled',
value: String(values.enabled),
})
}
if (values.minQuota !== defaultValues.minQuota) {
updates.push({
key: 'checkin_setting.min_quota',
value: String(values.minQuota),
})
}
if (values.maxQuota !== defaultValues.maxQuota) {
updates.push({
key: 'checkin_setting.max_quota',
value: String(values.maxQuota),
})
}
if (updates.length === 0) {
toast.info(t('No changes to save'))
return
}
for (const update of updates) {
await updateOption.mutateAsync(update)
}
form.reset(values)
}
return (
<SettingsSection title={t('Check-in Settings')}>
<Form {...form}>
<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 }) => (
<SettingsSwitchItem>
<SettingsSwitchContent>
<FormLabel>{t('Enable check-in feature')}</FormLabel>
<FormDescription>
{t(
'Allow users to check in daily for random quota rewards'
)}
</FormDescription>
</SettingsSwitchContent>
<FormControl>
<Switch
checked={field.value}
onCheckedChange={field.onChange}
disabled={updateOption.isPending || isSubmitting}
/>
</FormControl>
</SettingsSwitchItem>
)}
/>
{enabled && (
<div className='grid gap-6 sm:grid-cols-2'>
<FormField
control={form.control}
name='minQuota'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Minimum check-in quota')}</FormLabel>
<FormControl>
<Input
type='number'
min={0}
placeholder={t('1000')}
{...field}
/>
</FormControl>
<FormDescription>
{t('Minimum quota amount awarded for check-in')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name='maxQuota'
render={({ field }) => (
<FormItem>
<FormLabel>{t('Maximum check-in quota')}</FormLabel>
<FormControl>
<Input
type='number'
min={0}
placeholder={t('10000')}
{...field}
/>
</FormControl>
<FormDescription>
{t('Maximum quota amount awarded for check-in')}
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
</div>
)}
</SettingsForm>
</Form>
</SettingsSection>
)
}