You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.2 KiB
74 lines
2.2 KiB
//
|
|
// JustOneThingWidget.swift
|
|
// JustOneThing
|
|
//
|
|
// Created by Alan Francis on 11/06/2023.
|
|
//
|
|
|
|
import WidgetKit
|
|
import SwiftUI
|
|
import Intents
|
|
|
|
@main
|
|
struct JustOneThingWidgetBundle: WidgetBundle {
|
|
var body: some Widget {
|
|
JustOneThingWidget()
|
|
}
|
|
}
|
|
|
|
struct Provider: IntentTimelineProvider {
|
|
func placeholder(in context: Context) -> SimpleEntry {
|
|
SimpleEntry(date: Date(), configuration: ConfigurationIntent())
|
|
}
|
|
|
|
func getSnapshot(for configuration: ConfigurationIntent, in context: Context, completion: @escaping (SimpleEntry) -> ()) {
|
|
let entry = SimpleEntry(date: Date(), configuration: configuration)
|
|
completion(entry)
|
|
}
|
|
|
|
func getTimeline(for configuration: ConfigurationIntent, in context: Context, completion: @escaping (Timeline<Entry>) -> ()) {
|
|
var entries: [SimpleEntry] = []
|
|
|
|
// Generate a timeline consisting of five entries an hour apart, starting from the current date.
|
|
let currentDate = Date()
|
|
for hourOffset in 0 ..< 5 {
|
|
let entryDate = Calendar.current.date(byAdding: .hour, value: hourOffset, to: currentDate)!
|
|
let entry = SimpleEntry(date: entryDate, configuration: configuration)
|
|
entries.append(entry)
|
|
}
|
|
|
|
let timeline = Timeline(entries: entries, policy: .atEnd)
|
|
completion(timeline)
|
|
}
|
|
|
|
func recommendations() -> [IntentRecommendation<ConfigurationIntent>] {
|
|
return [
|
|
IntentRecommendation(intent: ConfigurationIntent(), description: "My Intent Widget")
|
|
]
|
|
}
|
|
}
|
|
|
|
struct SimpleEntry: TimelineEntry {
|
|
let date: Date
|
|
let configuration: ConfigurationIntent
|
|
}
|
|
|
|
struct JustOneThingWidgetEntryView : View {
|
|
var entry: Provider.Entry
|
|
|
|
var body: some View {
|
|
Text(entry.date, style: .time)
|
|
}
|
|
}
|
|
|
|
struct JustOneThingWidget: Widget {
|
|
let kind: String = "JustOneThingWidget"
|
|
|
|
var body: some WidgetConfiguration {
|
|
IntentConfiguration(kind: kind, intent: ConfigurationIntent.self, provider: Provider()) { entry in
|
|
JustOneThingWidgetEntryView(entry: entry)
|
|
}
|
|
.configurationDisplayName("My Widget")
|
|
.description("This is an example widget.")
|
|
}
|
|
}
|
|
|