-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContentView.swift
107 lines (95 loc) · 3.63 KB
/
ContentView.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
//
// ContentView.swift
// CovidSymptomTracking
//
// Created by Soumya Duriseti on 2/14/21.
//
import Foundation
import SwiftUI
import MessageUI
struct ContentView: View {
@State private var show_modal: Bool = false
@State private var cough = false
@State private var ache = false
@State private var fever = false
@State private var fatigue = false
@State private var loss = false
@State private var sore = false
@State private var nausea = false
@State private var pain = false
@State private var selectedFeeling = "Same"
@State private var feel = ["Worse", "Same", "Better"]
var body: some View {
NavigationView {
Form {
Picker("How do you feel today?", selection: $selectedFeeling) {
ForEach(feel, id: \.self) {
Text($0)
}
}
.pickerStyle(SegmentedPickerStyle())
Section{
Toggle("Cough or Shortness of Breath", isOn: $cough)
Toggle("Muscle or Body Aches", isOn: $ache)
Toggle("Fever or Chills", isOn: $fever)
Toggle("Fatigue or Headache", isOn: $fatigue)
Toggle("Loss of Taste or Smell", isOn: $loss)
Toggle("Sore Throat or Congestion", isOn: $sore)
Toggle("Nausea or Vomiting", isOn: $nausea)
Toggle("Persistent Pain or Pressure in Chest", isOn: $pain)
}
Section{
Button(action: {
MailComposeViewController.shared.sendEmail()
if pain == true || nausea == true {
self.show_modal = true
}
//self.show_modal.toggle()
}, label: {
Text("Save log")
}).sheet(isPresented: self.$show_modal) {
ModalView()
}
}
}.navigationTitle("Log your symptoms")
}
.background(Color(red: 193, green: 165, blue: 188))
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
class MailComposeViewController: UIViewController, MFMailComposeViewControllerDelegate {
static let shared = MailComposeViewController()
func sendEmail() {
if MFMailComposeViewController.canSendMail() {
let mail = MFMailComposeViewController()
mail.mailComposeDelegate = self
mail.setToRecipients(["[email protected]"])
mail.setMessageBody("<p>Attached: patient x's symptom logs</p>", isHTML: true)
UIApplication.shared.windows.first?.rootViewController?.present(mail, animated: true)
} else {
// show failure alert
}
}
func mailComposeController(_ controller: MFMailComposeViewController, didFinishWith result: MFMailComposeResult, error: Error?) {
controller.dismiss(animated: true)
}
}
struct ModalView: View {
var body: some View {
Text("You display a Serious Symptom. Contact Your Doctor Immediately!")
.font(Font.largeTitle)
.multilineTextAlignment(.center)
.foregroundColor(Color.red)
}
//.foregroundColor(Color.orange)
}
func UIColorFromHex(rgbValue:UInt32, alpha:Double=1.0)->UIColor {
let red = CGFloat((rgbValue & 0xFF0000) >> 16)/256.0
let green = CGFloat((rgbValue & 0xFF00) >> 8)/256.0
let blue = CGFloat(rgbValue & 0xFF)/256.0
return UIColor(red:red, green:green, blue:blue, alpha:CGFloat(alpha))
}