import clsx from 'clsx'; import React, { useEffect, useRef, useState } from 'react'; import { useEnv } from '@/context/EnvContext'; import { useSettingsStore } from '@/store/settingsStore'; import { useResponsiveSize } from '@/hooks/useResponsiveSize'; import { useTranslation } from '@/hooks/useTranslation'; import { RiFontSize } from 'react-icons/ri'; import { RiDashboardLine, RiTranslate } from 'react-icons/ri'; import { VscSymbolColor } from 'react-icons/vsc'; import { PiDotsThreeVerticalBold, PiRobot } from 'react-icons/pi'; import { LiaHandPointerSolid } from 'react-icons/lia'; import { IoAccessibilityOutline } from 'react-icons/io5'; import { MdArrowBackIosNew, MdArrowForwardIos, MdClose } from 'react-icons/md'; import { FiSearch } from 'react-icons/fi'; import { getDirFromUILanguage } from '@/utils/rtl'; import { getCommandPaletteShortcut } from '@/services/environment'; import FontPanel from './FontPanel'; import LayoutPanel from './LayoutPanel'; import ColorPanel from './ColorPanel'; import Dropdown from '@/components/Dropdown'; import Dialog from '@/components/Dialog'; import DialogMenu from './DialogMenu'; import ControlPanel from './ControlPanel'; import LangPanel from './LangPanel'; import MiscPanel from './MiscPanel'; import AIPanel from './AIPanel'; import { useCommandPalette } from '@/components/command-palette'; export type SettingsPanelType = | 'Font' | 'Layout' | 'Color' | 'Control' | 'Language' | 'AI' | 'Custom'; export type SettingsPanelPanelProp = { bookKey: string; onRegisterReset: (resetFn: () => void) => void; }; type TabConfig = { tab: SettingsPanelType; icon: React.ElementType; label: string; disabled?: boolean; }; const SettingsDialog: React.FC<{ bookKey: string }> = ({ bookKey }) => { const _ = useTranslation(); const { appService } = useEnv(); const closeIconSize = useResponsiveSize(16); const [isRtl] = useState(() => getDirFromUILanguage() === 'rtl'); const tabsRef = useRef(null); const panelRef = useRef(null); const [showAllTabLabels, setShowAllTabLabels] = useState(false); const { setFontPanelView, setSettingsDialogOpen, activeSettingsItemId, setActiveSettingsItemId } = useSettingsStore(); const { open: openCommandPalette } = useCommandPalette(); const handleOpenCommandPalette = () => { openCommandPalette(); setSettingsDialogOpen(false); }; const tabConfig = [ { tab: 'Font', icon: RiFontSize, label: _('Font'), }, { tab: 'Layout', icon: RiDashboardLine, label: _('Layout'), }, { tab: 'Color', icon: VscSymbolColor, label: _('Color'), }, { tab: 'Control', icon: LiaHandPointerSolid, label: _('Behavior'), }, { tab: 'Language', icon: RiTranslate, label: _('Language'), }, { tab: 'AI', icon: PiRobot, label: _('AI Assistant'), disabled: process.env.NODE_ENV === 'production', }, { tab: 'Custom', icon: IoAccessibilityOutline, label: _('Custom'), }, ] as TabConfig[]; const [activePanel, setActivePanel] = useState(() => { const lastPanel = localStorage.getItem('lastConfigPanel'); if (lastPanel && tabConfig.some((tab) => tab.tab === lastPanel)) { return lastPanel as SettingsPanelType; } return 'Font' as SettingsPanelType; }); const handleSetActivePanel = (tab: SettingsPanelType) => { setActivePanel(tab); setFontPanelView('main-fonts'); localStorage.setItem('lastConfigPanel', tab); }; // sync localStorage and fontPanelView when activePanel changes const activePanelRef = useRef(activePanel); useEffect(() => { if (activePanelRef.current !== activePanel) { activePanelRef.current = activePanel; setFontPanelView('main-fonts'); localStorage.setItem('lastConfigPanel', activePanel); } }, [activePanel, setFontPanelView]); const [resetFunctions, setResetFunctions] = useState< Record void) | null> >({ Font: null, Layout: null, Color: null, Control: null, Language: null, AI: null, Custom: null, }); const registerResetFunction = (panel: SettingsPanelType, resetFn: () => void) => { setResetFunctions((prev) => ({ ...prev, [panel]: resetFn })); }; const handleResetCurrentPanel = () => { const resetFn = resetFunctions[activePanel]; if (resetFn) { resetFn(); } }; const handleClose = () => { setSettingsDialogOpen(false); }; // handle activeSettingsItemId: switch to correct panel and scroll to item useEffect(() => { if (!activeSettingsItemId) return; // parse panel from item id (format: settings.panel.itemName) const parts = activeSettingsItemId.split('.'); if (parts.length >= 2) { const panelMap: Record = { font: 'Font', layout: 'Layout', color: 'Color', control: 'Control', language: 'Language', ai: 'AI', custom: 'Custom', }; const panelKey = parts[1]?.toLowerCase(); const targetPanel = panelMap[panelKey || '']; if (targetPanel && targetPanel !== activePanel) { // eslint-disable-next-line react-hooks/set-state-in-effect -- panel switch based on external navigation is intended setActivePanel(targetPanel); } } // scroll to item after panel renders const timeoutId = setTimeout(() => { const element = panelRef.current?.querySelector( `[data-setting-id="${activeSettingsItemId}"]`, ); if (element) { element.scrollIntoView({ behavior: 'smooth', block: 'center' }); element.classList.add('settings-highlight'); setTimeout(() => element.classList.remove('settings-highlight'), 2000); } setActiveSettingsItemId(null); }, 100); return () => clearTimeout(timeoutId); }, [activeSettingsItemId, activePanel, setActiveSettingsItemId]); useEffect(() => { setFontPanelView('main-fonts'); const container = tabsRef.current; if (!container) return; const checkButtonWidths = () => { const threshold = (container.clientWidth - 64) * 0.22; const hideLabel = Array.from(container.querySelectorAll('button')).some((button) => { const labelSpan = button.querySelector('span'); const labelText = labelSpan?.textContent || ''; const clone = button.cloneNode(true) as HTMLButtonElement; clone.style.position = 'absolute'; clone.style.visibility = 'hidden'; clone.style.width = 'auto'; const cloneSpan = clone.querySelector('span'); if (cloneSpan) { cloneSpan.classList.remove('hidden'); cloneSpan.textContent = labelText; } document.body.appendChild(clone); const fullWidth = clone.scrollWidth; document.body.removeChild(clone); return fullWidth > threshold; }); setShowAllTabLabels(!hideLabel); }; checkButtonWidths(); const resizeObserver = new ResizeObserver(checkButtonWidths); resizeObserver.observe(container); const mutationObserver = new MutationObserver(checkButtonWidths); mutationObserver.observe(container, { subtree: true, characterData: true, }); return () => { resizeObserver.disconnect(); mutationObserver.disconnect(); }; }, [setFontPanelView]); const currentPanel = tabConfig.find((tab) => tab.tab === activePanel); const windowControls = (
} >
); return (
{currentPanel?.label || ''}
{windowControls}
{tabConfig .filter((t) => !t.disabled) .map(({ tab, icon: Icon, label }) => ( ))}
{windowControls}
} >
{activePanel === 'Font' && ( registerResetFunction('Font', fn)} /> )} {activePanel === 'Layout' && ( registerResetFunction('Layout', fn)} /> )} {activePanel === 'Color' && ( registerResetFunction('Color', fn)} /> )} {activePanel === 'Control' && ( registerResetFunction('Control', fn)} /> )} {activePanel === 'Language' && ( registerResetFunction('Language', fn)} /> )} {activePanel === 'AI' && } {activePanel === 'Custom' && ( registerResetFunction('Custom', fn)} /> )}
); }; export default SettingsDialog;