import Foundation import Libbox import Library import SwiftUI @MainActor public struct OverviewView: View { @Environment(\.selection) private var selection @EnvironmentObject private var environments: ExtensionEnvironments @EnvironmentObject private var profile: ExtensionProfile @Binding private var profileList: [ProfilePreview] @Binding private var selectedProfileID: Int64 @Binding private var systemProxyAvailable: Bool @Binding private var systemProxyEnabled: Bool @State private var alert: Alert? @State private var reasserting = false private var selectedProfileIDLocal: Binding { $selectedProfileID.withSetter { newValue in reasserting = true Task { [self] in await switchProfile(newValue) } } } public init(_ profileList: Binding<[ProfilePreview]>, _ selectedProfileID: Binding, _ systemProxyAvailable: Binding, _ systemProxyEnabled: Binding) { _profileList = profileList _selectedProfileID = selectedProfileID _systemProxyAvailable = systemProxyAvailable _systemProxyEnabled = systemProxyEnabled } public var body: some View { VStack { if ApplicationLibrary.inPreview || profile.status.isConnected { ExtensionStatusView() ClashModeView() } if profileList.isEmpty { Text("Empty profiles") } else { FormView { #if os(iOS) || os(tvOS) StartStopButton() if ApplicationLibrary.inPreview || profile.status.isConnectedStrict, systemProxyAvailable { Toggle("HTTP Proxy", isOn: $systemProxyEnabled) .onChangeCompat(of: systemProxyEnabled) { newValue in Task { await setSystemProxyEnabled(newValue) } } } Section("Profile") { Picker(selection: selectedProfileIDLocal) { ForEach(profileList, id: \.id) { profile in Text(profile.name).tag(profile.id) } } label: {} .pickerStyle(.inline) } #elseif os(macOS) if ApplicationLibrary.inPreview || profile.status.isConnectedStrict, systemProxyAvailable { Toggle("HTTP Proxy", isOn: $systemProxyEnabled) .onChangeCompat(of: systemProxyEnabled) { newValue in Task { await setSystemProxyEnabled(newValue) } } } Section("Profile") { ForEach(profileList, id: \.id) { profile in Picker(profile.name, selection: selectedProfileIDLocal) { Text("").tag(profile.id) } } .pickerStyle(.radioGroup) } #endif } } } .alertBinding($alert) .disabled(!ApplicationLibrary.inPreview && (!profile.status.isSwitchable || reasserting)) } private func switchProfile(_ newProfileID: Int64) async { await SharedPreferences.selectedProfileID.set(newProfileID) environments.selectedProfileUpdate.send() if profile.status.isConnected { do { try await serviceReload() } catch { alert = Alert(error) } } reasserting = false } private nonisolated func serviceReload() async throws { try LibboxNewStandaloneCommandClient()!.serviceReload() } private nonisolated func setSystemProxyEnabled(_ isEnabled: Bool) async { do { try LibboxNewStandaloneCommandClient()!.setSystemProxyEnabled(isEnabled) await SharedPreferences.systemProxyEnabled.set(isEnabled) } catch { await MainActor.run { alert = Alert(error) } } } }