fix(topbar): revert ThemeSwitch to 3-icon original + shorten create button
User explicitly: "ThemeSwitch не трогай". Реверт my 2-button Earth|Dark
переделку обратно на 3-icon Sun/Moon/Monitor segmented control (по
original 3bfa7ca).
Также:
- schema.action.create RU: "Создать справочник" → "Создать"
- schema.action.create EN: "Create dictionary" → "Create"
(per prototype catalog button — короче чтобы не растягивать toolbar)
This commit is contained in:
@@ -1,42 +1,37 @@
|
||||
import { useTranslation } from 'react-i18next'
|
||||
import { Monitor, Moon, Sun } from 'lucide-react'
|
||||
import { useTheme, type ThemePreference } from '@/stores/ThemeProvider'
|
||||
import { cn } from '@/lib/utils'
|
||||
|
||||
/**
|
||||
* Theme switch per redesign prototype — 2-button segmented control с text
|
||||
* labels "Earth | Dark". Filled accent-bg на active.
|
||||
* Tri-state theme switch: Light / Dark / System.
|
||||
*
|
||||
* <p>Прошлый tri-state (Light/Dark/System icons) был noise — "system" preference
|
||||
* редко используется явно, мало кто понимает Monitor icon. Простой 2-button
|
||||
* `Earth / Dark` toggle — точно повторяет prototype и улучшает discoverability.
|
||||
* <p>Segmented control с тремя иконками. Активный — `--color-accent`
|
||||
* background + `--color-on-accent` foreground. Click меняет `preference`
|
||||
* в {@link ThemeProvider}, который пишет в localStorage и переключает
|
||||
* `data-theme` на html.
|
||||
*
|
||||
* <p>Internally "Earth" maps на `light` preference (Earthy palette default).
|
||||
* "System" preference больше не выставляется через UI; localStorage value
|
||||
* остаётся валидным (ThemeProvider может read), но новые users получают
|
||||
* explicit light/dark choice.
|
||||
* <p>System icon показывает «follow OS» — auto-update при OS theme change.
|
||||
*/
|
||||
export function ThemeSwitch() {
|
||||
const { t } = useTranslation()
|
||||
const { preference, setPreference } = useTheme()
|
||||
|
||||
// Treat 'system' как 'light' для UI — переключение всё равно flatten'ит
|
||||
// preference на explicit choice.
|
||||
const activeId: Exclude<ThemePreference, 'system'> =
|
||||
preference === 'dark' ? 'dark' : 'light'
|
||||
|
||||
const items: { id: Exclude<ThemePreference, 'system'>; label: string }[] = [
|
||||
{ id: 'light', label: t('theme.earth', { defaultValue: 'Earth' }) },
|
||||
{ id: 'dark', label: t('theme.dark', { defaultValue: 'Dark' }) },
|
||||
const items: { id: ThemePreference; label: string; icon: typeof Sun }[] = [
|
||||
{ id: 'light', label: t('theme.light'), icon: Sun },
|
||||
{ id: 'dark', label: t('theme.dark'), icon: Moon },
|
||||
{ id: 'system', label: t('theme.system'), icon: Monitor },
|
||||
]
|
||||
|
||||
return (
|
||||
<div
|
||||
role="radiogroup"
|
||||
aria-label={t('theme.label')}
|
||||
className="inline-flex items-center rounded-md border border-line bg-surface overflow-hidden"
|
||||
className="inline-flex items-center rounded-md border border-line bg-surface p-0.5"
|
||||
>
|
||||
{items.map((item) => {
|
||||
const active = activeId === item.id
|
||||
const Icon = item.icon
|
||||
const active = preference === item.id
|
||||
return (
|
||||
<button
|
||||
key={item.id}
|
||||
@@ -44,15 +39,16 @@ export function ThemeSwitch() {
|
||||
role="radio"
|
||||
aria-checked={active}
|
||||
aria-label={item.label}
|
||||
title={item.label}
|
||||
onClick={() => setPreference(item.id)}
|
||||
className={cn(
|
||||
'h-8 px-3 text-cap font-semibold tracking-[0.14em] transition-colors',
|
||||
'inline-flex h-6 w-6 items-center justify-center rounded transition-colors',
|
||||
active
|
||||
? 'bg-accent text-on-accent'
|
||||
: 'text-ink-2 hover:text-ink hover:bg-surface-2',
|
||||
: 'text-mute hover:text-ink hover:bg-surface-2',
|
||||
)}
|
||||
>
|
||||
{item.label}
|
||||
<Icon size={13} strokeWidth={2.25} />
|
||||
</button>
|
||||
)
|
||||
})}
|
||||
|
||||
Reference in New Issue
Block a user