2024-05-02 09:32:19 +02:00
|
|
|
import AppIntents
|
2024-05-04 13:19:19 +02:00
|
|
|
import Foundation
|
2024-05-02 09:32:19 +02:00
|
|
|
|
|
|
|
struct PostIntent: AppIntent {
|
2024-05-05 13:12:19 +02:00
|
|
|
static let title: LocalizedStringResource = "Compose a post to Mastodon"
|
|
|
|
static let description: IntentDescription = "Use Ice Cubes to compose a post for Mastodon"
|
2024-05-02 09:32:19 +02:00
|
|
|
static let openAppWhenRun: Bool = true
|
2024-05-04 13:19:19 +02:00
|
|
|
|
2024-05-02 12:05:48 +02:00
|
|
|
@Parameter(title: "Post content", inputConnectionBehavior: .connectToPreviousIntentResult)
|
2024-05-02 09:32:19 +02:00
|
|
|
var content: String?
|
2024-05-04 13:19:19 +02:00
|
|
|
|
2024-05-02 09:32:19 +02:00
|
|
|
func perform() async throws -> some IntentResult {
|
|
|
|
AppIntentService.shared.handledIntent = .init(intent: self)
|
|
|
|
return .result()
|
|
|
|
}
|
|
|
|
}
|