-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
222 lines (202 loc) · 5.98 KB
/
App.js
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
215
216
217
218
219
220
221
222
import 'react-native-gesture-handler';
import React, { useState, useEffect } from 'react';
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import { StyleSheet, Text, TextInput, Button, View, FlatList, TouchableOpacity, Alert } from 'react-native';
import AsyncStorage from '@react-native-async-storage/async-storage';
import { Ionicons } from '@expo/vector-icons';
// Weather Display Screen
import WeatherScreen from './Screens/WeatherScreen';
// Stack Navigator
const Stack = createStackNavigator();
// City Selection Screen
function CitySelectionScreen({ navigation }) {
// City States & Error States
const [cities, setCities] = useState([]);
const [newCity, setNewCity] = useState('');
const [error, setError] = useState('');
// Load cities from AsyncStorage when component mounts
useEffect(() => {
const loadCities = async () => {
try {
const storedCities = await AsyncStorage.getItem('cities');
if (storedCities) {
setCities(JSON.parse(storedCities));
}
} catch (error) {
console.error('Error loading cities from AsyncStorage:', error);
setCities(['Calgary', 'Vancouver', 'Seoul', 'Singapore']); // Fallback
}
};
loadCities();
}, []);
// Save cities to AsyncStorage
const saveCitiesToStorage = async (newCities) => {
try {
await AsyncStorage.setItem('cities', JSON.stringify(newCities));
} catch (error) {
console.error('Error saving cities to AsyncStorage:', error);
}
};
// City Weather Verification
const verifyCity = async (city) => {
// Try & Catch, if Response is 200 and not 404, City is real.
try {
const response = await fetch(
`https://api.openweathermap.org/data/2.5/weather?q=${city}&appid=cbce13c2fe20b0b066a2b25f40575c58`
);
const data = await response.json();
if (response.status === 200 && data.cod !== '404') {
return true;
} else {
return false;
}
} catch (err) {
console.error(err);
return false;
}
};
// Add City to the list, if City is verified, and not empty then add to list.
const handleAddCity = async () => {
if (newCity.trim()) {
const cityName = newCity.trim().toLowerCase();
// Check for duplicates
if (cities.map(city => city.toLowerCase()).includes(cityName)) {
setError('City already added. Please enter a different city.');
return;
}
// Verify city
const isValid = await verifyCity(newCity.trim());
if (isValid) {
const updatedCities = [...cities, newCity.trim()];
setCities(updatedCities);
setNewCity('');
await saveCitiesToStorage(updatedCities);
setError('');
} else {
setError('City not found. Please enter a valid city.');
}
} else {
setError('Please enter a city name.');
}
};
// About/Info About API Usage.
useEffect(() => {
navigation.setOptions({
headerRight: () => (
<TouchableOpacity
style={{ marginRight: 25 }}
onPress={() =>
Alert.alert(
'API Information',
'This app uses the OpenWeatherMap API to fetch weather data.',
[{ text: 'OK' }]
)
}
>
<Ionicons name="information-circle-outline" size={24} color="#ffffff" />
</TouchableOpacity>
),
});
}, [navigation]);
return (
<View style={styles.container}>
<Text style={styles.header}>Add a city</Text>
<View style={styles.inputContainer}>
<TextInput
style={styles.input}
placeholder="Enter City"
value={newCity}
onChangeText={setNewCity}
placeholderTextColor="rgb(157, 157, 157)"
/>
<Button color="#ffffff" title="Add" onPress={handleAddCity} />
</View>
{error ? <Text style={styles.errorText}>{error}</Text> : null}
<Text style={styles.header}>Select a City</Text>
<FlatList
style={styles.list}
data={cities}
keyExtractor={(item, index) => index.toString()}
renderItem={({ item }) => (
<TouchableOpacity
style={styles.cityButton}
onPress={() => navigation.navigate('WeatherScreen', { city: item })}
>
<Text style={styles.cityText}>{item}</Text>
</TouchableOpacity>
)}
/>
</View>
);
}
// Default App navigation.
export default function App() {
return (
<NavigationContainer>
<Stack.Navigator
initialRouteName="CitySelectionScreen"
screenOptions={{
headerStyle: {
backgroundColor: '#1D2635',
borderBottomWidth: 0,
elevation: 0,
shadowOpacity: 0,
},
headerTintColor: '#ffffff',
headerTitleStyle: {
fontWeight: 'medium',
fontSize: 18,
},
}}
>
<Stack.Screen name="CitySelectionScreen" component={CitySelectionScreen} options={{ title: 'Select City' }} />
<Stack.Screen name="WeatherScreen" component={WeatherScreen} options={{ title: 'Weather' }} />
</Stack.Navigator>
</NavigationContainer>
);
}
const styles = StyleSheet.create({
container: {
padding: 20,
flex: 1,
backgroundColor: '#1D2635',
},
header: {
color: '#ffffff',
fontSize: 20,
fontWeight: 'bold',
marginBottom: 16,
},
cityButton: {
padding: 14,
backgroundColor: '#233046',
marginVertical: 5,
borderRadius: 10,
},
cityText: {
color: '#fff',
fontSize: 16,
},
inputContainer: {
flexDirection: 'row',
marginBottom: 25,
},
input: {
flex: 1,
borderWidth: 1,
backgroundColor: '#233046',
borderColor: '#233046',
borderRadius: 10,
padding: 14,
marginRight: 5,
color: '#ffffff',
fontSize: 16,
},
errorText: {
marginTop: -10,
marginBottom: 25,
color: 'red',
fontSize: 14,
},
});