mirror of
https://github.com/home-assistant/iOS.git
synced 2026-02-05 06:35:37 -06: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. --> <img width="1206" height="2622" alt="Simulator Screenshot - iPhone 17 - 2026-01-30 at 11 22 13" src="https://github.com/user-attachments/assets/7035aa1f-f6ff-4edf-8be3-7ea6169730b5" /> ## 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. --> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
266 lines
9.5 KiB
Swift
266 lines
9.5 KiB
Swift
import SFSafeSymbols
|
|
import Shared
|
|
import SwiftUI
|
|
|
|
struct ConnectionSecurityLevelBlockView: View {
|
|
@Environment(\.dismiss) private var dismiss
|
|
@StateObject private var viewModel: ConnectionSecurityLevelBlockViewModel
|
|
|
|
@State private var showSettings = false
|
|
@State private var showHomeNetworkSettings = false
|
|
@State private var showConnectionSecurityPreferences = false
|
|
|
|
let server: Server
|
|
|
|
private let learnMoreLink = AppConstants.WebURLs.companionAppConnectionSecurityLevel
|
|
|
|
init(server: Server) {
|
|
self._viewModel = .init(wrappedValue: ConnectionSecurityLevelBlockViewModel(server: server))
|
|
self.server = server
|
|
}
|
|
|
|
var body: some View {
|
|
NavigationView {
|
|
ScrollView {
|
|
content
|
|
}
|
|
.navigationViewStyle(.stack)
|
|
.toolbar {
|
|
ToolbarItem(placement: .topBarLeading) {
|
|
Button {
|
|
reload()
|
|
} label: {
|
|
Image(systemSymbol: .arrowClockwise)
|
|
}
|
|
}
|
|
ToolbarItem(placement: .topBarTrailing) {
|
|
if !viewModel.requirements.isEmpty {
|
|
Link(destination: learnMoreLink) {
|
|
Image(systemSymbol: .questionmark)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.safeAreaInset(edge: .bottom) {
|
|
bottomButtons
|
|
}
|
|
.onAppear {
|
|
viewModel.loadRequirements()
|
|
}
|
|
#if targetEnvironment(macCatalyst)
|
|
.fullScreenCover(isPresented: $showHomeNetworkSettings) {
|
|
homeNetworkView
|
|
}
|
|
.fullScreenCover(isPresented: $showConnectionSecurityPreferences) {
|
|
connectionPreferencesView
|
|
}
|
|
.fullScreenCover(isPresented: $showSettings) {
|
|
settingsView
|
|
}
|
|
#else
|
|
.sheet(isPresented: $showHomeNetworkSettings) {
|
|
homeNetworkView
|
|
}
|
|
.sheet(isPresented: $showConnectionSecurityPreferences) {
|
|
connectionPreferencesView
|
|
}
|
|
.sheet(isPresented: $showSettings) {
|
|
settingsView
|
|
}
|
|
#endif
|
|
.onReceive(NotificationCenter.default.publisher(for: .locationPermissionDidChange)) { notification in
|
|
if let userInfo = notification.userInfo {
|
|
let state = LocationPermissionState(userInfo: userInfo)
|
|
switch state {
|
|
case .notDetermined:
|
|
Current.Log.info("Location permission not determined")
|
|
case .denied, .restricted:
|
|
URLOpener.shared.open(
|
|
URL(string: UIApplication.openSettingsURLString)!,
|
|
options: [:],
|
|
completionHandler: nil
|
|
)
|
|
case .authorizedWhenInUse, .authorizedAlways:
|
|
// Handle permission change - reload requirements to update UI
|
|
viewModel.loadRequirements()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.navigationViewStyle(.stack)
|
|
}
|
|
|
|
private var settingsView: some View {
|
|
SettingsView()
|
|
.onDisappear {
|
|
Current.sceneManager.webViewWindowControllerPromise.then(\.webViewControllerPromise)
|
|
.done { webView in
|
|
dismiss()
|
|
webView.refresh()
|
|
}
|
|
}
|
|
}
|
|
|
|
private var content: some View {
|
|
VStack(spacing: DesignSystem.Spaces.two) {
|
|
Image(systemSymbol: .lockFill)
|
|
.resizable()
|
|
.foregroundStyle(.haPrimary)
|
|
.scaledToFit()
|
|
.frame(width: 80, height: 80)
|
|
Text(L10n.ConnectionSecurityLevelBlock.title)
|
|
.font(.title2)
|
|
.fontWeight(.semibold)
|
|
Text(L10n.ConnectionSecurityLevelBlock.body)
|
|
.font(.callout)
|
|
.foregroundColor(.secondary)
|
|
.multilineTextAlignment(.center)
|
|
.padding(.horizontal, DesignSystem.Spaces.two)
|
|
|
|
if viewModel.requirements.isEmpty {
|
|
Link(destination: learnMoreLink) {
|
|
Text(L10n.ConnectionSecurityLevelBlock.Requirement.LearnMore.title)
|
|
}
|
|
.buttonStyle(.secondaryButton)
|
|
} else {
|
|
VStack(alignment: .leading, spacing: DesignSystem.Spaces.two) {
|
|
Text(L10n.ConnectionSecurityLevelBlock.Requirement.title)
|
|
.font(DesignSystem.Font.callout.bold())
|
|
.foregroundStyle(.secondary)
|
|
ForEach(viewModel.requirements, id: \.self) { requirement in
|
|
requirementItem(systemSymbol: requirement.systemSymbol, title: requirement.title)
|
|
.onTapGesture {
|
|
switch requirement {
|
|
case .homeNetworkMissing:
|
|
showHomeNetworkSettings = true
|
|
case .locationPermission:
|
|
Current.locationManager.requestLocationPermission()
|
|
case .notOnHomeNetwork:
|
|
Current.Log.info("No action for notOnHomeNetwork requirement")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.frame(maxWidth: DesignSystem.Button.maxWidth)
|
|
.padding(.top)
|
|
}
|
|
tipView
|
|
}
|
|
.padding(DesignSystem.Spaces.three)
|
|
.frame(maxWidth: .infinity, maxHeight: .infinity)
|
|
.background(Color(uiColor: .systemBackground))
|
|
}
|
|
|
|
private var tipView: some View {
|
|
Text(L10n.ConnectionSecurityLevelBlock.tip)
|
|
.font(.caption)
|
|
.foregroundStyle(.tertiary)
|
|
.multilineTextAlignment(.center)
|
|
.padding(.horizontal, DesignSystem.Spaces.two)
|
|
.padding(.top, DesignSystem.Spaces.two)
|
|
}
|
|
|
|
private func openSettings() {
|
|
if Current.isCatalyst {
|
|
Current.sceneManager.activateAnyScene(for: .settings)
|
|
} else {
|
|
showSettings = true
|
|
}
|
|
}
|
|
|
|
private func requirementItem(systemSymbol: SFSymbol, title: String) -> some View {
|
|
HStack {
|
|
Spacer()
|
|
Image(systemSymbol: systemSymbol)
|
|
.font(DesignSystem.Font.title2)
|
|
Text(title)
|
|
.font(DesignSystem.Font.callout)
|
|
Spacer()
|
|
}
|
|
.foregroundStyle(.haPrimary)
|
|
.frame(minHeight: 40)
|
|
.frame(maxWidth: .infinity, alignment: .leading)
|
|
.padding(DesignSystem.Spaces.one)
|
|
.background(.regularMaterial)
|
|
.clipShape(Capsule())
|
|
}
|
|
|
|
private var bottomButtons: some View {
|
|
VStack(spacing: DesignSystem.Spaces.one) {
|
|
Button(action: {
|
|
openSettings()
|
|
}) {
|
|
Text(L10n.ConnectionSecurityLevelBlock.OpenSettings.title)
|
|
}
|
|
.buttonStyle(.primaryButton)
|
|
Button(action: {
|
|
showConnectionSecurityPreferences = true
|
|
}) {
|
|
Text(L10n.ConnectionSecurityLevelBlock.ChangePreference.title)
|
|
}
|
|
.buttonStyle(.secondaryButton)
|
|
}
|
|
.frame(maxWidth: Sizes.maxWidthForLargerScreens)
|
|
.padding(.horizontal, DesignSystem.Spaces.two)
|
|
.padding(.top)
|
|
}
|
|
|
|
private var homeNetworkView: some View {
|
|
NavigationView(content: {
|
|
HomeNetworkInputView(onNext: { context in
|
|
server.update { info in
|
|
if let ssid = context.networkName {
|
|
info.connection.internalSSIDs = [ssid]
|
|
}
|
|
if let hardwareAddress = context.hardwareAddress {
|
|
info.connection.internalHardwareAddresses = [hardwareAddress]
|
|
}
|
|
|
|
showHomeNetworkSettings = false
|
|
}
|
|
})
|
|
.navigationViewStyle(.stack)
|
|
.toolbar {
|
|
ToolbarItem(placement: .topBarLeading) {
|
|
CloseButton {
|
|
showHomeNetworkSettings = false
|
|
}
|
|
}
|
|
}
|
|
})
|
|
.onDisappear {
|
|
reload()
|
|
}
|
|
}
|
|
|
|
private var connectionPreferencesView: some View {
|
|
NavigationView {
|
|
OnboardingPermissionsNavigationView(
|
|
onboardingServer: server,
|
|
steps: [.localAccess, .updatePreferencesSuccess]
|
|
)
|
|
.toolbar {
|
|
ToolbarItem(placement: .topBarLeading) {
|
|
CloseButton {
|
|
showConnectionSecurityPreferences = false
|
|
}
|
|
}
|
|
}
|
|
.navigationViewStyle(.stack)
|
|
}
|
|
.onDisappear {
|
|
reload()
|
|
}
|
|
}
|
|
|
|
private func reload() {
|
|
Current.sceneManager.webViewWindowControllerPromise.then(\.webViewControllerPromise).done { webView in
|
|
webView.refresh()
|
|
}
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
ConnectionSecurityLevelBlockView(server: ServerFixture.standard)
|
|
}
|