feat(sound): 우하단 빠른 볼륨/3프리셋 및 더미 저장 복원 적용

This commit is contained in:
2026-03-04 15:20:56 +09:00
parent 8f64637b6f
commit 27a64d9d81
7 changed files with 368 additions and 112 deletions

View File

@@ -80,6 +80,10 @@ export const SpaceWorkspaceWidget = () => {
const {
selectedPresetId,
setSelectedPresetId,
masterVolume,
setMasterVolume,
isMuted,
setMuted,
} = useSoundPresetSelection(initialSoundPresetId);
const selectedRoom = useMemo(() => {
@@ -212,6 +216,10 @@ export const SpaceWorkspaceWidget = () => {
onRoomSelect={setSelectedRoomId}
onTimerSelect={setSelectedTimerLabel}
onSelectPreset={setSelectedPresetId}
soundVolume={masterVolume}
onSetSoundVolume={setMasterVolume}
isSoundMuted={isMuted}
onSetSoundMuted={setMuted}
onCaptureThought={(note) => addThought(note, selectedRoom.name)}
onDeleteThought={removeThought}
onSetThoughtCompleted={setThoughtCompleted}