Merge pull request 'Entrega do Desafio' (#21) from feature/challenge-vtex-io into develop

Reviewed-on: #21
This commit is contained in:
Ana Carolina Duarte Cavalcante 2023-02-10 22:04:23 +00:00
commit c2ef23b404
2 changed files with 23 additions and 11 deletions

View File

@ -1,16 +1,29 @@
const Placeholder = () => {
if (typeof document !== "undefined") {
const postalCodeInput = document.querySelector(
".vtex-address-form-4-x-input"
);
const postalCodeValue = document.querySelector(".postalCode");
if (postalCodeInput) {
postalCodeInput.classList.add("postalCode");
}
if (postalCodeValue) {
postalCodeValue.setAttribute("placeholder", "Digite seu CEP");
}
const observer = new MutationObserver(mutations => {
mutations.forEach(_mutation => {
const postalCodeInput = document.querySelector(
".vtex-address-form-4-x-input"
);
const postalCodeValue = document.querySelector(".postalCode");
if (postalCodeInput) {
postalCodeInput.classList.add("postalCode");
observer.disconnect();
}
if (postalCodeValue) {
postalCodeValue.setAttribute("placeholder", "Digite seu CEP");
}
});
});
observer.observe(document, {
childList: true,
subtree: true
});
}
return null;
};

View File

@ -1,7 +1,6 @@
{
"html#breadcrumb": {
"props": {
"tag": "section",
"testId": "breadcrumbs",
"blockClass": "pdp-breadcrumb"
},