diff --git a/src/components/menu/items/index.ts b/src/components/menu/items/index.ts index 3767bbe..a74fae8 100644 --- a/src/components/menu/items/index.ts +++ b/src/components/menu/items/index.ts @@ -6,3 +6,5 @@ export { Presets as PresetsItem } from './presets'; export { Shortcuts as ShortcutsItem } from './shortcuts'; export { SleepTimer as SleepTimerItem } from './sleep-timer'; export { BreathingExercise as BreathingExerciseItem } from './breathing-exercise'; +export { Pomodoro as PomodoroItem } from './pomodoro'; +export { Notepad as NotepadItem } from './notepad'; diff --git a/src/components/menu/items/notepad.tsx b/src/components/menu/items/notepad.tsx new file mode 100644 index 0000000..ef0ff39 --- /dev/null +++ b/src/components/menu/items/notepad.tsx @@ -0,0 +1,23 @@ +import { MdNotes } from 'react-icons/md/index'; + +import { Item } from '../item'; + +import { useNoteStore } from '@/stores/note'; + +interface NotepadProps { + open: () => void; +} + +export function Notepad({ open }: NotepadProps) { + const note = useNoteStore(state => state.note); + + return ( + } + label="Notepad" + shortcut="Shift + N" + onClick={open} + /> + ); +} diff --git a/src/components/menu/items/pomodoro.tsx b/src/components/menu/items/pomodoro.tsx new file mode 100644 index 0000000..43473b5 --- /dev/null +++ b/src/components/menu/items/pomodoro.tsx @@ -0,0 +1,23 @@ +import { MdOutlineAvTimer } from 'react-icons/md/index'; + +import { Item } from '../item'; + +import { usePomodoroStore } from '@/stores/pomodoro'; + +interface PomodoroProps { + open: () => void; +} + +export function Pomodoro({ open }: PomodoroProps) { + const running = usePomodoroStore(state => state.running); + + return ( + } + label="Pomodoro" + shortcut="Shift + P" + onClick={open} + /> + ); +} diff --git a/src/components/menu/menu.tsx b/src/components/menu/menu.tsx index 2ee9da7..69e44f9 100644 --- a/src/components/menu/menu.tsx +++ b/src/components/menu/menu.tsx @@ -13,6 +13,8 @@ import { ShortcutsItem, SleepTimerItem, BreathingExerciseItem, + PomodoroItem, + NotepadItem, } from './items'; import { Divider } from './divider'; import { ShareLinkModal } from '@/components/modals/share-link'; @@ -20,6 +22,7 @@ import { PresetsModal } from '@/components/modals/presets'; import { ShortcutsModal } from '@/components/modals/shortcuts'; import { SleepTimerModal } from '@/components/modals/sleep-timer'; import { BreathingExerciseModal } from '../modals/breathing'; +import { Pomodoro, Notepad } from '../toolbox'; import { fade, mix, slideY } from '@/lib/motion'; import { useSoundStore } from '@/stores/sound'; @@ -35,6 +38,8 @@ export function Menu() { const initial = useMemo( () => ({ breathing: false, + notepad: false, + pomodoro: false, presets: false, shareLink: false, shortcuts: false, @@ -103,7 +108,11 @@ export function Menu() { open('shareLink')} /> open('sleepTimer')} /> + + open('breathing')} /> + open('pomodoro')} /> + open('notepad')} /> open('shortcuts')} /> @@ -131,6 +140,12 @@ export function Menu() { show={modals.shortcuts} onClose={() => close('shortcuts')} /> + open('pomodoro')} + show={modals.pomodoro} + onClose={() => close('pomodoro')} + /> + close('notepad')} /> close('presets')} /> void; + smallIcon?: boolean; + tooltip: string; +} + +export function Button({ + disabled = false, + icon, + onClick, + smallIcon, + tooltip, +}: ButtonProps) { + return ( + + + {icon} + + + ); +} diff --git a/src/components/toolbox/generics/button/index.ts b/src/components/toolbox/generics/button/index.ts new file mode 100644 index 0000000..a039b75 --- /dev/null +++ b/src/components/toolbox/generics/button/index.ts @@ -0,0 +1 @@ +export { Button } from './button'; diff --git a/src/components/toolbox/index.ts b/src/components/toolbox/index.ts new file mode 100644 index 0000000..b4b226a --- /dev/null +++ b/src/components/toolbox/index.ts @@ -0,0 +1,2 @@ +export { Notepad } from './notepad'; +export { Pomodoro } from './pomodoro'; diff --git a/src/components/toolbox/notepad/button/button.module.css b/src/components/toolbox/notepad/button/button.module.css new file mode 100644 index 0000000..4a4e756 --- /dev/null +++ b/src/components/toolbox/notepad/button/button.module.css @@ -0,0 +1,45 @@ +.button { + display: flex; + align-items: center; + justify-content: center; + width: 30px; + height: 30px; + font-size: var(--font-sm); + color: var(--color-foreground); + cursor: pointer; + background-color: var(--color-neutral-100); + border: 1px solid var(--color-neutral-200); + border-radius: 4px; + outline: none; + transition: 0.2s; + transition-property: border-color, color, background-color; + + &:focus-visible { + outline: 2px solid var(--color-neutral-400); + outline-offset: 2px; + } + + &.critical { + color: #f43f5e; + border-color: #f43f5e; + + &:hover { + background-color: rgb(244 63 94 / 10%); + } + } + + &.recommended { + font-size: var(--font-xsm); + color: #22c55e; + border-color: #22c55e; + + &:hover { + background-color: rgb(34 197 94 / 10%); + } + } + + &:hover, + &:focus-visible { + background-color: var(--color-neutral-200); + } +} diff --git a/src/components/toolbox/notepad/button/button.tsx b/src/components/toolbox/notepad/button/button.tsx new file mode 100644 index 0000000..d3da910 --- /dev/null +++ b/src/components/toolbox/notepad/button/button.tsx @@ -0,0 +1,36 @@ +import { Tooltip } from '@/components/tooltip'; + +import { cn } from '@/helpers/styles'; + +import styles from './button.module.css'; + +interface ButtonProps { + critical?: boolean; + icon: React.ReactElement; + onClick: () => void; + recommended?: boolean; + tooltip: string; +} + +export function Button({ + critical, + icon, + onClick, + recommended, + tooltip, +}: ButtonProps) { + return ( + + + {icon} + + + ); +} diff --git a/src/components/toolbox/notepad/button/index.ts b/src/components/toolbox/notepad/button/index.ts new file mode 100644 index 0000000..a039b75 --- /dev/null +++ b/src/components/toolbox/notepad/button/index.ts @@ -0,0 +1 @@ +export { Button } from './button'; diff --git a/src/components/toolbox/notepad/index.ts b/src/components/toolbox/notepad/index.ts new file mode 100644 index 0000000..8a3fad5 --- /dev/null +++ b/src/components/toolbox/notepad/index.ts @@ -0,0 +1 @@ +export { Notepad } from './notepad'; diff --git a/src/components/toolbox/notepad/notepad.module.css b/src/components/toolbox/notepad/notepad.module.css new file mode 100644 index 0000000..2dadc40 --- /dev/null +++ b/src/components/toolbox/notepad/notepad.module.css @@ -0,0 +1,44 @@ +.header { + display: flex; + align-items: center; + justify-content: space-between; + margin-bottom: 8px; + + & .label { + font-size: var(--font-sm); + font-weight: 500; + color: var(--color-foreground-subtle); + } + + & .buttons { + display: flex; + column-gap: 4px; + align-items: center; + } +} + +.textarea { + width: 100%; + height: 350px; + padding: 12px; + line-height: 1.6; + color: var(--color-foreground-subtle); + resize: none; + background-color: var(--color-neutral-50); + border: 1px solid var(--color-neutral-200); + border-radius: 4px; + outline: none; + scroll-padding-bottom: 12px; + + &:focus-visible { + outline: 2px solid var(--color-neutral-400); + outline-offset: 2px; + } +} + +.counter { + margin-top: 8px; + font-size: var(--font-xsm); + color: var(--color-foreground-subtle); + text-align: center; +} diff --git a/src/components/toolbox/notepad/notepad.tsx b/src/components/toolbox/notepad/notepad.tsx new file mode 100644 index 0000000..921556f --- /dev/null +++ b/src/components/toolbox/notepad/notepad.tsx @@ -0,0 +1,90 @@ +import { useRef, useEffect } from 'react'; +import { BiTrash } from 'react-icons/bi/index'; +import { LuCopy, LuDownload } from 'react-icons/lu/index'; +import { FaCheck } from 'react-icons/fa6/index'; +import { FaUndo } from 'react-icons/fa/index'; + +import { Modal } from '@/components/modal'; +import { Button } from './button'; + +import { useNoteStore } from '@/stores/note'; +import { useCopy } from '@/hooks/use-copy'; +import { download } from '@/helpers/download'; + +import styles from './notepad.module.css'; + +interface NotepadProps { + onClose: () => void; + show: boolean; +} + +export function Notepad({ onClose, show }: NotepadProps) { + const textareaRef = useRef(null); + + const note = useNoteStore(state => state.note); + const history = useNoteStore(state => state.history); + const write = useNoteStore(state => state.write); + const words = useNoteStore(state => state.words()); + const characters = useNoteStore(state => state.characters()); + const clear = useNoteStore(state => state.clear); + const restore = useNoteStore(state => state.restore); + + const { copy, copying } = useCopy(); + + useEffect(() => { + if (show && textareaRef.current) { + setTimeout(() => { + textareaRef.current?.focus(); + }, 10); + } + }, [show]); + + const handleKeyDown = (e: React.KeyboardEvent) => { + e.stopPropagation(); + + if (e.key === 'Escape') onClose(); + }; + + return ( + + + Your Note + + : } + tooltip="Copy Note" + onClick={() => copy(note)} + /> + } + tooltip="Download Note" + onClick={() => download('Moodit Note.txt', note)} + /> + : } + recommended={!!history} + tooltip={history ? 'Restore Note' : 'Clear Note'} + onClick={() => (history ? restore() : clear())} + /> + + + + write(e.target.value)} + onKeyDown={handleKeyDown} + /> + + + {characters} character{characters !== 1 && 's'} • {words} word + {words !== 1 && 's'} + + + ); +} diff --git a/src/components/toolbox/pomodoro/index.ts b/src/components/toolbox/pomodoro/index.ts new file mode 100644 index 0000000..9b721ae --- /dev/null +++ b/src/components/toolbox/pomodoro/index.ts @@ -0,0 +1 @@ +export { Pomodoro } from './pomodoro'; diff --git a/src/components/toolbox/pomodoro/pomodoro.module.css b/src/components/toolbox/pomodoro/pomodoro.module.css new file mode 100644 index 0000000..33109cf --- /dev/null +++ b/src/components/toolbox/pomodoro/pomodoro.module.css @@ -0,0 +1,36 @@ +.header { + display: flex; + align-items: center; + justify-content: space-between; + margin-bottom: 8px; + + & .title { + font-size: var(--font-sm); + font-weight: 500; + color: var(--color-foreground-subtle); + } + + & .buttons { + display: flex; + column-gap: 4px; + align-items: center; + } +} + +.control { + display: flex; + align-items: center; + justify-content: space-between; + margin-top: 8px; + + & .completed { + font-size: var(--font-xsm); + color: var(--color-foreground-subtle); + } + + & .buttons { + display: flex; + column-gap: 4px; + align-items: center; + } +} diff --git a/src/components/toolbox/pomodoro/pomodoro.tsx b/src/components/toolbox/pomodoro/pomodoro.tsx new file mode 100644 index 0000000..3f612d6 --- /dev/null +++ b/src/components/toolbox/pomodoro/pomodoro.tsx @@ -0,0 +1,179 @@ +import { useState, useEffect, useRef, useMemo } from 'react'; +import { FaUndo, FaPlay, FaPause } from 'react-icons/fa/index'; +import { IoMdSettings } from 'react-icons/io/index'; + +import { Modal } from '@/components/modal'; +import { Button } from '../generics/button'; +import { Timer } from '@/components/timer'; +import { Tabs } from './tabs'; +import { Setting } from './setting'; + +import { useLocalStorage } from '@/hooks/use-local-storage'; +import { useSoundEffect } from '@/hooks/use-sound-effect'; +import { usePomodoroStore } from '@/stores/pomodoro'; +import { useCloseListener } from '@/hooks/use-close-listener'; + +import styles from './pomodoro.module.css'; + +interface PomodoroProps { + onClose: () => void; + open: () => void; + show: boolean; +} + +export function Pomodoro({ onClose, open, show }: PomodoroProps) { + const [showSetting, setShowSetting] = useState(false); + + const [selectedTab, setSelectedTab] = useState('pomodoro'); + + const running = usePomodoroStore(state => state.running); + const setRunning = usePomodoroStore(state => state.setRunning); + + const [timer, setTimer] = useState(0); + const interval = useRef | null>(null); + + const alarm = useSoundEffect('/sounds/alarm.mp3'); + + const defaultTimes = useMemo( + () => ({ + long: 15 * 60, + pomodoro: 25 * 60, + short: 5 * 60, + }), + [], + ); + + const [times, setTimes] = useLocalStorage>( + 'moodist-pomodoro-setting', + defaultTimes, + ); + + const [completions, setCompletions] = useState>({ + long: 0, + pomodoro: 0, + short: 0, + }); + + const tabs = useMemo( + () => [ + { id: 'pomodoro', label: 'Pomodoro' }, + { id: 'short', label: 'Break' }, + { id: 'long', label: 'Long Break' }, + ], + [], + ); + + useCloseListener(() => setShowSetting(false)); + + useEffect(() => { + if (running) { + if (interval.current) clearInterval(interval.current); + + interval.current = setInterval(() => { + setTimer(prev => prev - 1); + }, 1000); + } else { + if (interval.current) clearInterval(interval.current); + } + }, [running]); + + useEffect(() => { + if (timer <= 0 && running) { + if (interval.current) clearInterval(interval.current); + + alarm.play(); + + setRunning(false); + setCompletions(prev => ({ + ...prev, + [selectedTab]: prev[selectedTab] + 1, + })); + } + }, [timer, selectedTab, running, setRunning, alarm]); + + useEffect(() => { + const time = times[selectedTab] || 10; + + if (interval.current) clearInterval(interval.current); + + setRunning(false); + setTimer(time); + }, [selectedTab, times, setRunning]); + + const toggleRunning = () => { + if (running) setRunning(false); + else if (timer <= 0) { + const time = times[selectedTab] || 10; + + setTimer(time); + setRunning(true); + } else setRunning(true); + }; + + const restart = () => { + if (interval.current) clearInterval(interval.current); + + const time = times[selectedTab] || 10; + + setRunning(false); + setTimer(time); + }; + + return ( + <> + + + Pomodoro Timer + + + } + tooltip="Change Times" + onClick={() => { + onClose(); + setShowSetting(true); + }} + /> + + + + + + + + + {completions[selectedTab] || 0} completed + + + } + smallIcon + tooltip="Restart" + onClick={restart} + /> + : } + smallIcon + tooltip={running ? 'Pause' : 'Start'} + onClick={toggleRunning} + /> + + + + + { + setShowSetting(false); + setTimes(times); + open(); + }} + onClose={() => { + setShowSetting(false); + open(); + }} + /> + > + ); +} diff --git a/src/components/toolbox/pomodoro/setting/index.ts b/src/components/toolbox/pomodoro/setting/index.ts new file mode 100644 index 0000000..0394f8b --- /dev/null +++ b/src/components/toolbox/pomodoro/setting/index.ts @@ -0,0 +1 @@ +export { Setting } from './setting'; diff --git a/src/components/toolbox/pomodoro/setting/setting.module.css b/src/components/toolbox/pomodoro/setting/setting.module.css new file mode 100644 index 0000000..89583ef --- /dev/null +++ b/src/components/toolbox/pomodoro/setting/setting.module.css @@ -0,0 +1,76 @@ +.title { + margin-bottom: 16px; + font-family: var(--font-heading); + font-size: var(--font-md); + font-weight: 600; +} + +& .form { + display: flex; + flex-direction: column; + + & .field { + display: flex; + flex-direction: column; + row-gap: 8px; + margin-bottom: 16px; + + & .label { + font-size: var(--font-sm); + color: var(--color-foreground); + + & span { + color: var(--color-foreground-subtle); + } + } + + & .input { + display: block; + height: 40px; + padding: 0 8px; + color: var(--color-foreground); + background-color: var(--color-neutral-50); + border: 1px solid var(--color-neutral-200); + border-radius: 4px; + outline: none; + + &:focus-visible { + outline: 2px solid var(--color-neutral-400); + outline-offset: 2px; + } + } + } + + & .buttons { + display: flex; + column-gap: 8px; + align-items: center; + justify-content: flex-end; + + & button { + display: flex; + align-items: center; + justify-content: center; + height: 40px; + padding: 0 16px; + font-size: var(--font-sm); + font-weight: 500; + color: var(--color-foreground); + cursor: pointer; + background-color: var(--color-neutral-200); + border: none; + border-radius: 4px; + outline: none; + + &:focus-visible { + outline: 2px solid var(--color-neutral-400); + outline-offset: 2px; + } + + &.primary { + color: var(--color-neutral-100); + background-color: var(--color-neutral-950); + } + } + } +} diff --git a/src/components/toolbox/pomodoro/setting/setting.tsx b/src/components/toolbox/pomodoro/setting/setting.tsx new file mode 100644 index 0000000..8db1a93 --- /dev/null +++ b/src/components/toolbox/pomodoro/setting/setting.tsx @@ -0,0 +1,110 @@ +import { useEffect, useState } from 'react'; + +import { Modal } from '@/components/modal'; + +import styles from './setting.module.css'; + +interface SettingProps { + onChange: (newTimes: Record) => void; + onClose: () => void; + show: boolean; + times: Record; +} + +export function Setting({ onChange, onClose, show, times }: SettingProps) { + const [values, setValues] = useState>(times); + + useEffect(() => { + if (show) setValues(times); + }, [times, show]); + + const handleChange = (id: string) => (value: number | string) => { + setValues(prev => ({ + ...prev, + [id]: typeof value === 'number' ? value * 60 : '', + })); + }; + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault(); + + const newValues: Record = {}; + + Object.keys(values).forEach(name => { + newValues[name] = + typeof values[name] === 'number' ? values[name] : times[name]; + }); + + onChange(newValues); + }; + + const handleCancel = (e: React.MouseEvent) => { + e.preventDefault(); + + onClose(); + }; + + return ( + + Change Times + + + + + + + + + Cancel + + + Save + + + + + ); +} + +interface FieldProps { + id: string; + label: string; + onChange: (value: number | string) => void; + value: number | string; +} + +function Field({ id, label, onChange, value }: FieldProps) { + return ( + + + {label} (minutes) + + { + onChange(e.target.value === '' ? '' : Number(e.target.value)); + }} + /> + + ); +} diff --git a/src/components/toolbox/pomodoro/tabs/index.ts b/src/components/toolbox/pomodoro/tabs/index.ts new file mode 100644 index 0000000..81aabb7 --- /dev/null +++ b/src/components/toolbox/pomodoro/tabs/index.ts @@ -0,0 +1 @@ +export { Tabs } from './tabs'; diff --git a/src/components/toolbox/pomodoro/tabs/tabs.module.css b/src/components/toolbox/pomodoro/tabs/tabs.module.css new file mode 100644 index 0000000..222164c --- /dev/null +++ b/src/components/toolbox/pomodoro/tabs/tabs.module.css @@ -0,0 +1,43 @@ +.tabs { + display: flex; + column-gap: 4px; + align-items: center; + padding: 4px; + margin: 8px 0; + background-color: var(--color-neutral-50); + border: 1px solid var(--color-neutral-200); + border-radius: 8px; + + & .tab { + display: flex; + flex-grow: 1; + align-items: center; + justify-content: center; + height: 45px; + font-size: var(--font-sm); + color: var(--color-foreground-subtle); + cursor: pointer; + background-color: transparent; + border: 1px solid transparent; + border-radius: 4px; + outline: none; + transition: 0.2s; + + &:focus-visible { + outline: 2px solid var(--color-neutral-400); + outline-offset: 2px; + } + + &.selected { + color: var(--color-foreground); + background-color: var(--color-neutral-200); + border-color: var(--color-neutral-300); + } + + &:not(.selected):hover, + &:not(.selected):focus-visible { + color: var(--color-foreground); + background-color: var(--color-neutral-100); + } + } +} diff --git a/src/components/toolbox/pomodoro/tabs/tabs.tsx b/src/components/toolbox/pomodoro/tabs/tabs.tsx new file mode 100644 index 0000000..728bc5e --- /dev/null +++ b/src/components/toolbox/pomodoro/tabs/tabs.tsx @@ -0,0 +1,25 @@ +import { cn } from '@/helpers/styles'; + +import styles from './tabs.module.css'; + +interface TabsProps { + onSelect: (id: string) => void; + selectedTab: string; + tabs: Array<{ id: string; label: string }>; +} + +export function Tabs({ onSelect, selectedTab, tabs }: TabsProps) { + return ( + + {tabs.map(tab => ( + onSelect(tab.id)} + > + {tab.label} + + ))} + + ); +}
+ {characters} character{characters !== 1 && 's'} • {words} word + {words !== 1 && 's'} +
+ {completions[selectedTab] || 0} completed +