Files
sam-react-prod/src/components/ThemeSelect.tsx
유병철 012a661a19 refactor(WEB): 회계/결재/건설 등 공통화 3차 및 검색/상태 유틸 추가
- search.ts: 범용 검색 유틸리티 추출 (텍스트/날짜/상태 필터링)
- status-config.ts: 상태 설정 공통 유틸 추가
- 회계 모듈 types 간소화 및 컬럼 설정 공통 패턴 적용
- 회계 page.tsx 통일 (bad-debt/bills/deposits/sales 등 9개)
- 결재함(승인/기안/참조) 공통 패턴 적용
- 건설 모듈 견적/인수인계/이슈/기성 등 코드 정리
- IntegratedListTemplateV2 개선
- LanguageSelect/ThemeSelect 정리
- 체크리스트 문서 업데이트

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-20 13:26:27 +09:00

82 lines
3.0 KiB
TypeScript

"use client";
import { useThemeStore } from "@/stores/themeStore";
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select";
import { Sun, Moon, Accessibility } from "lucide-react";
const themes = [
{ value: "light", label: "일반 모드", icon: Sun, color: "text-orange-500", emoji: "☀️" },
{ value: "dark", label: "다크 모드", icon: Moon, color: "text-blue-400", emoji: "🌙" },
{ value: "senior", label: "시니어 모드", icon: Accessibility, color: "text-green-500", emoji: "👓" },
];
interface ThemeSelectProps {
native?: boolean;
}
export function ThemeSelect({ native = true }: ThemeSelectProps) {
const { theme, setTheme } = useThemeStore();
const currentTheme = themes.find((t) => t.value === theme);
const CurrentIcon = currentTheme?.icon || Sun;
// 네이티브 select
if (native) {
return (
<div className="relative min-w-[140px] w-auto">
<div className="absolute left-3 top-1/2 -translate-y-1/2 pointer-events-none z-10">
<CurrentIcon className={`w-4 h-4 ${currentTheme?.color}`} />
</div>
<select
value={theme}
onChange={(e) => setTheme(e.target.value as "light" | "dark" | "senior")}
className="w-full h-9 pl-9 pr-3 rounded-xl border border-border/50 bg-background/50 backdrop-blur text-sm appearance-none cursor-pointer focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-0 transition-all"
>
{themes.map((themeOption) => (
<option key={themeOption.value} value={themeOption.value}>
{themeOption.label}
</option>
))}
</select>
<div className="absolute right-3 top-1/2 -translate-y-1/2 pointer-events-none">
<svg className="w-4 h-4 opacity-50" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 9l-7 7-7-7" />
</svg>
</div>
</div>
);
}
// Radix UI 모달 select
return (
<Select value={theme} onValueChange={(value) => setTheme(value as "light" | "dark" | "senior")}>
<SelectTrigger className="min-w-[140px] w-auto rounded-xl border-border/50 bg-background/50 backdrop-blur">
<div className="flex items-center gap-2">
<CurrentIcon className={`w-4 h-4 ${currentTheme?.color}`} />
<SelectValue>
<span className="text-sm">{currentTheme?.label}</span>
</SelectValue>
</div>
</SelectTrigger>
<SelectContent>
{themes.map((themeOption) => {
const Icon = themeOption.icon;
return (
<SelectItem key={themeOption.value} value={themeOption.value}>
<div className="flex items-center gap-2">
<Icon className={`w-4 h-4 ${themeOption.color}`} />
<span>{themeOption.label}</span>
</div>
</SelectItem>
);
})}
</SelectContent>
</Select>
);
}