forked from M3-Academy/m3-academy-template-checkout
feat(Footer.js): add conexão com api e carrossel
This commit is contained in:
parent
a94be38164
commit
f237cb0395
@ -7,19 +7,21 @@ export default class Footer {
|
||||
|
||||
async init() {
|
||||
await this.selectors();
|
||||
// this.onUpdate();
|
||||
this.footerCheckoutStamps();
|
||||
this.onUpdate();
|
||||
this.footerCheckoutPayments();
|
||||
this.footerCheckoutDevelopedBy();
|
||||
await this.ListProducts();
|
||||
}
|
||||
|
||||
async selectors() {
|
||||
//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
|
||||
this.checkoutVazio = await waitElement(".empty-cart-content");
|
||||
this.Stamps = await waitElement(".footerCheckout__payments");
|
||||
this.Payments = await waitElement(".footerCheckout__payments");
|
||||
this.Vtexpci = await waitElement(".footerCheckout__vtexpci");
|
||||
this.DevelopedBy = await waitElement(".footerCheckout__developedBy");
|
||||
this.sliderProducts = await waitElement(".footerCheckout__prateleira");
|
||||
|
||||
}
|
||||
|
||||
onUpdate() {
|
||||
@ -36,16 +38,41 @@ export default class Footer {
|
||||
|
||||
observer.observe(target, config);
|
||||
}
|
||||
|
||||
async ListProducts() {
|
||||
const response = await fetch("https://m3academy.myvtex.com/api/catalog_system/pub/products/search/?fq=productClusterIds:319")
|
||||
.then((response) => response.json());
|
||||
|
||||
response.forEach((produto) => {
|
||||
const image = produto.items[0].images[0].imageUrl;
|
||||
const name = produto.productName;
|
||||
|
||||
this.sliderProducts.innerHTML += `
|
||||
<li class="cards">
|
||||
<img src="${image}" alt="" class="footerCheckout__product__img"/>
|
||||
<h3 class="footerCheckout__product__name">${name}</h3>
|
||||
<ul class="footerCheckout__sizes">
|
||||
${produto.items.map((name) => {return `<li>${name.name}</li>`;}).join("")}
|
||||
</ul>
|
||||
<a href="${produto.link}">Ver produto</a>
|
||||
</li>
|
||||
`;
|
||||
});
|
||||
this.addCarrossel();
|
||||
}
|
||||
|
||||
|
||||
|
||||
async addCarrossel() {
|
||||
const elemento = await waitElement("#my-element");
|
||||
const elemento = await waitElement(".footerCheckout__prateleira");
|
||||
$(elemento).slick({
|
||||
slidesToShow: 4,
|
||||
slidesToScroll: 1,
|
||||
});
|
||||
}
|
||||
|
||||
footerCheckoutStamps() {
|
||||
this.Stamps.innerHTML = `
|
||||
footerCheckoutPayments() {
|
||||
this.Payments.innerHTML = `
|
||||
<img src="https://agenciamagma.vteximg.com.br/arquivos/masterCardM3Academy.png" alt="ícone do cartão master card"/>
|
||||
<img src="https://agenciamagma.vteximg.com.br/arquivos/visaM3Academy.png" alt="ícone do cartão visa"/>
|
||||
<img src="https://agenciamagma.vteximg.com.br/arquivos/amexM3Academy.png" alt="ícone do cartão american express"/>
|
||||
@ -78,4 +105,3 @@ export default class Footer {
|
||||
`;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user