| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- import LoopKitUI
- import SwiftUI
- import Swinject
- extension CGM {
- struct RootView: BaseView {
- let resolver: Resolver
- let displayClose: Bool
- @StateObject var state = StateModel()
- @State private var setupCGM = false
- @Environment(\.colorScheme) var colorScheme
- var color: LinearGradient {
- colorScheme == .dark ? LinearGradient(
- gradient: Gradient(colors: [
- Color.bgDarkBlue,
- Color.bgDarkerDarkBlue
- ]),
- startPoint: .top,
- endPoint: .bottom
- )
- :
- LinearGradient(
- gradient: Gradient(colors: [Color.gray.opacity(0.1)]),
- startPoint: .top,
- endPoint: .bottom
- )
- }
- // @AppStorage(UserDefaults.BTKey.cgmTransmitterDeviceAddress.rawValue) private var cgmTransmitterDeviceAddress: String? = nil
- var body: some View {
- NavigationView {
- Form {
- Section(header: Text("CGM")) {
- Picker("Type", selection: $state.cgmCurrent) {
- ForEach(state.listOfCGM) { type in
- VStack(alignment: .leading) {
- Text(type.displayName)
- Text(type.subtitle).font(.caption).foregroundColor(.secondary)
- }.tag(type)
- }
- }
- if let link = state.cgmCurrent.type.externalLink {
- Button("About this source") {
- UIApplication.shared.open(link, options: [:], completionHandler: nil)
- }
- }
- }
- if let appURL = state.urlOfApp()
- {
- Section {
- Button {
- UIApplication.shared.open(appURL, options: [:]) { success in
- if !success {
- self.router.alertMessage
- .send(MessageContent(content: "Unable to open the app", type: .warning))
- }
- }
- }
- label: {
- Label(state.displayNameOfApp() ?? "-", systemImage: "waveform.path.ecg.rectangle").font(.title3) }
- .frame(maxWidth: .infinity, alignment: .center)
- .buttonStyle(.bordered)
- }
- .listRowBackground(Color.clear)
- } else if state.cgmCurrent.type == .nightscout {
- if let url = state.url {
- Section {
- Button {
- UIApplication.shared.open(url, options: [:]) { success in
- if !success {
- self.router.alertMessage
- .send(MessageContent(content: "No URL available", type: .warning))
- }
- }
- }
- label: { Label("Open URL", systemImage: "waveform.path.ecg.rectangle").font(.title3) }
- .frame(maxWidth: .infinity, alignment: .center)
- .buttonStyle(.bordered)
- }
- .listRowBackground(Color.clear)
- } else {
- Section {
- Button {
- state.showModal(for: .nighscoutConfigDirect)
- // router.mainSecondaryModalView.send(router.view(for: .nighscoutConfigDirect))
- }
- label: { Label("Config Nightscout", systemImage: "waveform.path.ecg.rectangle").font(.title3)
- }
- .frame(maxWidth: .infinity, alignment: .center)
- .buttonStyle(.bordered)
- }
- .listRowBackground(Color.clear)
- }
- }
- if state.cgmCurrent.type == .plugin {
- Section {
- Button("CGM Configuration") {
- setupCGM.toggle()
- }
- }
- }
- if state.cgmCurrent.type == .xdrip {
- Section(header: Text("Heartbeat")) {
- VStack(alignment: .leading) {
- if let cgmTransmitterDeviceAddress = state.cgmTransmitterDeviceAddress {
- Text("CGM address :")
- Text(cgmTransmitterDeviceAddress)
- } else {
- Text("CGM is not used as heartbeat.")
- }
- }
- }
- }
- if state.cgmCurrent.type == .plugin && state.cgmCurrent.id.contains("Libre") {
- Section(header: Text("Calibrations")) {
- Text("Calibrations").navigationLink(to: .calibrations, from: self)
- }
- }
- Section(header: Text("Experimental")) {
- Toggle("Smooth Glucose Value", isOn: $state.smoothGlucose)
- }
- }
- .scrollContentBackground(.hidden).background(color)
- .onAppear(perform: configureView)
- .navigationTitle("CGM")
- .navigationBarTitleDisplayMode(.automatic)
- .navigationBarItems(leading: displayClose ? Button("Close", action: state.hideModal) : nil)
- .sheet(isPresented: $setupCGM) {
- if let cgmFetchManager = state.cgmManager,
- let cgmManager = cgmFetchManager.cgmManager,
- state.cgmCurrent.type == cgmFetchManager.cgmGlucoseSourceType,
- state.cgmCurrent.id == cgmFetchManager.cgmGlucosePluginId
- {
- CGMSettingsView(
- cgmManager: cgmManager,
- bluetoothManager: state.provider.apsManager.bluetoothManager!,
- unit: state.settingsManager.settings.units,
- completionDelegate: state
- )
- } else {
- CGMSetupView(
- CGMType: state.cgmCurrent,
- bluetoothManager: state.provider.apsManager.bluetoothManager!,
- unit: state.settingsManager.settings.units,
- completionDelegate: state,
- setupDelegate: state,
- pluginCGMManager: self.state.pluginCGMManager
- )
- }
- }
- .onChange(of: setupCGM) { setupCGM in
- state.setupCGM = setupCGM
- }
- .onChange(of: state.setupCGM) { setupCGM in
- self.setupCGM = setupCGM
- }
- .screenNavigation(self)
- }
- }
- }
- }
|