19 lines
649 B
Swift
19 lines
649 B
Swift
import AppIntents
|
|
import Foundation
|
|
import AppKit
|
|
|
|
struct DismissMiniRecorderIntent: AppIntent {
|
|
static var title: LocalizedStringResource = "Dismiss VoiceInk Recorder"
|
|
static var description = IntentDescription("Dismiss the VoiceInk mini recorder and cancel any active recording.")
|
|
|
|
static var openAppWhenRun: Bool = false
|
|
|
|
@MainActor
|
|
func perform() async throws -> some IntentResult & ProvidesDialog {
|
|
NotificationCenter.default.post(name: .dismissMiniRecorder, object: nil)
|
|
|
|
let dialog = IntentDialog(stringLiteral: "VoiceInk recorder dismissed")
|
|
return .result(dialog: dialog)
|
|
}
|
|
}
|