forked from M3-Academy/m3-academy-template-checkout
Merge branch 'feature/footer' into development
This commit is contained in:
commit
c31bd39a3f
@ -8,6 +8,7 @@ export default class Footer {
|
|||||||
async init() {
|
async init() {
|
||||||
await this.selectors();
|
await this.selectors();
|
||||||
this.replaceEmptyCartContent();
|
this.replaceEmptyCartContent();
|
||||||
|
this.renderPrateleira();
|
||||||
this.stampsHTML();
|
this.stampsHTML();
|
||||||
this.developedByHTML();
|
this.developedByHTML();
|
||||||
this.onUpdate();
|
this.onUpdate();
|
||||||
@ -21,10 +22,12 @@ export default class Footer {
|
|||||||
this.emptyCartTitle = await waitElement(".empty-cart-title");
|
this.emptyCartTitle = await waitElement(".empty-cart-title");
|
||||||
this.continueShopping = await waitElement("#cart-choose-products");
|
this.continueShopping = await waitElement("#cart-choose-products");
|
||||||
this.prateleira = await waitElement(".footerCheckout__prateleira");
|
this.prateleira = await waitElement(".footerCheckout__prateleira");
|
||||||
|
// this.prateleiraSlick = await waitElement(".prateleira__carousel")
|
||||||
}
|
}
|
||||||
|
|
||||||
replaceEmptyCartContent() {
|
replaceEmptyCartContent() {
|
||||||
if (this.checkoutVazio) {
|
if (this.checkoutVazio) {
|
||||||
|
console.log("entrou no if do replaceContent()")
|
||||||
this.emptyCartTitle.textContent = "Seu Carrinho está vazio";
|
this.emptyCartTitle.textContent = "Seu Carrinho está vazio";
|
||||||
this.continueShopping.textContent = "Continuar comprando";
|
this.continueShopping.textContent = "Continuar comprando";
|
||||||
}
|
}
|
||||||
@ -35,21 +38,24 @@ export default class Footer {
|
|||||||
// 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
|
||||||
if(this.checkoutVazio) {
|
if(this.checkoutVazio) {
|
||||||
|
console.log("entrou no if do onUpdate()")
|
||||||
|
|
||||||
let target = this.checkoutVazio;
|
let target = this.checkoutVazio;
|
||||||
let config = { attributes: true };
|
let config = { attributes: true };
|
||||||
|
|
||||||
this.cartTitle.style.display = "none";
|
// this.cartTitle.style.display = "none";
|
||||||
this.prateleira.style.display = "none";
|
// this.prateleira.style.display = "none";
|
||||||
|
|
||||||
let observer = new MutationObserver((mutations) => {
|
let observer = new MutationObserver((mutations) => {
|
||||||
mutations.forEach((mutation) => {
|
mutations.forEach(() => {
|
||||||
console.log("mutation type: ", mutation.typ)
|
|
||||||
console.log("rolou mutation")
|
|
||||||
if(this.checkoutVazio.style.display == "block") {
|
if(this.checkoutVazio.style.display == "block") {
|
||||||
console.log("Carrinho está vazio")
|
console.log("Carrinho está vazio")
|
||||||
this.cartTitle.style.display = "none";
|
this.cartTitle.style.display = "none";
|
||||||
this.prateleira.style.display = "none";
|
this.prateleira.style.display = "none";
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
console.log("Carrinho NÃO está vazio");
|
console.log("Carrinho NÃO está vazio");
|
||||||
this.cartTitle.style.display = "block";
|
this.cartTitle.style.display = "block";
|
||||||
this.prateleira.style.display = "block";
|
this.prateleira.style.display = "block";
|
||||||
@ -61,13 +67,73 @@ export default class Footer {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// async addCarrossel() {
|
async renderPrateleira() {
|
||||||
// const elemento = await waitElement("#my-element");
|
if (this.prateleira) {
|
||||||
// $(elemento).slick({
|
|
||||||
// slidesToShow: 4,
|
const prateleiraSlick = document.createElement("ul");
|
||||||
// slidesToScroll: 1,
|
prateleiraSlick.classList.add("prateleira__carousel");
|
||||||
// });
|
|
||||||
// }
|
const response = await fetch("https://m3academy.myvtex.com/api/catalog_system/pub/products/search/?fq=productClusterIds:319");
|
||||||
|
console.log("await fetch response:", response);
|
||||||
|
const productsList = await response.json();
|
||||||
|
console.log("await fetch productsList:", productsList);
|
||||||
|
|
||||||
|
let cardsStructure = "";
|
||||||
|
|
||||||
|
if(productsList) {
|
||||||
|
|
||||||
|
productsList.forEach((product) => {
|
||||||
|
console.log(product)
|
||||||
|
|
||||||
|
const productImageUrl = product.items[0].images[0].imageUrl;
|
||||||
|
console.log("productImageUrl:", productImageUrl);
|
||||||
|
const productName = product.productName;
|
||||||
|
console.log("productName:", productName);
|
||||||
|
const productSkus = product.items;
|
||||||
|
console.log("productSkus:", productSkus);
|
||||||
|
let skusStructure = "";
|
||||||
|
|
||||||
|
productSkus.forEach((sku) => {
|
||||||
|
console.log("sku:", sku);
|
||||||
|
skusStructure += `
|
||||||
|
<li>
|
||||||
|
<button type="button">${sku.name}</button>
|
||||||
|
</li>
|
||||||
|
`
|
||||||
|
})
|
||||||
|
|
||||||
|
cardsStructure += `
|
||||||
|
<li class="prateleira__item">
|
||||||
|
<div class="prateleira__item--image-container">
|
||||||
|
<img class="prateleira__item--image" src="${productImageUrl}" />
|
||||||
|
</div>
|
||||||
|
<div class="prateleira__item--description">
|
||||||
|
<p class="prateleira__item--name">${productName}</p>
|
||||||
|
<ul class="prateleira__item--options">${skusStructure}</ul>
|
||||||
|
<button type="button" class="prateleira__item--button">Ver produto</button>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
`
|
||||||
|
})
|
||||||
|
|
||||||
|
prateleiraSlick.innerHTML = cardsStructure;
|
||||||
|
this.prateleira.appendChild(prateleiraSlick);
|
||||||
|
|
||||||
|
if(window.innerWidth > 1024) {
|
||||||
|
this.addCarrossel(prateleiraSlick);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async addCarrossel(element) {
|
||||||
|
console.log("chamada do addCarrossel()");
|
||||||
|
// const elemento = await waitElement(this.prateleiraSlick);
|
||||||
|
$(element).slick({
|
||||||
|
slidesToShow: 4,
|
||||||
|
slidesToScroll: 1,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
async stampsHTML() {
|
async stampsHTML() {
|
||||||
const stamps = await waitElement('.footerCheckout__stamps');
|
const stamps = await waitElement('.footerCheckout__stamps');
|
||||||
|
@ -1,4 +1,14 @@
|
|||||||
.checkout-container {
|
.checkout-container {
|
||||||
|
// background: yellow;
|
||||||
|
// height: 100%;
|
||||||
|
// box-sizing: border-box;
|
||||||
|
|
||||||
|
// &:before,
|
||||||
|
// &:after {
|
||||||
|
// display: none;
|
||||||
|
// }
|
||||||
|
|
||||||
|
|
||||||
.client-pre-email {
|
.client-pre-email {
|
||||||
border-color: $color-gray4;
|
border-color: $color-gray4;
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
@ -287,3 +297,12 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// .transactions-container {
|
||||||
|
// height: 0;
|
||||||
|
|
||||||
|
// &::before,
|
||||||
|
// &::after {
|
||||||
|
// display: none;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
@ -1,22 +1,38 @@
|
|||||||
.container {
|
.container {
|
||||||
|
// background: salmon;
|
||||||
|
|
||||||
|
// &:before,
|
||||||
|
// &:after {
|
||||||
|
// display: none;
|
||||||
|
// };
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-template {
|
.cart-template {
|
||||||
|
// background: red;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
padding: 0 0;
|
padding: 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.item-unit-label {
|
.item-unit-label {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart {
|
.cart {
|
||||||
border: 3px solid $color-gray3;
|
// margin: 0;
|
||||||
box-sizing: border-box;
|
// background: purple;
|
||||||
|
// border: 1px solid red;
|
||||||
|
// $color-gray3;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
padding: 16px;
|
padding: 16px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
margin: 0px 0 25px 0;
|
margin: 0px 0 25px 0;
|
||||||
@ -24,10 +40,31 @@
|
|||||||
border-right: none;
|
border-right: none;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// .cart-items {
|
||||||
|
// font-family: $font-family-secundary;
|
||||||
|
|
||||||
|
// thead {
|
||||||
|
// line-height: 16px;
|
||||||
|
// font-size: 14px;
|
||||||
|
// // font-style: normal;
|
||||||
|
// // font-weight: 400;
|
||||||
|
// color: $black-300;
|
||||||
|
// }
|
||||||
|
|
||||||
|
// .product-image img {
|
||||||
|
// display: block;
|
||||||
|
// width: 60px;
|
||||||
|
// height: 60px;
|
||||||
|
// transform: scaleX(-1);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-fixed.affix {
|
.cart-fixed.affix {
|
||||||
position: relative !important;
|
position: relative !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-fixed {
|
.cart-fixed {
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -48,7 +85,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.cart {
|
.cart {
|
||||||
border: 1px solid $color-gray4;
|
// border: 1px solid $color-gray4;
|
||||||
|
|
||||||
ul li {
|
ul li {
|
||||||
border-top: none;
|
border-top: none;
|
||||||
@ -749,6 +786,8 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
width: 343px;
|
width: 343px;
|
||||||
|
|
||||||
|
margin-bottom: 43px;
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
padding: 0 16px;
|
padding: 0 16px;
|
||||||
width: calc(100% - 32px);
|
width: calc(100% - 32px);
|
||||||
|
@ -51,3 +51,4 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
/* Slider */
|
/* Slider */
|
||||||
|
|
||||||
.slick-slider {
|
.slick-slider {
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
position: relative;
|
position: relative;
|
||||||
display: block;
|
display: block;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
@ -18,7 +20,7 @@
|
|||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
display: block;
|
display: block;
|
||||||
margin: 0;
|
margin: 0 -8px 0 -8px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
@ -62,6 +64,9 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.slick-slide {
|
.slick-slide {
|
||||||
|
margin: 0 8px;
|
||||||
|
// width: 242px;
|
||||||
|
|
||||||
float: left;
|
float: left;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-height: 1px;
|
min-height: 1px;
|
||||||
|
@ -1 +1,31 @@
|
|||||||
/* _prateleira.scss */
|
/* _prateleira.scss */
|
||||||
|
.footerCheckout__prateleira {
|
||||||
|
// estilos no _footer.scss
|
||||||
|
}
|
||||||
|
|
||||||
|
.prateleira__carousel {
|
||||||
|
margin: 0;
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prateleira__item {
|
||||||
|
width: 242px;
|
||||||
|
height: 390px;
|
||||||
|
background: red;
|
||||||
|
|
||||||
|
|
||||||
|
&--image-container {
|
||||||
|
width: 242px;
|
||||||
|
height: 242px;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 242px;
|
||||||
|
height: 242px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&--description {
|
||||||
|
background: yellow;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
@ -2,7 +2,60 @@
|
|||||||
MODIFICA-LO NÃO CAUSARÁ EFEITO ALGUM, todo html que for modificado no footer, deverá ser feito através de javaScript. -->
|
MODIFICA-LO NÃO CAUSARÁ EFEITO ALGUM, todo html que for modificado no footer, deverá ser feito através de javaScript. -->
|
||||||
|
|
||||||
<footer class="footerCheckout">
|
<footer class="footerCheckout">
|
||||||
<div class="footerCheckout__prateleira"></div>
|
<div class="footerCheckout__prateleira">
|
||||||
|
|
||||||
|
|
||||||
|
<li class="prateleira__item">
|
||||||
|
<div class="prateleira__item--image-container">
|
||||||
|
<img class="prateleira__item--image" src="${item.image}" />
|
||||||
|
</div>
|
||||||
|
<div class="prateleira__item--description">
|
||||||
|
<p class="prateleira__item--name">${item.title}</p>
|
||||||
|
<ul class="prateleira__item--options">
|
||||||
|
<li>
|
||||||
|
<button type="button"></button>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<button type="button" class="prateleira__item--button">Ver produto</button>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- <ul class="prateleira__carousel">
|
||||||
|
<li class="prateleira__card">
|
||||||
|
<div class="prateleira__card--">
|
||||||
|
<img class="prateleira__card--image" src="${imageUrl}" />
|
||||||
|
</div>
|
||||||
|
<div class="prateleira__card--description">
|
||||||
|
<p class="prateleira__card--title">
|
||||||
|
${product.productName}
|
||||||
|
</p>
|
||||||
|
<div class="prateleira__card--options">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<button class="prateleira__card--button">VER PRODUTO</button>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="prateleira__card">
|
||||||
|
<div class="prateleira__card--">
|
||||||
|
<img class="prateleira__card--image" src="${imageUrl}" />
|
||||||
|
</div>
|
||||||
|
<div class="prateleira__card--description">
|
||||||
|
<p class="prateleira__card--title">
|
||||||
|
${product.productName}
|
||||||
|
</p>
|
||||||
|
<div class="prateleira__card--options">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<button class="prateleira__card--button">VER PRODUTO</button>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul> -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
<div class="footerCheckout__wrapper">
|
<div class="footerCheckout__wrapper">
|
||||||
<div class="footerCheckout__address">
|
<div class="footerCheckout__address">
|
||||||
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span>
|
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span>
|
||||||
|
Loading…
Reference in New Issue
Block a user