-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
48 lines (37 loc) · 1.56 KB
/
script.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
// Função assíncrona
async function buscaEndereco(cep){
var mensagemErro = document.getElementById('cep');
try {
// Consumindo API
var consultaCEP = await fetch(`https://viacep.com.br/ws/${cep}/json/`);
var consultaCEPConvertida = await consultaCEP.json();
// throw erro
if (consultaCEPConvertida.erro) {
throw Error('CEP não existente!');
}
// criando variáveis
var cidade = document.getElementById('cidade');
var logradouro = document.getElementById('endereco');
var bairro = document.getElementById('bairro');
var estado = document.getElementById('estado');
// auto-completando os valores
cidade.value = consultaCEPConvertida.localidade;
logradouro.value = consultaCEPConvertida.logradouro;
bairro.value = consultaCEPConvertida.bairro;
estado.value = consultaCEPConvertida.uf;
// console no valor .json
console.log(consultaCEPConvertida);
return consultaCEPConvertida;
// catch erro
} catch (erro) {
mensagemErro.value = `CEP inválido!`;
console.log(erro)
}
}
// manipulando DOM e criando gatilho
var cep = document.getElementById('cep');
cep.addEventListener('focusout', () => buscaEndereco(cep.value));
// Stringifying vários ceps
// let ceps = ['01001000', '01001001'];
// let conjuntoCeps = ceps.map(valores => buscaEndereco(valores));
// Promise.all(conjuntoCeps).then(respostas => console.log(respostas));