diff options
| author | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-06-10 23:39:24 -0700 |
|---|---|---|
| committer | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-06-10 23:39:24 -0700 |
| commit | 0fb6d49be075597fa0812325c7419789d19bcbe8 (patch) | |
| tree | f65a40a30f2f19a27ffd2f9e27e201499ee72b3e /src/components/TimerView.tsx | |
| parent | be38ca61ed85e4493e645c97d69251cdcc02b80b (diff) | |
Diffstat (limited to 'src/components/TimerView.tsx')
| -rw-r--r-- | src/components/TimerView.tsx | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/components/TimerView.tsx b/src/components/TimerView.tsx index b43973c..47c104a 100644 --- a/src/components/TimerView.tsx +++ b/src/components/TimerView.tsx @@ -2,6 +2,7 @@ import type { CSSProperties } from 'react'; import { invoke } from '@tauri-apps/api/core'; import { useTimerStore, TimerPhase } from '../store/timerStore'; import { useTaskStore } from '../store/taskStore'; +import { AmbientControl } from './AmbientControl'; const RING_SIZE = 280; const STROKE = 8; @@ -78,6 +79,10 @@ export function TimerView() { await invoke('reset_timer'); await syncFromBackend(); }; + const handleClearSessions = async () => { + await invoke('clear_session_count'); + await syncFromBackend(); + }; return ( <div @@ -88,9 +93,14 @@ export function TimerView() { justifyContent: 'center', gap: '20px', flex: 1, - padding: '24px 20px', + padding: '24px 20px 32px', + overflow: 'auto', }} > + <div style={{ width: 'min(100%, 520px)' }}> + <AmbientControl /> + </div> + {/* Eyebrow */} <span className="eyebrow" style={{ letterSpacing: '0.18em' }}> {eyebrowText(phase, sessionCount)} @@ -204,6 +214,7 @@ export function TimerView() { <GhostButton onClick={handleSkip}>Skip</GhostButton> <GhostButton onClick={handleReset}>Reset</GhostButton> + <GhostButton onClick={handleClearSessions}>Clear Streak</GhostButton> </div> </div> ); |
