development #1

Merged
andreamatsunaga merged 17 commits from development into main 2022-12-19 04:49:09 +00:00
5 changed files with 95 additions and 49 deletions
Showing only changes of commit 0080bdeb41 - Show all commits

View File

@ -3,43 +3,71 @@ import { waitElement } from "m3-utils";
export default class Footer { export default class Footer {
constructor() { constructor() {
this.init(); this.init();
this.stampsHTML();
this.developedByHTML();
} }
async init() { async init() {
await this.selectors(); await this.selectors();
// this.onUpdate(); this.replaceEmptyCartContent();
this.stampsHTML();
this.developedByHTML();
this.onUpdate();
} }
async selectors() { async selectors() {
//Para verificar se o carrinho está vazio e remover a prateleira de produtos: //Para verificar se o carrinho está vazio e remover a prateleira de produtos:
// vocês devem olhar a doc fornecida no Desafio para aprender a usar o waitElement // vocês devem olhar a doc fornecida no Desafio para aprender a usar o waitElement
this.cartTitle = await waitElement("#cart-title");
this.checkoutVazio = await waitElement(".empty-cart-content"); this.checkoutVazio = await waitElement(".empty-cart-content");
this.emptyCartTitle = await waitElement(".empty-cart-title");
this.continueShopping = await waitElement("#cart-choose-products");
this.prateleira = await waitElement(".footerCheckout__prateleira");
}
replaceEmptyCartContent() {
if (this.checkoutVazio) {
this.emptyCartTitle.textContent = "Seu Carrinho está vazio";
this.continueShopping.textContent = "Continuar comprando";
}
} }
onUpdate() { onUpdate() {
//Função qeu fará a verificação se o carrinho está vazio para remover a prateleira de produtos: //Função qeu fará a verificação se o carrinho está vazio para remover a prateleira de produtos:
// vocês devem olhar a doc fornecida no Desafio para aprender a usar a MutationObserver // vocês devem olhar a doc fornecida no Desafio para aprender a usar a MutationObserver
// sempre que o carrinho estiver vazio o elemento chcekoutVazio fica display: none e isso pode ser usado como atributo para a MutationObserver // sempre que o carrinho estiver vazio o elemento chcekoutVazio fica display: none e isso pode ser usado como atributo para a MutationObserver
let target = this.checkoutVazio; if(this.checkoutVazio) {
let config = { childList: true, attributes: true }; let target = this.checkoutVazio;
let observer = new MutationObserver((mutations) => { let config = { attributes: true };
mutations.forEach(function (mutation) {
console.log(mutation.type); this.cartTitle.style.display = "none";
this.prateleira.style.display = "none";
let observer = new MutationObserver((mutations) => {
mutations.forEach((mutation) => {
console.log("mutation type: ", mutation.typ)
console.log("rolou mutation")
if(this.checkoutVazio.style.display == "block") {
console.log("Carrinho está vazio")
this.cartTitle.style.display = "none";
this.prateleira.style.display = "none";
} else {
console.log("Carrinho NÃO está vazio");
this.cartTitle.style.display = "block";
this.prateleira.style.display = "block";
}
});
}); });
});
observer.observe(target, config); observer.observe(target, config);
}
} }
async addCarrossel() { // async addCarrossel() {
const elemento = await waitElement("#my-element"); // const elemento = await waitElement("#my-element");
$(elemento).slick({ // $(elemento).slick({
slidesToShow: 4, // slidesToShow: 4,
slidesToScroll: 1, // slidesToScroll: 1,
}); // });
} // }
async stampsHTML() { async stampsHTML() {
const stamps = await waitElement('.footerCheckout__stamps'); const stamps = await waitElement('.footerCheckout__stamps');
@ -89,7 +117,7 @@ export default class Footer {
async developedByHTML() { async developedByHTML() {
const developedBy = await waitElement('.footerCheckout__developedBy'); const developedBy = await waitElement('.footerCheckout__developedBy');
console.log(developedBy.children[0].children[0]); // console.log(developedBy.children[0].children[0]);
const vtexIcon = ` const vtexIcon = `
<span>Powered By</span> <span>Powered By</span>
@ -104,8 +132,8 @@ export default class Footer {
developedBy.children[0].children[0].innerHTML = vtexIcon; developedBy.children[0].children[0].innerHTML = vtexIcon;
developedBy.children[1].children[0].innerHTML = m3Icon; developedBy.children[1].children[0].innerHTML = m3Icon;
developedBy.children[0].children[0].addClass('footerCheckout__developedBy__link') // developedBy.children[0].children[0].addClass('footerCheckout__developedBy__link')
developedBy.children[1].children[0].addClass('footerCheckout__developedBy__link') // developedBy.children[1].children[0].addClass('footerCheckout__developedBy__link')
} }
} }

View File

@ -1,38 +1,53 @@
.empty-cart { .empty-cart {
font-family: $font-family;
&-content { &-content {
color: $black-300; margin: 170px 0 262px;
text-align: center; text-align: center;
text-transform: uppercase;
@include mq(md, max) { @include mq(md, max) {
padding: 0 16px; padding: 0 16px;
} }
} }
&-title { &-title {
font-size: 20px; margin: 0 0 32px;
line-height: 33px;
font-family: $font-family;
font-size: 24px;
color: $black-500;
} }
&-message {
display: none;
}
&-links { &-links {
.link-choose-products { width: 325px;
background: $black-300; height: 46px;
border: none; margin: 0 auto;
border-radius: 5px; border: 1px solid $black-500;
.link-choose-products {
padding: 0;
line-height: 16px;
font-family: $font-family-secundary;
font-size: 14px;
border: none;
border-radius: 0;
color: $black-500;
background: $color-white;
transition: ease-in 0.22s all; transition: ease-in 0.22s all;
outline: none;
font-family: $font-family; box-shadow: none;
font-style: normal;
font-weight: 500; // outline: none;
font-size: 14px; // letter-spacing: 0.05em;
line-height: 16px;
text-align: center;
letter-spacing: 0.05em;
color: $color-white;
text-transform: uppercase;
&:hover { &:hover {
background: lighten($black-300, 5); background: lighten($blue-300, 5);
} }
} }
} }
} }

View File

@ -1,20 +1,20 @@
/* _footer.scss */ /* _footer.scss */
.footerCheckout { .footerCheckout {
width: 100%; width: 100%;
position: fixed;
bottom: 0;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 54px;
// background: cyan; // background: cyan;
// border-top: none; // border-top: none;
// color: $color-gray2; // color: $color-gray2;
// &__prateleira { &__prateleira {
// height: 100px; // margin-top: 101px;
// background-color: green; height: 448px;
// width: 100%; background-color: green;
// } width: 100%;
}
&__wrapper { &__wrapper {
margin: 0; margin: 0;

View File

@ -3,6 +3,7 @@
// position: relative; // position: relative;
margin: 0; margin: 0;
padding: 30px 131px; padding: 30px 131px;
width: 100%;
border-bottom: 1px solid $black-500; border-bottom: 1px solid $black-500;
.container { .container {

View File

@ -10,13 +10,15 @@ $black-500: #000000;
$color-white: #fff; $color-white: #fff;
$color-gray-rename: #c4c4c4;
$blue-300: #00C8FF;
$color-gray: #6c6c6c; $color-gray: #6c6c6c;
$color-gray2: #7d7d7d; $color-gray2: #7d7d7d;
$color-gray3: #f0f0f0; $color-gray3: #f0f0f0;
$color-gray4: #8d8d8d; $color-gray4: #8d8d8d;
$color-gray5: #e5e5e5; $color-gray5: #e5e5e5;
$color-gray-rename: #c4c4c4;
$color-blue: #4267b2; $color-blue: #4267b2;