Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions crates/web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ web-sys = { version = "0.3", features = [
"ScrollIntoViewOptions", "ScrollBehavior", "ScrollLogicalPosition",
"DisplayMediaStreamConstraints",
"AudioContext", "BaseAudioContext", "AudioNode",
"AudioBuffer",
"AnalyserNode", "MediaStreamAudioSourceNode",
"RtcSignalingState", "RtcRtpTransceiver",
"Response", "Headers",
Expand Down
5 changes: 5 additions & 0 deletions crates/web/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,11 @@ pub fn App() -> impl IntoView {
// the same `UploadQueue`.
provide_context(crate::upload_state::UploadQueue::new());

// Phase 3b T6 — single-instance voice-note player. Each
// `<AttachmentVoiceNote>` reads this from context to coordinate
// "starting one pauses any other" per spec §Voice note.
provide_context(crate::voice_note_player::VoiceNotePlayer::new());

// Phase 3c.3 — per-channel reaction recency. Drives the picker's
// "recent" shelf in both the composer's emoji button and the
// row's "more reactions" toolbar. The Resource refreshes when
Expand Down
Loading