/* 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 . For commercial licensing, please contact support@quantumnous.com */ import * as z from 'zod' import { useForm } from 'react-hook-form' import { zodResolver } from '@hookform/resolvers/zod' import { useTranslation } from 'react-i18next' 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 { useResetForm } from '../hooks/use-reset-form' import { useUpdateOption } from '../hooks/use-update-option' import { safeNumberFieldProps } from '../utils/numeric-field' const behaviorSchema = z.object({ RetryTimes: z.coerce.number().min(0).max(10), DefaultCollapseSidebar: z.boolean(), DemoSiteEnabled: z.boolean(), SelfUseModeEnabled: z.boolean(), }) type BehaviorFormValues = z.infer type SystemBehaviorSectionProps = { defaultValues: BehaviorFormValues } export function SystemBehaviorSection({ defaultValues, }: SystemBehaviorSectionProps) { const { t } = useTranslation() const updateOption = useUpdateOption() const form = useForm({ resolver: zodResolver(behaviorSchema), defaultValues, }) useResetForm(form, defaultValues) const onSubmit = async (data: BehaviorFormValues) => { const updates = Object.entries(data).filter( ([key, value]) => value !== defaultValues[key as keyof BehaviorFormValues] ) for (const [key, value] of updates) { await updateOption.mutateAsync({ key, value }) } } return (
( {t('Retry Times')} {t('Number of times to retry failed requests (0-10)')} )} /> ( {t('Default Collapse Sidebar')} {t('Sidebar collapsed by default for new users')} )} /> ( {t('Demo Site Mode')} {t('Enable demo mode with limited functionality')} )} /> ( {t('Self-Use Mode')} {t('Optimize system for self-hosted single-user usage')} )} />
) }