-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
87 lines (78 loc) · 2.33 KB
/
App.tsx
File metadata and controls
87 lines (78 loc) · 2.33 KB
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
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* Generated with the TypeScript template
* https://github.com/react-native-community/react-native-template-typescript
*
* @format
*/
import React, {useEffect, useState} from 'react';
import {
ActivityIndicator,
SafeAreaView,
ScrollView,
StatusBar,
Text,
TextInput,
useColorScheme,
View,
} from 'react-native';
import {Colors} from 'react-native/Libraries/NewAppScreen';
import {useCep} from '~/hooks/cep.hook';
const App = () => {
const isDarkMode = useColorScheme() === 'dark';
const backgroundStyle = {
padding: 8,
backgroundColor: isDarkMode ? Colors.darker : Colors.lighter,
};
const [street, setStreet] = useState('');
const [zipCode, setZipCode] = useState('');
const [complement, setComplement] = useState('');
const [neighborhood, setNeighborhood] = useState('');
const [city, setCity] = useState('');
const [state, setState] = useState('');
const {dataCep, loadingCep, invalidCep} = useCep(zipCode);
useEffect(() => {
setStreet(dataCep?.logradouro);
setComplement(dataCep?.complemento);
setNeighborhood(dataCep?.bairro);
setCity(dataCep?.localidade);
setState(dataCep?.uf);
console.log(dataCep);
}, [dataCep, zipCode]);
return (
<SafeAreaView style={backgroundStyle}>
<StatusBar barStyle={isDarkMode ? 'light-content' : 'dark-content'} />
<ScrollView
contentInsetAdjustmentBehavior="automatic"
style={backgroundStyle}>
<View
style={{
backgroundColor: isDarkMode ? Colors.black : Colors.white,
}}>
<View>
<Text>Insira um cep:</Text>
<TextInput
value={zipCode}
onChangeText={data => setZipCode(data)}
/>
<Text style={{color: 'red'}}>{invalidCep && 'CEP inválido!'}</Text>
</View>
{!loadingCep ? (
<View style={backgroundStyle}>
<Text>Rua: {street}</Text>
<Text>Complemento: {complement}</Text>
<Text>Bairro: {neighborhood}</Text>
<Text>Cidade: {city}</Text>
<Text>Estado: {state}</Text>
</View>
) : (
<ActivityIndicator />
)}
</View>
</ScrollView>
</SafeAreaView>
);
};
export default App;