mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 18:33:01 +00:00
74 lines
2.2 KiB
TypeScript
74 lines
2.2 KiB
TypeScript
import type { TimerState } from "@sprint/shared";
|
|
import { useEffect, useState } from "react";
|
|
import { getWorkTimeMs } from "@/components/timer-display";
|
|
import { Button } from "@/components/ui/button";
|
|
import { useEndTimer, useTimerState, useToggleTimer } from "@/lib/query/hooks";
|
|
import { parseError } from "@/lib/server";
|
|
import { cn, formatTime } from "@/lib/utils";
|
|
|
|
export function IssueTimer({ issueId, onEnd }: { issueId: number; onEnd?: (data: TimerState) => void }) {
|
|
const { data: timerState, error } = useTimerState(issueId);
|
|
const toggleTimer = useToggleTimer();
|
|
const endTimer = useEndTimer();
|
|
const [tick, setTick] = useState(0);
|
|
const [errorMessage, setErrorMessage] = useState<string | null>(null);
|
|
|
|
useEffect(() => {
|
|
if (!timerState?.isRunning) return;
|
|
|
|
const interval = setInterval(() => {
|
|
setTick((t) => t + 1);
|
|
}, 1000);
|
|
|
|
return () => clearInterval(interval);
|
|
}, [timerState?.isRunning]);
|
|
|
|
useEffect(() => {
|
|
if (!error) return;
|
|
setErrorMessage(parseError(error as Error));
|
|
}, [error]);
|
|
|
|
void tick;
|
|
const displayTime = getWorkTimeMs(timerState?.timestamps);
|
|
|
|
const handleToggle = async () => {
|
|
try {
|
|
await toggleTimer.mutateAsync({ issueId });
|
|
setErrorMessage(null);
|
|
} catch (err) {
|
|
setErrorMessage(parseError(err as Error));
|
|
}
|
|
};
|
|
|
|
const handleEnd = async () => {
|
|
try {
|
|
const data = await endTimer.mutateAsync({ issueId });
|
|
if (data) {
|
|
onEnd?.(data);
|
|
}
|
|
setErrorMessage(null);
|
|
} catch (err) {
|
|
setErrorMessage(parseError(err as Error));
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="flex flex-col items-center gap-4">
|
|
<div className={cn("text-6xl", !timerState?.isRunning && "text-muted-foreground")}>
|
|
{formatTime(displayTime)}
|
|
</div>
|
|
|
|
{errorMessage && <p className="text-red-500 text-sm">{errorMessage}</p>}
|
|
|
|
<div className="flex gap-4">
|
|
<Button onClick={handleToggle}>
|
|
{!timerState ? "Start" : timerState.isRunning ? "Pause" : "Resume"}
|
|
</Button>
|
|
<Button onClick={handleEnd} variant="outline" disabled={!timerState || timerState.endedAt != null}>
|
|
End
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|