diff --git a/checkout/src/arquivos/js/components/Header.js b/checkout/src/arquivos/js/components/Header.js index 55f2c57..fbea03f 100644 --- a/checkout/src/arquivos/js/components/Header.js +++ b/checkout/src/arquivos/js/components/Header.js @@ -9,7 +9,7 @@ export default class Header { async init() { await this.selectors(); this.progressBarStructure(); - // await this.progressBarMove(); + await this.progressBarMove(); } async selectors() { @@ -23,25 +23,164 @@ export default class Header { ` } - // if(this.progressBar && window.innerWidth <=1024) { - // this.progressBar.innerHTML = ""; - // } + if(this.progressBar && window.innerWidth <=1024) { + this.progressBar.innerHTML = ""; + } + } + + async progressBarMove() { + + if (this.progressBar && window.innerWidth > 1024) { + + const progressBarStages = document.querySelectorAll((".progress-bar__stage")); + + progressBarStages.forEach((stage) => { + + if(window.location.href === "https://m3academy.myvtex.com/checkout/#/cart") { + + if(stage.children["progress-bar__cart"]) { + stage.children["progress-bar__cart"].classList.add("active") + } + + if(stage.children["progress-bar__personal-data"]) { + if(stage.children["progress-bar__personal-data"].classList.contains("active")) { + stage.children["progress-bar__personal-data"].classList.remove("active") + } + } + + if(stage.children["progress-bar__payment"]) { + if(stage.children["progress-bar__payment"].classList.contains("active")) { + stage.children["progress-bar__payment"].classList.remove("active") + } + } + + } else if ( + + window.location.href === "https://m3academy.myvtex.com/checkout/#/email" || + window.location.href === "https://m3academy.myvtex.com/checkout/#/profile" || + window.location.href === "https://m3academy.myvtex.com/checkout/#/shipping") { + + if(stage.children["progress-bar__cart"]) { + if(stage.children["progress-bar__cart"].classList.contains("active")) { + stage.children["progress-bar__cart"].classList.remove("active") + } + } + + if(stage.children["progress-bar__personal-data"]) { + stage.children["progress-bar__personal-data"].classList.add("active") + } + + if(stage.children["progress-bar__payment"]) { + if(stage.children["progress-bar__payment"].classList.contains("active")) { + stage.children["progress-bar__payment"].classList.remove("active") + } + } + + } else if ( + + window.location.href === "https://m3academy.myvtex.com/checkout/#/payment") { + + if(stage.children["progress-bar__cart"]) { + if(stage.children["progress-bar__cart"].classList.contains("active")) { + stage.children["progress-bar__cart"].classList.remove("active") + } + } + + if(stage.children["progress-bar__personal-data"]) { + if(stage.children["progress-bar__personal-data"].classList.contains("active")) { + stage.children["progress-bar__personal-data"].classList.remove("active") + } + } + + if(stage.children["progress-bar__payment"]) { + stage.children["progress-bar__payment"].classList.add("active") + } + + } else { + console.log("Erro") + } + + window.addEventListener("hashchange", () => { + + if (window.location.hash == "#/cart") { + if(stage.children["progress-bar__cart"]) { + stage.children["progress-bar__cart"].classList.add("active") + } + + if(stage.children["progress-bar__personal-data"]) { + if(stage.children["progress-bar__personal-data"].classList.contains("active")) { + stage.children["progress-bar__personal-data"].classList.remove("active") + } + } + + if(stage.children["progress-bar__payment"]) { + if(stage.children["progress-bar__payment"].classList.contains("active")) { + stage.children["progress-bar__payment"].classList.remove("active") + } + } + + } else if ( + + window.location.hash == "#/email" || + window.location.hash == "#/profile" || + window.location.hash == "#/shipping") { + + if(stage.children["progress-bar__cart"]) { + if(stage.children["progress-bar__cart"].classList.contains("active")) { + stage.children["progress-bar__cart"].classList.remove("active") + } + } + + if(stage.children["progress-bar__personal-data"]) { + stage.children["progress-bar__personal-data"].classList.add("active") + } + + if(stage.children["progress-bar__payment"]) { + if(stage.children["progress-bar__payment"].classList.contains("active")) { + stage.children["progress-bar__payment"].classList.remove("active") + } + } + + } else if (window.location.hash == "#/payment") { + + if(stage.children["progress-bar__cart"]) { + if(stage.children["progress-bar__cart"].classList.contains("active")) { + stage.children["progress-bar__cart"].classList.remove("active") + } + } + + if(stage.children["progress-bar__personal-data"]) { + if(stage.children["progress-bar__personal-data"].classList.contains("active")) { + stage.children["progress-bar__personal-data"].classList.remove("active") + } + } + + if(stage.children["progress-bar__payment"]) { + stage.children["progress-bar__payment"].classList.add("active") + } + + } else { + console.log("Erro") + } + }) + }) + } } // async progressBarMove() { @@ -53,3 +192,6 @@ export default class Header { // } // } } + + + diff --git a/checkout/src/arquivos/sass/partials/_header.scss b/checkout/src/arquivos/sass/partials/_header.scss index cc25d34..fc9d501 100644 --- a/checkout/src/arquivos/sass/partials/_header.scss +++ b/checkout/src/arquivos/sass/partials/_header.scss @@ -3,7 +3,6 @@ // position: relative; margin: 0; padding: 30px 131px; - width: 100%; border-bottom: 1px solid $black-500; .container { @@ -67,9 +66,9 @@ border-radius: 50%; border: 1px solid $black-500; - // &:active { - // background: $black-500; - // } + &.active { + background: $black-500; + } } &::before,