| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- import ActivityKit
- import SwiftUI
- import Swinject
- extension LiveActivitySettings {
- struct RootView: BaseView {
- let resolver: Resolver
- @StateObject var state = StateModel()
- @State private var shouldDisplayHint: Bool = false
- @State var hintDetent = PresentationDetent.large
- @State var selectedVerboseHint: AnyView?
- @State var hintLabel: String?
- @State private var decimalPlaceholder: Decimal = 0.0
- @State private var booleanPlaceholder: Bool = false
- @State private var systemLiveActivitySetting: Bool = {
- if #available(iOS 16.2, *) {
- ActivityAuthorizationInfo().areActivitiesEnabled
- } else {
- false
- }
- }()
- @Environment(\.colorScheme) var colorScheme
- private 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
- )
- }
- var body: some View {
- List {
- if !systemLiveActivitySetting {
- Section(
- header: Text("Display Live Data From Trio"),
- content: {
- Text("Live Activities must be enabled under iOS Settings to allow Trio to display live data")
- }
- ).listRowBackground(Color.chart)
- Section {
- Button {
- UIApplication.shared.open(URL(string: UIApplication.openSettingsURLString)!)
- }
- label: { Label("Open iOS Settings", systemImage: "gear.circle").font(.title3).padding() }
- .frame(maxWidth: .infinity, alignment: .center)
- .buttonStyle(.bordered)
- }
- .listRowBackground(Color.clear)
- } else {
- SettingInputSection(
- decimalValue: $decimalPlaceholder,
- booleanValue: $state.useLiveActivity,
- shouldDisplayHint: $shouldDisplayHint,
- selectedVerboseHint: Binding(
- get: { selectedVerboseHint },
- set: {
- selectedVerboseHint = $0.map { AnyView($0) }
- hintLabel = "Enable Live Activity"
- }
- ),
- units: state.units,
- type: .boolean,
- label: "Enable Live Activity",
- miniHint: "Display customizable data on Lock Screen and Dynamic Island.",
- verboseHint: VStack(alignment: .leading, spacing: 10) {
- Text("Default: OFF").bold()
- VStack(alignment: .leading, spacing: 10) {
- Text(
- "With Live Activities enabled, Trio displays your choice of the following current data on your iPhone's Lock Screen and in the Dynamic Island:"
- )
- VStack(alignment: .leading) {
- Text("• Current Glucose Reading")
- Text("• IOB: Insulin On Board")
- Text("• COB: Carbohydrates On Board")
- Text("• Last Updated: Time of Last Loop Cycle")
- Text("• Glucose Trend Chart")
- }.font(.footnote)
- Text(
- "It allows you to refer to live information at a glance and perform quick actions in your diabetes management."
- )
- }
- },
- headerText: "Display Live Data From Trio"
- )
- if state.useLiveActivity {
- Section {
- VStack {
- Picker(
- selection: $state.lockScreenView,
- label: Text("Lock Screen Widget Style")
- ) {
- ForEach(LockScreenView.allCases) { selection in
- Text(selection.displayName).tag(selection)
- }
- }.padding(.top)
- HStack(alignment: .center) {
- Text(
- "Choose between simple or detailed style."
- )
- .font(.footnote)
- .foregroundColor(.secondary)
- .lineLimit(nil)
- Spacer()
- Button(
- action: {
- hintLabel = "Lock Screen Widget Style"
- selectedVerboseHint =
- AnyView(
- VStack(alignment: .leading, spacing: 10) {
- Text("Default: Simple").bold()
- VStack(alignment: .leading, spacing: 10) {
- Text("Simple:").bold()
- Text(
- "Trio's Simple Lock Screen Widget displays current glucose reading, trend arrow, delta and the timestamp of the current reading."
- )
- }
- VStack(alignment: .leading, spacing: 10) {
- Text("Detailed:").bold()
- Text(
- "The Detailed Lock Screen Widget offers users a glucose chart as well as the ability to customize the information provided in the Detailed Widget using the following options:"
- )
- }
- VStack(alignment: .leading) {
- Text("• Current Glucose Reading")
- Text("• IOB: Insulin On Board")
- Text("• COB: Carbohydrates On Board")
- Text("• Last Updated: Time of Last Loop Cycle")
- }.font(.footnote)
- }
- )
- shouldDisplayHint.toggle()
- },
- label: {
- HStack {
- Image(systemName: "questionmark.circle")
- }
- }
- ).buttonStyle(BorderlessButtonStyle())
- }.padding(.top)
- }.padding(.bottom)
- if state.lockScreenView == .detailed {
- HStack {
- NavigationLink(
- "Widget Configuration",
- destination: LiveActivityWidgetConfiguration(
- resolver: resolver,
- state: state
- )
- ).foregroundStyle(Color.accentColor)
- }
- }
- }.listRowBackground(Color.chart)
- }
- }
- }
- .onReceive(resolver.resolve(LiveActivityBridge.self)!.$systemEnabled, perform: {
- self.systemLiveActivitySetting = $0
- })
- .sheet(isPresented: $shouldDisplayHint) {
- SettingInputHintView(
- hintDetent: $hintDetent,
- shouldDisplayHint: $shouldDisplayHint,
- hintLabel: hintLabel ?? "",
- hintText: selectedVerboseHint ?? AnyView(EmptyView()),
- sheetTitle: "Help"
- )
- }
- .scrollContentBackground(.hidden).background(color)
- .onAppear(perform: configureView)
- .navigationTitle("Live Activity")
- .navigationBarTitleDisplayMode(.automatic)
- }
- }
- }
|