-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHomeContent.tsx
214 lines (188 loc) · 8.54 KB
/
HomeContent.tsx
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
// HomeContent.js
import React, { useState } from 'react';
import { View,Text,Image,Switch, StyleSheet } from 'react-native';
import ControlContent from './ControlContent';
import { useEffect } from 'react';
const HomeContent = () => {
useEffect(() => {
console.log('HomeContent rendered');
}, []); // Add dependencies as needed
const [isLightON, setIsLightON] = useState(false);
const toggleLightON = () => {
setIsLightON(!isLightON);
};
return (
<View style={styles.bigDiv}>
<Text style={{ fontSize: 20, fontWeight: 'bold', marginBottom: 1 }}>센서 현재 상태.</Text>
<View style={styles.innerDiv}>
<View style={styles.miniDiv}>
{/* Content for the second inner div */}
<Image source={require('./assets/tempu.png')} style={{ width: 40, height: 40 }} />
<Text style={{ color: '#000066', padding:2 }}>온도: </Text>
</View>
<View style={styles.miniDiv}>
{/* Content for the second inner div */}
<Image source={require('./assets/hum.png')} style={{ width: 40, height: 40 }} />
<Text style={{ color: '#000066', padding:2 }}>습도: </Text>
</View>
<View style={styles.miniDiv}>
{/* Content for the second inner div */}
<Image source={require('./assets/ccoo2.png')} style={{ width: 40, height: 40 }} />
<Text style={{ color: '#000066', padding:2 }}>Co2: </Text>
</View>
<View style={styles.miniDiv}>
{/* Content for the second inner div */}
<Image source={require('./assets/e_p.png')} style={{ width: 40, height: 40 }} />
<Text style={{ color: '#000066', padding:2 }}>EC/PH: </Text>
</View>
{/* Content for the first inner div */}
<View style={styles.miniDiv}>
{/* Content for the second inner div */}
<Image source={require('./assets/u_v.png')} style={{ width: 40, height: 40 }} />
<Text style={{ color: '#000066', padding:2 }}>UV: </Text>
</View>
<View style={styles.miniDiv}>
{/* Content for the second inner div */}
</View>
{/* Content for the first inner div */}
</View>
<Text style={{ fontSize: 20, fontWeight: 'bold', marginBottom: 1 }}>장치 현재 상태.</Text>
<View style={styles.innerDiv}>
{/* Content for the second inner div */}
<View style={styles.miniDiv}>
{/* Content for the second inner div */}
<Image source={require('./assets/light-onn.png')} style={{ width: 30, height: 30 }} />
<Text style={{ color: '#000066' }}>조명 </Text>
<View
style={{ alignItems: 'center' }}>
<Text
style={{
fontSize: 20,
fontWeight: 'bold',
color: '#000066',
marginBottom: 5,
}}>
{isLightON ? 'ON' : 'OFF'}
</Text>
</View>
</View>
<View style={styles.miniDiv}>
{/* Content for the second inner div */}
<Image source={require('./assets/fabb.png')} style={{ width: 40, height: 40 }} />
<Text style={{ color: '#000066' }}>팬</Text>
<View
style={{ alignItems: 'center' }}>
<Text
style={{
fontSize: 20,
fontWeight: 'bold',
color: '#000066',
marginBottom: 5,
}}>
{isLightON ? 'ON' : 'OFF'}
</Text>
</View>
</View>
<View style={styles.miniDiv}>
{/* Content for the second inner div */}
<Image source={require('./assets/pumpp.png')} style={{ width: 40, height: 40 }} />
<Text style={{ color: '#000066' }}>펌프</Text>
<View
style={{ alignItems: 'center' }}>
<Text
style={{
fontSize: 20,
fontWeight: 'bold',
color: '#000066',
marginBottom: 5,
}}>
{isLightON ? 'ON' : 'OFF'}
</Text>
</View>
</View>
<View style={styles.miniDiv}>
{/* Content for the second inner div */}
<Image source={require('./assets/heater2.png')} style={{ width: 40, height: 40 }} />
<Text style={{ color: '#000066' }}>난방</Text>
<View
style={{ alignItems: 'center' }}>
<Text
style={{
fontSize: 20,
fontWeight: 'bold',
color: '#000066',
marginBottom: 5,
}}>
{isLightON ? 'ON' : 'OFF'}
</Text>
</View>
</View>
<View style={styles.miniDiv}>
{/* Content for the second inner div */}
<Image source={require('./assets/wat-col.png')} style={{ width: 40, height: 40 }} />
<Text style={{ color: '#000066' }}>냉각</Text>
<View
style={{ alignItems: 'center' }}>
<Text
style={{
fontSize: 20,
fontWeight: 'bold',
color: '#000066',
marginBottom: 5,
}}>
{isLightON ? 'ON' : 'OFF'}
</Text>
</View>
</View>
<View style={styles.miniDiv}>
{/* Content for the second inner div */}
</View>
</View>
</View>
);
};
const styles = StyleSheet.create({
bigDiv: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#e0e0e0',
// justifyContent: 'flex-start', // Align children to the start of the row
// alignItems: 'flex-start', // Align children to the start of the column
// backgroundColor: '#e0e0e0',
},
innerDiv: {
width: '99%',
height: 230,
marginVertical: 10,
backgroundColor: '#d6dbbd',
borderWidth: 1,
borderColor: '#ccc',
justifyContent: 'center',
alignItems: 'center',
flexDirection: 'row', // Arrange children horizontally
flexWrap: 'wrap',
},
miniDiv: {
width: '30%',
height: 100,
marginVertical: 10,
marginHorizontal: 5,
backgroundColor: '#fff2e6',
borderWidth: 1,
borderColor: '#ccc',
borderRadius: 10,
justifyContent: 'center',
},
// miniDiv: {
// flexBasis: '30%', // Set the initial size based on 30% of the parent's width
// flexGrow: 1, // Allow flex to fill the remaining space equally
// height: 50,
// marginVertical: 2,
// marginHorizontal: '10%', // Add some spacing between miniDivs
// backgroundColor: '#fff2e6',
// borderWidth: 1,
// borderColor: '#ccc',
// },
});
export default HomeContent;