IceCubesApp/IceCubesAppWidgetsExtension/LatestPostsWidget/LatestPostsWidgetConfiguration.swift

23 lines
728 B
Swift
Raw Normal View History

2024-05-05 11:12:19 +00:00
import AppIntents
2024-05-06 06:38:37 +00:00
import WidgetKit
2024-05-05 11:12:19 +00:00
2024-05-05 17:31:28 +00:00
struct LatestPostsWidgetConfiguration: WidgetConfigurationIntent {
2024-06-26 09:05:35 +00:00
static let title: LocalizedStringResource = "Timeline Widget Configuration"
2024-05-05 11:12:19 +00:00
static let description = IntentDescription("Choose the account and timeline for this widget")
2024-05-06 06:38:37 +00:00
2024-05-05 11:12:19 +00:00
@Parameter(title: "Account")
var account: AppAccountEntity?
2024-05-06 06:38:37 +00:00
2024-05-05 11:12:19 +00:00
@Parameter(title: "Timeline")
var timeline: TimelineFilterEntity?
2024-05-05 11:12:19 +00:00
}
2024-05-05 17:31:28 +00:00
extension LatestPostsWidgetConfiguration {
static var previewAccount: LatestPostsWidgetConfiguration {
let intent = LatestPostsWidgetConfiguration()
2024-05-05 11:12:19 +00:00
intent.account = .init(account: .init(server: "Test", accountName: "Test account"))
intent.timeline = .init(timeline: .home)
return intent
}
}