| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- //
- // NotificationSettingsView.swift
- // OmniKit
- //
- // Created by Pete Schwamb on 2/3/21.
- // Copyright © 2021 LoopKit Authors. All rights reserved.
- //
- import SwiftUI
- import LoopKit
- import LoopKitUI
- import HealthKit
- struct NotificationSettingsView: View {
- var dateFormatter: DateFormatter
-
- @Binding var expirationReminderDefault: Int
-
- @State private var showingHourPicker: Bool = false
-
- var scheduledReminderDate: Date?
-
- var allowedScheduledReminderDates: [Date]?
-
- var lowReservoirReminderValue: Int
-
- var onSaveScheduledExpirationReminder: ((_ selectedDate: Date?, _ completion: @escaping (_ error: Error?) -> Void) -> Void)?
-
- var onSaveLowReservoirReminder: ((_ selectedValue: Int, _ completion: @escaping (_ error: Error?) -> Void) -> Void)?
-
- var insulinQuantityFormatter = QuantityFormatter(for: .internationalUnit())
- var body: some View {
- RoundedCardScrollView {
- RoundedCard(
- title: LocalizedString("Omnipod Reminders", comment: "Title for omnipod reminders section"),
- footer: LocalizedString("The app configures a reminder on the pod to notify you in advance of Pod expiration. Set the number of hours advance notice you would like to configure when pairing a new Pod.", comment: "Footer text for omnipod reminders section")
- ) {
- ExpirationReminderPickerView(expirationReminderDefault: $expirationReminderDefault)
- }
- if let allowedDates = allowedScheduledReminderDates {
- RoundedCard(
- footer: LocalizedString("This is a reminder that you scheduled when you paired your current Pod.", comment: "Footer text for scheduled reminder area"))
- {
- Text("Scheduled Reminder")
- Divider()
- scheduledReminderRow(scheduledDate: scheduledReminderDate, allowedDates: allowedDates)
- }
- }
- RoundedCard(footer: LocalizedString("The App notifies you when the amount of insulin in the Pod reaches this level.", comment: "Footer text for low reservoir value row")) {
- lowReservoirValueRow
- }
- RoundedCard<EmptyView>(
- title: LocalizedString("Critical Alerts", comment: "Title for critical alerts description"),
- footer: LocalizedString("The reminders above will not sound if your device is in Silent or Do Not Disturb mode.\n\nThere are other critical Pod alerts and alarms that will sound even if you device is set to Silent or Do Not Disturb mode.", comment: "Description text for critical alerts")
- )
- }
- .navigationBarTitle(LocalizedString("Notification Settings", comment: "navigation title for notification settings"))
- }
-
- @State private var scheduleReminderDateEditViewIsShown: Bool = false
-
- private func scheduledReminderRow(scheduledDate: Date?, allowedDates: [Date]) -> some View {
- Group {
- if let scheduledDate = scheduledDate, scheduledDate <= Date() {
- scheduledReminderRowContents(disclosure: false)
- } else {
- NavigationLink(
- destination: ScheduledExpirationReminderEditView(
- scheduledExpirationReminderDate: scheduledDate,
- allowedDates: allowedDates,
- dateFormatter: dateFormatter,
- onSave: onSaveScheduledExpirationReminder,
- onFinish: { scheduleReminderDateEditViewIsShown = false }),
- isActive: $scheduleReminderDateEditViewIsShown)
- {
- scheduledReminderRowContents(disclosure: true)
- }
- }
- }
- }
-
- private func scheduledReminderRowContents(disclosure: Bool) -> some View {
- RoundedCardValueRow(
- label: LocalizedString("Time", comment: "Label for scheduled reminder value row"),
- value: scheduledReminderDateString(scheduledReminderDate),
- highlightValue: false,
- disclosure: disclosure
- )
- }
-
- private func scheduledReminderDateString(_ scheduledDate: Date?) -> String {
- if let scheduledDate = scheduledDate {
- return dateFormatter.string(from: scheduledDate)
- } else {
- return LocalizedString("No Reminder", comment: "Value text for no expiration reminder")
- }
- }
- @State private var lowReservoirReminderEditViewIsShown: Bool = false
- var lowReservoirValueRow: some View {
- NavigationLink(
- destination: LowReservoirReminderEditView(
- lowReservoirReminderValue: lowReservoirReminderValue,
- insulinQuantityFormatter: insulinQuantityFormatter,
- onSave: onSaveLowReservoirReminder,
- onFinish: { lowReservoirReminderEditViewIsShown = false }),
- isActive: $lowReservoirReminderEditViewIsShown)
- {
- RoundedCardValueRow(
- label: LocalizedString("Low Reservoir Reminder", comment: "Label for low reservoir reminder row"),
- value: insulinQuantityFormatter.string(from: HKQuantity(unit: .internationalUnit(), doubleValue: Double(lowReservoirReminderValue)), for: .internationalUnit()) ?? "",
- highlightValue: false,
- disclosure: true)
- }
- }
- }
- struct NotificationSettingsView_Previews: PreviewProvider {
- static var previews: some View {
- return Group {
- NavigationView {
- NotificationSettingsView(dateFormatter: DateFormatter(), expirationReminderDefault: .constant(2), scheduledReminderDate: Date(), allowedScheduledReminderDates: [Date()], lowReservoirReminderValue: 20)
- .previewDevice(PreviewDevice(rawValue:"iPod touch (7th generation)"))
- .previewDisplayName("iPod touch (7th generation)")
- }
- NavigationView {
- NotificationSettingsView(dateFormatter: DateFormatter(), expirationReminderDefault: .constant(2), scheduledReminderDate: Date(), allowedScheduledReminderDates: [Date()], lowReservoirReminderValue: 20)
- .colorScheme(.dark)
- .previewDevice(PreviewDevice(rawValue: "iPhone XS Max"))
- .previewDisplayName("iPhone XS Max - Dark")
- }
- }
- }
- }
|