mirror of
https://github.com/ManInDark/HabitTrove.git
synced 2026-01-20 22:24:28 +01:00
79 lines
2.8 KiB
TypeScript
79 lines
2.8 KiB
TypeScript
'use client'
|
|
|
|
import { cn } from '@/lib/utils'
|
|
import { useAtom } from 'jotai'
|
|
import { useTranslations } from 'next-intl'
|
|
import { browserSettingsAtom, habitsAtom, settingsAtom } from '@/lib/atoms'
|
|
import type { ViewType } from '@/lib/types'
|
|
import { HabitIcon, TaskIcon } from '@/lib/constants'
|
|
import { isHabitDueToday } from '@/lib/utils'
|
|
import { NotificationBadge } from './ui/notification-badge'
|
|
|
|
interface ViewToggleProps {
|
|
defaultView?: ViewType
|
|
className?: string
|
|
}
|
|
|
|
export function ViewToggle({
|
|
defaultView = 'habits',
|
|
className
|
|
}: ViewToggleProps) {
|
|
const t = useTranslations('ViewToggle')
|
|
const [browserSettings, setBrowserSettings] = useAtom(browserSettingsAtom)
|
|
const [habits] = useAtom(habitsAtom)
|
|
const [settings] = useAtom(settingsAtom)
|
|
|
|
const handleViewChange = (checked: boolean) => {
|
|
const newView = checked ? 'tasks' : 'habits'
|
|
setBrowserSettings({
|
|
...browserSettings,
|
|
viewType: newView,
|
|
})
|
|
}
|
|
|
|
// Calculate due tasks count
|
|
const dueTasksCount = habits.habits.filter(habit =>
|
|
habit.isTask && isHabitDueToday({ habit, timezone: settings.system.timezone })
|
|
).length
|
|
|
|
return (
|
|
<div className={cn('inline-flex rounded-full bg-muted/50 h-8', className)}>
|
|
<div className="relative flex gap-0.5 rounded-full bg-background p-0.5 h-full">
|
|
<button
|
|
onClick={() => handleViewChange(false)}
|
|
className={cn(
|
|
'relative z-10 rounded-full px-4 py-2 text-sm font-medium transition-colors flex items-center gap-2',
|
|
browserSettings.viewType === 'habits' ? 'text-primary-foreground' : 'text-muted-foreground hover:text-foreground'
|
|
)}
|
|
>
|
|
<HabitIcon className="h-4 w-4" />
|
|
<span className="hidden sm:inline">{t('habitsLabel')}</span>
|
|
</button>
|
|
<NotificationBadge
|
|
label={dueTasksCount}
|
|
show={dueTasksCount > 0}
|
|
variant={browserSettings.viewType === 'tasks' ? 'secondary' : 'default'}
|
|
className="shadow-md"
|
|
>
|
|
<button
|
|
onClick={() => handleViewChange(true)}
|
|
className={cn(
|
|
'relative z-10 rounded-full px-4 py-2 text-sm font-medium transition-colors flex items-center gap-2',
|
|
browserSettings.viewType === 'tasks' ? 'text-primary-foreground' : 'text-muted-foreground hover:text-foreground'
|
|
)}
|
|
>
|
|
<TaskIcon className="h-4 w-4" />
|
|
<span className="hidden sm:inline">{t('tasksLabel')}</span>
|
|
</button>
|
|
</NotificationBadge>
|
|
<div
|
|
className={cn(
|
|
'absolute left-0.5 top-0.5 h-[calc(100%-0.25rem)] rounded-full bg-primary transition-transform',
|
|
browserSettings.viewType === 'habits' ? 'w-[calc(50%-0.125rem)]' : 'w-[calc(50%-0.125rem)] translate-x-[calc(100%+0.125rem)]'
|
|
)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|