mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-09 22:43:55 +00:00
* feat(ios): record and send voice notes from the chat composer Adds tap-to-record voice notes to the shared chat composer: m4a/AAC mono capture with a 3-minute cap, lazy mic permission, cancel/finish controls, audio attachment chips with duration, and a voice-note transcript row. Voice-wake suppression becomes reason-scoped so recording and Talk cannot clobber each other. Attachments stay online-only per the outbox contract. Related: #100709 * fix(ios): harden voice note attachment staging * chore(ios): keep voice note changelog release-owned * fix(ios): gate voice notes with attachment availability * chore(ios): refresh native localization inventory
108 lines
3.3 KiB
Swift
108 lines
3.3 KiB
Swift
import SwiftUI
|
|
|
|
/// Host-provided voice-note recording state for the shared chat composer.
|
|
public struct OpenClawChatVoiceNoteControl {
|
|
public var recorder: OpenClawVoiceNoteRecorder
|
|
public var isTalkActive: Bool
|
|
|
|
public init(recorder: OpenClawVoiceNoteRecorder, isTalkActive: Bool) {
|
|
self.recorder = recorder
|
|
self.isTalkActive = isTalkActive
|
|
}
|
|
}
|
|
|
|
struct OpenClawVoiceNoteButton: View {
|
|
let control: OpenClawChatVoiceNoteControl
|
|
let compact: Bool
|
|
let isComposerEnabled: Bool
|
|
let isAttachmentInputEnabled: Bool
|
|
|
|
var isRecordingEnabled: Bool {
|
|
self.isComposerEnabled
|
|
&& self.isAttachmentInputEnabled
|
|
&& !self.control.isTalkActive
|
|
&& !self.control.recorder.isRequestingPermission
|
|
}
|
|
|
|
var body: some View {
|
|
Button {
|
|
Task { await self.control.recorder.start() }
|
|
} label: {
|
|
if self.control.recorder.isRequestingPermission {
|
|
ProgressView()
|
|
.controlSize(.mini)
|
|
} else {
|
|
Image(systemName: "mic")
|
|
.font(OpenClawChatTypography.display(size: 15, weight: .semibold, relativeTo: .subheadline))
|
|
}
|
|
}
|
|
.help("Record Voice Note")
|
|
.accessibilityLabel("Record voice note")
|
|
.accessibilityIdentifier("chat-voice-note-record")
|
|
.modifier(VoiceNoteButtonChrome(compact: self.compact))
|
|
.controlSize(.small)
|
|
.foregroundStyle(.secondary)
|
|
.contentShape(Rectangle())
|
|
.disabled(!self.isRecordingEnabled)
|
|
}
|
|
}
|
|
|
|
struct OpenClawVoiceNoteRecordingRow: View {
|
|
let recorder: OpenClawVoiceNoteRecorder
|
|
|
|
var body: some View {
|
|
HStack(spacing: 10) {
|
|
Circle()
|
|
.fill(OpenClawChatTheme.danger)
|
|
.frame(width: 9, height: 9)
|
|
|
|
Text("Recording")
|
|
.font(OpenClawChatTypography.footnoteSemiBold)
|
|
|
|
Text(openClawVoiceNoteDurationLabel(self.recorder.elapsedSeconds))
|
|
.font(OpenClawChatTypography.mono(size: 13, relativeTo: .footnote))
|
|
.foregroundStyle(.secondary)
|
|
|
|
Spacer(minLength: 8)
|
|
|
|
Button {
|
|
self.recorder.cancel()
|
|
} label: {
|
|
Image(systemName: "xmark")
|
|
}
|
|
.buttonStyle(.bordered)
|
|
.controlSize(.small)
|
|
.accessibilityLabel("Cancel voice note")
|
|
|
|
Button {
|
|
self.recorder.finish()
|
|
} label: {
|
|
Image(systemName: "checkmark")
|
|
}
|
|
.buttonStyle(.borderedProminent)
|
|
.controlSize(.small)
|
|
.accessibilityLabel("Finish voice note")
|
|
}
|
|
.padding(.horizontal, 14)
|
|
.padding(.vertical, 10)
|
|
.background(
|
|
RoundedRectangle(cornerRadius: 14, style: .continuous)
|
|
.fill(OpenClawChatTheme.composerField)
|
|
.overlay(
|
|
RoundedRectangle(cornerRadius: 14, style: .continuous)
|
|
.strokeBorder(OpenClawChatTheme.composerBorder)))
|
|
}
|
|
}
|
|
|
|
private struct VoiceNoteButtonChrome: ViewModifier {
|
|
let compact: Bool
|
|
|
|
func body(content: Content) -> some View {
|
|
if self.compact {
|
|
content.buttonStyle(.plain)
|
|
} else {
|
|
content.buttonStyle(.bordered)
|
|
}
|
|
}
|
|
}
|