-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b1fac16
commit 9cd1e22
Showing
12 changed files
with
2,859 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
node_modules | ||
build | ||
.DS_Store | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
/* CidadesEstados JS | ||
* https://github.com/wgenial/ | ||
* Developed by WGenial - http://wgenial.com.br | ||
*/ | ||
|
||
'use strict'; | ||
|
||
export class CidadesEstados { | ||
|
||
constructor() { | ||
this.json_path = { | ||
estados: '/dist/json', | ||
cidades: '/dist/json/cidades', | ||
} | ||
this.json = { | ||
estados: null, | ||
cidades: [] | ||
} | ||
} | ||
|
||
init() { | ||
this.renderEstados(); | ||
this.changeEstados(); | ||
this.changeCidades(); | ||
} | ||
|
||
async getEstados() { | ||
const response = await fetch(`${this.json_path.estados}/estados.json`); | ||
return await response.json(); | ||
} | ||
|
||
async getCidades(estado) { | ||
if (!this.json.cidades.hasOwnProperty(estado)) { | ||
const response = await fetch(`${this.json_path.cidades}/${estado}.json`); | ||
this.json.cidades[estado] = await response.json(); | ||
} | ||
return this.json.cidades[estado]; | ||
} | ||
|
||
renderEstados() { | ||
let estadosObj = document.querySelectorAll('select[data-estado]'); | ||
|
||
if (estadosObj.length == 0) { | ||
return false; | ||
} | ||
|
||
this.getEstados() | ||
.then((response) => { | ||
this.json.estados = response.estados; | ||
|
||
estadosObj.forEach((estadoObj) => { | ||
let estadoAttr = estadoObj.getAttribute('data-estado'); | ||
let grupoIdAttr = estadoObj.getAttribute('data-grupo-id'); | ||
|
||
while(estadoObj.firstChild) { | ||
estadoObj.removeChild(estadoObj.firstChild); | ||
} | ||
estadoObj.options[estadoObj.options.length] = new Option('Selecione um estado', ''); | ||
|
||
this.json.estados.forEach((estado) => { | ||
estadoObj.options[estadoObj.options.length] = (estado.id == estadoAttr) ? new Option(estado.estado, estado.id, null, true) : new Option(estado.estado, estado.id); | ||
}); | ||
|
||
this.renderCidades(estadoAttr, grupoIdAttr); | ||
|
||
}); | ||
|
||
}) | ||
.catch(err => console.log(err)); | ||
} | ||
|
||
renderCidades(estado, grupoId) { | ||
let cidadeObj = document.querySelector(`[data-cidade][data-grupo-id='${grupoId}']`); | ||
let cidadeAttr = cidadeObj.getAttribute('data-cidade'); | ||
|
||
while (cidadeObj.firstChild) { | ||
cidadeObj.removeChild(cidadeObj.firstChild); | ||
} | ||
cidadeObj.options[cidadeObj.options.length] = new Option('Selecione uma cidade', ''); | ||
|
||
if (estado != '') { | ||
this.getCidades(estado) | ||
.then((response) => { | ||
response.cidades.forEach((cidade) => { | ||
|
||
if (cidadeAttr == '' && cidade.capital) { | ||
cidadeObj.options[cidadeObj.options.length] = new Option(cidade.cidade, cidade.cidade, null, true); | ||
cidadeObj.setAttribute('data-cidade', cidade.cidade); | ||
} else { | ||
cidadeObj.options[cidadeObj.options.length] = (cidade.cidade == cidadeAttr) ? new Option(cidade.cidade, cidade.cidade, null, true) : new Option(cidade.cidade, cidade.cidade); | ||
} | ||
|
||
}); | ||
}) | ||
.catch(err => console.log(err)); | ||
} | ||
|
||
} | ||
|
||
changeEstados() { | ||
document.addEventListener('change', (event) => { | ||
if (event.target.matches('[data-estado]')) { | ||
let estadoObj = event.target; | ||
let estadoAttr = estadoObj.value; | ||
let grupoIdAttr = estadoObj.getAttribute('data-grupo-id'); | ||
let cidadeObj = document.querySelector(`[data-cidade][data-grupo-id='${grupoIdAttr}']`); | ||
|
||
estadoObj.setAttribute('data-estado', estadoAttr); | ||
cidadeObj.setAttribute('data-cidade', ''); | ||
|
||
this.renderCidades(estadoAttr, grupoIdAttr); | ||
} | ||
}); | ||
} | ||
|
||
changeCidades() { | ||
document.addEventListener('change', (event) => { | ||
if (event.target.matches('[data-cidade]')) { | ||
let cidadeObj = event.target; | ||
cidadeObj.setAttribute('data-cidade', cidadeObj[cidadeObj.selectedIndex].text); | ||
} | ||
}); | ||
} | ||
|
||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.