-
Notifications
You must be signed in to change notification settings - Fork 0
/
Estoque.swift
138 lines (117 loc) · 4.48 KB
/
Estoque.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import SwiftUI
// Componente para o card de cada remédio
struct RemedioCard: View {
@Binding var remedio: RemedioAPI // Use Binding para permitir alterações
@State private var isEditPresented: Bool = false
var body: some View {
HStack {
Text(remedio.nome).font(.title3).bold()
.padding()
.foregroundStyle(Color.white)
Spacer()
/* Text("\(Int(remedio.quantidade)) \(remedio.unidade)")
.padding()
.foregroundStyle(Color.white) */
Text(remedio.hora).bold()
.padding()
.foregroundStyle(Color.white)
Button(action: {
isEditPresented = true
}) {
Image(systemName: "pencil")
.foregroundColor(Color.white)
.padding()
}
.sheet(isPresented: $isEditPresented) {
EditarRemedioView(remedio: $remedio)
}
}
.frame(width: 300, height: 100)
.background(.cutielight)
.cornerRadius(5)
}
}
// View principal que lista os remédios
struct Estoque: View {
@State private var remedios: [RemedioAPI] = []
var body: some View {
NavigationView {
ScrollView {
VStack(spacing: 10) {
Text("Medicamentos").bold().font(.title).foregroundColor(.gray)
ForEach($remedios) { $remedio in
RemedioCard(remedio: $remedio)
}
}
.onAppear {
carregarRemedios { remediosAPI in
self.remedios = remediosAPI
}
}
.padding(20)
}
.background(Color.white)
.cornerRadius(15)
}
.padding(.top,40 )
.padding()
}
}
// Tela para editar o remédio, com labels para os campos
struct EditarRemedioView: View {
@Binding var remedio: RemedioAPI
@Environment(\.presentationMode) var presentationMode
var body: some View {
Form {
Section(header: Text("Editar Remédio").bold().font(.title).foregroundColor(.gray)) {
HStack {
Text("Nome:").foregroundColor(.gray)
TextField("Nome", text: $remedio.nome)
}
HStack {
Text("Hora:").foregroundColor(.gray)
TextField("Hora", text: $remedio.hora)
}
HStack {
Text("Detalhe:").foregroundColor(.gray)
TextField("Detalhe", text: $remedio.detalhe)
}
DatePicker("Início do Tratamento", selection: $remedio.inicioTratamento, displayedComponents: .date).foregroundColor(.gray)
DatePicker("Fim do Tratamento", selection: $remedio.fimTratamento, displayedComponents: .date).foregroundColor(.gray)
HStack {
Picker("Unidade", selection: $remedio.unidade) {
Text("mg").tag("mg")
Text("ml").tag("ml")
Text("cápsulas").tag("cápsulas")
}.foregroundColor(.gray)
}
HStack {
Text("Quantidade:").foregroundColor(.gray)
TextField("Quantidade", value: $remedio.quantidade, format: .number)
.keyboardType(.decimalPad)
}
HStack {
Text("Estoque:").foregroundColor(.gray)
TextField("Estoque", value: $remedio.estoque, format: .number)
.keyboardType(.decimalPad)
}
}
Button(action: {
editarRemedio(remedio) // Chamada para atualizar o remédio na API
presentationMode.wrappedValue.dismiss() // Fechar a tela após salvar
}) {
Text("Salvar")
.frame(maxWidth: .infinity)
.padding()
.background(.cutielight)
.foregroundColor(.white)
.cornerRadius(8)
}
}
.scrollContentBackground(.hidden)
.navigationTitle("Editar Remédio")
}
}
#Preview {
Estoque()
}