mirror of
https://github.com/home-assistant/iOS.git
synced 2026-04-16 20:49:48 -05:00
<!-- Thank you for submitting a Pull Request and helping to improve Home Assistant. Please complete the following sections to help the processing and review of your changes. Please do not delete anything from this template. --> ## Summary <!-- Provide a brief summary of the changes you have made and most importantly what they aim to achieve --> ## Screenshots <!-- If this is a user-facing change not in the frontend, please include screenshots in light and dark mode. --> ## Link to pull request in Documentation repository <!-- Pull requests that add, change or remove functionality must have a corresponding pull request in the Companion App Documentation repository (https://github.com/home-assistant/companion.home-assistant). Please add the number of this pull request after the "#" --> Documentation: home-assistant/companion.home-assistant# ## Any other notes <!-- If there is any other information of note, like if this Pull Request is part of a bigger change, please include it here. -->
45 lines
1.5 KiB
Swift
45 lines
1.5 KiB
Swift
import AppIntents
|
|
import Foundation
|
|
import Shared
|
|
import SwiftUI
|
|
import WidgetKit
|
|
|
|
@available(iOS 16.4, *)
|
|
struct UpdateWidgetItemConfirmationStateAppIntent: AppIntent {
|
|
static var title: LocalizedStringResource = "Update custom widget confirmation"
|
|
static var isDiscoverable: Bool = false
|
|
|
|
// No translation needed below, this is not a discoverable intent
|
|
@Parameter(title: "Widget Id")
|
|
var widgetId: String?
|
|
|
|
@Parameter(title: "item Id")
|
|
var serverUniqueId: String?
|
|
|
|
func perform() async throws -> some IntentResult {
|
|
guard let serverUniqueId, let widgetId else {
|
|
return .result()
|
|
}
|
|
|
|
_ = try await ResetAllCustomWidgetConfirmationAppIntent().perform()
|
|
|
|
WidgetCenter.shared.reloadTimelines(ofKind: WidgetsKind.custom.rawValue)
|
|
|
|
if var widget = try CustomWidget.widgets()?.first(where: { $0.id == widgetId }),
|
|
let magicItem = widget.items.first(where: { $0.serverUniqueId == serverUniqueId }) {
|
|
widget.itemsStates = [magicItem.serverUniqueId: .pendingConfirmation]
|
|
do {
|
|
try await Current.database().write { [widget] db in
|
|
try widget.update(db)
|
|
}
|
|
} catch {
|
|
Current.Log
|
|
.error(
|
|
"Failed to update custom widget to set pending confirmation item, error: \(error.localizedDescription)"
|
|
)
|
|
}
|
|
}
|
|
return .result()
|
|
}
|
|
}
|