forked from fritob/Camper-Monitor
CamperMonitor (Haupt-Repo) und VanAligneiOS (aus dem gemergten solar-integration-Branch) liefen unter zwei verschiedenen internen Namen, obwohl die App nach aussen längst einheitlich "VanControl Pro" heisst. Jetzt durchgängig VanControl: - Ordner: CamperMonitor/, CamperMonitorWatch/, CamperMonitorComplication/, VanAligneiOSWidget/ → VanControl/, VanControlWatch/, VanControlComplication/, VanControlWidget/ - Xcode-Projekt: CamperMonitor.xcodeproj → VanControl.xcodeproj, alle Targets/Schemes/Produktnamen entsprechend umbenannt - Bundle-Identifier auf Wunsch mitgeändert: de.s0.fototeddy.VanControl* (App noch nicht veröffentlicht); dabei auch die WKCompanionAppBundleIdentifier-Werte korrigiert, die noch das alte de.fritob-Präfix statt des tatsächlichen de.s0.fototeddy-Präfixes trugen - Swift-Dateien/Typen: CamperMonitorApp → VanControlApp, VanAligneiOSWidget* → VanControlWidget* - Config/*-Info.plist umbenannt, README.md/Tools/README.md/run-tests.sh auf die neuen Pfade angepasst Bewusst unverändert: firmware/vanalign und alle Bezüge auf "VanAlign" als Namen der Neigungsmesser-Hardware (eigenständiges Produkt, kein App-Name) sowie der komplette Android/-Ordner. Build (App, Watch, Debug) und Protokoll-Testlauf grün. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
91 lines
2.6 KiB
Swift
91 lines
2.6 KiB
Swift
//
|
|
// VanControlWidget.swift
|
|
// VanControlWidget
|
|
//
|
|
// Created by Christopher Helberg on 02.09.26.
|
|
//
|
|
|
|
import WidgetKit
|
|
import SwiftUI
|
|
|
|
struct Provider: AppIntentTimelineProvider {
|
|
func placeholder(in context: Context) -> SimpleEntry {
|
|
SimpleEntry(date: Date(), configuration: ConfigurationAppIntent())
|
|
}
|
|
|
|
func snapshot(for configuration: ConfigurationAppIntent, in context: Context) async -> SimpleEntry {
|
|
SimpleEntry(date: Date(), configuration: configuration)
|
|
}
|
|
|
|
func timeline(for configuration: ConfigurationAppIntent, in context: Context) async -> Timeline<SimpleEntry> {
|
|
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)
|
|
}
|
|
|
|
return Timeline(entries: entries, policy: .atEnd)
|
|
}
|
|
|
|
// func relevances() async -> WidgetRelevances<ConfigurationAppIntent> {
|
|
// // Generate a list containing the contexts this widget is relevant in.
|
|
// }
|
|
}
|
|
|
|
struct SimpleEntry: TimelineEntry {
|
|
let date: Date
|
|
let configuration: ConfigurationAppIntent
|
|
}
|
|
|
|
struct VanControlWidgetEntryView : View {
|
|
var entry: Provider.Entry
|
|
|
|
var body: some View {
|
|
VStack {
|
|
Text("Time:")
|
|
Text(entry.date, style: .time)
|
|
|
|
Text("Favorite Emoji:")
|
|
Text(entry.configuration.favoriteEmoji)
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
struct VanControlWidget: Widget {
|
|
let kind: String = "VanControlWidget"
|
|
|
|
var body: some WidgetConfiguration {
|
|
AppIntentConfiguration(kind: kind, intent: ConfigurationAppIntent.self, provider: Provider()) { entry in
|
|
VanControlWidgetEntryView(entry: entry)
|
|
.containerBackground(.fill.tertiary, for: .widget)
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
extension ConfigurationAppIntent {
|
|
fileprivate static var smiley: ConfigurationAppIntent {
|
|
let intent = ConfigurationAppIntent()
|
|
intent.favoriteEmoji = "😀"
|
|
return intent
|
|
}
|
|
|
|
fileprivate static var starEyes: ConfigurationAppIntent {
|
|
let intent = ConfigurationAppIntent()
|
|
intent.favoriteEmoji = "🤩"
|
|
return intent
|
|
}
|
|
}
|
|
|
|
#Preview(as: .systemSmall) {
|
|
VanControlWidget()
|
|
} timeline: {
|
|
SimpleEntry(date: .now, configuration: .smiley)
|
|
SimpleEntry(date: .now, configuration: .starEyes)
|
|
}
|