Files
chaos-api/web/default/src/features/system-settings/content/section-registry.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

138 lines
4.3 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 type { ContentSettings } from '../types'
import { createSectionRegistry } from '../utils/section-registry'
import { AnnouncementsSection } from './announcements-section'
import { ApiInfoSection } from './api-info-section'
import { ChatSettingsSection } from './chat-settings-section'
import { DashboardSection } from './dashboard-section'
import { DrawingSettingsSection } from './drawing-settings-section'
import { FAQSection } from './faq-section'
import { UptimeKumaSection } from './uptime-kuma-section'
/**
* Validate and coerce DataExportDefaultTime to a safe value
*/
function validateDataExportDefaultTime(value: string): 'week' | 'hour' | 'day' {
if (value === 'week' || value === 'hour' || value === 'day') {
return value
}
// Default to 'hour' if value is unexpected
return 'hour'
}
const CONTENT_SECTIONS = [
{
id: 'dashboard',
titleKey: 'Data Dashboard',
build: (settings: ContentSettings) => (
<DashboardSection
defaultValues={{
DataExportEnabled: settings.DataExportEnabled,
DataExportInterval: settings.DataExportInterval,
DataExportDefaultTime: validateDataExportDefaultTime(
settings.DataExportDefaultTime
),
}}
/>
),
},
{
id: 'announcements',
titleKey: 'Announcements',
build: (settings: ContentSettings) => (
<AnnouncementsSection
enabled={settings['console_setting.announcements_enabled']}
data={settings['console_setting.announcements']}
/>
),
},
{
id: 'api-info',
titleKey: 'API Addresses',
build: (settings: ContentSettings) => (
<ApiInfoSection
enabled={settings['console_setting.api_info_enabled']}
data={settings['console_setting.api_info']}
/>
),
},
{
id: 'faq',
titleKey: 'FAQ',
build: (settings: ContentSettings) => (
<FAQSection
enabled={settings['console_setting.faq_enabled']}
data={settings['console_setting.faq']}
/>
),
},
{
id: 'uptime-kuma',
titleKey: 'Uptime Kuma',
build: (settings: ContentSettings) => (
<UptimeKumaSection
enabled={settings['console_setting.uptime_kuma_enabled']}
data={settings['console_setting.uptime_kuma_groups']}
/>
),
},
{
id: 'chat',
titleKey: 'Chat Presets',
build: (settings: ContentSettings) => (
<ChatSettingsSection defaultValue={settings.Chats} />
),
},
{
id: 'drawing',
titleKey: 'Drawing',
build: (settings: ContentSettings) => (
<DrawingSettingsSection
defaultValues={{
DrawingEnabled: settings.DrawingEnabled,
MjNotifyEnabled: settings.MjNotifyEnabled,
MjAccountFilterEnabled: settings.MjAccountFilterEnabled,
MjForwardUrlEnabled: settings.MjForwardUrlEnabled,
MjModeClearEnabled: settings.MjModeClearEnabled,
MjActionCheckSuccessEnabled: settings.MjActionCheckSuccessEnabled,
}}
/>
),
},
] as const
export type ContentSectionId = (typeof CONTENT_SECTIONS)[number]['id']
const contentRegistry = createSectionRegistry<
ContentSectionId,
ContentSettings
>({
sections: CONTENT_SECTIONS,
defaultSection: 'dashboard',
basePath: '/system-settings/content',
urlStyle: 'path',
})
export const CONTENT_SECTION_IDS = contentRegistry.sectionIds
export const CONTENT_DEFAULT_SECTION = contentRegistry.defaultSection
export const getContentSectionNavItems = contentRegistry.getSectionNavItems
export const getContentSectionContent = contentRegistry.getSectionContent
export const getContentSectionMeta = contentRegistry.getSectionMeta