-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
60f167c
commit 71b62ed
Showing
15 changed files
with
244 additions
and
17 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import { padNumber } from '@/helpers/number'; | ||
|
||
import styles from './timer.module.css'; | ||
|
||
interface TimerProps { | ||
displayHours?: boolean; | ||
timer: number; | ||
} | ||
|
||
export function Timer({ displayHours = false, timer }: TimerProps) { | ||
let hours = Math.floor(timer / 3600); | ||
let minutes = Math.floor((timer % 3600) / 60); | ||
let seconds = timer % 60; | ||
|
||
hours = isNaN(hours) ? 0 : hours; | ||
minutes = isNaN(minutes) ? 0 : minutes; | ||
seconds = isNaN(seconds) ? 0 : seconds; | ||
|
||
const formattedHours = padNumber(hours); | ||
const formattedMinutes = padNumber(minutes); | ||
const formattedSeconds = padNumber(seconds); | ||
|
||
return ( | ||
<div className={styles.timer}> | ||
{displayHours ? ( | ||
<> | ||
{formattedHours}:{formattedMinutes}:{formattedSeconds} | ||
</> | ||
) : ( | ||
<> | ||
{formattedMinutes}:{formattedSeconds} | ||
</> | ||
)} | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { IoMoonSharp } from 'react-icons/io5/index'; | ||
|
||
import { Item } from '../item'; | ||
|
||
interface SleepTimerProps { | ||
open: () => void; | ||
} | ||
|
||
export function SleepTimer({ open }: SleepTimerProps) { | ||
return ( | ||
<Item | ||
icon={<IoMoonSharp />} | ||
label="Sleep timer" | ||
shortcut="Shift + T" | ||
onClick={open} | ||
/> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { SleepTimerModal } from './sleep-timer'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
.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); | ||
} | ||
} | ||
|
||
.controls { | ||
display: flex; | ||
flex-flow: column wrap; | ||
align-items: flex-start; | ||
margin-top: 8px; | ||
|
||
& .inputContainer { | ||
display: flex; | ||
align-items: center; | ||
|
||
& .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; | ||
} | ||
|
||
& .label { | ||
width: 100px; | ||
} | ||
} | ||
|
||
& .buttons { | ||
display: flex; | ||
justify-content: flex-end; | ||
width: 100%; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
import { useEffect, useState, useCallback } from 'react'; | ||
import { Modal } from '@/components/modal'; | ||
import { FaPlay, FaUndo } from 'react-icons/fa/index'; | ||
import { useSoundStore } from '@/store'; | ||
|
||
import { Button } from '@/components/generic/button'; | ||
import { Timer } from '@/components/generic/timer'; | ||
|
||
import styles from './sleep-timer.module.css'; | ||
|
||
interface SleepTimerModalProps { | ||
onClose: () => void; | ||
show: boolean; | ||
} | ||
|
||
export function SleepTimerModal({ onClose, show }: SleepTimerModalProps) { | ||
const [hours, setHours] = useState<string>('0'); | ||
const [minutes, setMinutes] = useState<string>('0'); | ||
const [running, setRunning] = useState(false); | ||
const [timeLeft, setTimeLeft] = useState(0); | ||
const [timerId, setTimerId] = useState<NodeJS.Timeout | undefined>(undefined); | ||
|
||
const pause = useSoundStore(state => state.pause); | ||
|
||
const calculateTotalSeconds = useCallback((): number => { | ||
return ( | ||
(hours === '' ? 0 : parseInt(hours)) * 3600 + | ||
(minutes === '' ? 0 : parseInt(minutes)) * 60 | ||
); | ||
}, [minutes, hours]); | ||
|
||
useEffect(() => { | ||
setTimeLeft(calculateTotalSeconds()); | ||
}, [calculateTotalSeconds]); | ||
|
||
// Handle multiple clicks on this. Only the latest click should be taken into account | ||
const handleStart = () => { | ||
if (timerId) clearInterval(timerId); | ||
|
||
setTimeLeft(calculateTotalSeconds); | ||
setRunning(true); | ||
|
||
if (timeLeft > 0) { | ||
const newTimerId = setInterval(() => { | ||
setTimeLeft(prevTimeLeft => { | ||
const newTimeLeft = prevTimeLeft - 1; | ||
if (newTimeLeft <= 0) { | ||
clearInterval(newTimerId); | ||
pause(); | ||
setRunning(false); | ||
return 0; | ||
} | ||
return newTimeLeft; | ||
}); | ||
}, 1000); | ||
|
||
setTimerId(newTimerId); | ||
} | ||
}; | ||
|
||
const handleReset = () => { | ||
if (timerId) clearInterval(timerId); | ||
setTimeLeft(0); | ||
setRunning(false); | ||
}; | ||
|
||
return ( | ||
<Modal show={show} onClose={onClose}> | ||
<header className={styles.header}> | ||
<h2 className={styles.title}>Sleep Timer</h2> | ||
</header> | ||
<div className={styles.controls}> | ||
{!running && ( | ||
<div className={styles.inputContainer}> | ||
<label className={styles.label} htmlFor="hours"> | ||
Hours: | ||
</label> | ||
<input | ||
className={styles.input} | ||
id="hours" | ||
min="0" | ||
type="number" | ||
value={hours} | ||
onChange={e => | ||
setHours(e.target.value === '' ? '' : e.target.value) | ||
} | ||
/> | ||
</div> | ||
)} | ||
{!running && ( | ||
<div className={styles.inputContainer}> | ||
<label className={styles.label} htmlFor="minutes"> | ||
Minutes: | ||
</label> | ||
<input | ||
className={styles.input} | ||
max="59" | ||
min="0" | ||
type="number" | ||
value={minutes} | ||
onChange={e => | ||
setMinutes(e.target.value === '' ? '' : e.target.value) | ||
} | ||
/> | ||
</div> | ||
)} | ||
{running ? <Timer displayHours={true} timer={timeLeft} /> : null} | ||
<div className={styles.buttons}> | ||
<Button | ||
icon={<FaUndo />} | ||
smallIcon | ||
tooltip="Reset" | ||
onClick={handleReset} | ||
/> | ||
{!running && ( | ||
<Button | ||
icon={<FaPlay />} | ||
smallIcon | ||
tooltip={'Start'} | ||
onClick={handleStart} | ||
/> | ||
)} | ||
</div> | ||
</div> | ||
</Modal> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.