I am loading and appending more items from a server to a div. And when they are fully loaded I want to run a function that will refresh colcade layout (reloadColcade).
I have tried adding an event listener to the div with options like ‘load’ and ‘DOMContentLoaded’, divElement.addEventListner('option', reloadColcade)
but the event isn’t fired.
And when I try to setTimeout to wait for elements to load either function is invoked too early or too late.
JavaScript
x
17
17
1
<div class="articles-container grid" data-articles-grid="">
2
<div class="grid-col grid-col--1"></div>
3
<div class="grid-col grid-col--2"></div>
4
<div class="grid-col grid-col--3"></div>
5
6
<% products.forEach(product => { %>
7
<% const date = product.createdAt.toISOString().split('T')[0].replaceAll('-', '/'); %>
8
9
<article class="ver-spacer grid-item" id="<% product._id %>">
10
<img src="<%= product.optimizedImgUrl %>" data-original-img-source="<%= product.imgUrl %> " alt="article photo" class="articles-container__article-img">
11
<h2><%= product.title %></h2>
12
<p><%= product.description %> <button class="articles-container__highlight">Read more</button></p>
13
<div class="articles-container__article-info separetor"><p>Price: <%= product.price %> $</p><p>Author: <%= product.authorName %> </p><p>Uploaded: <%= date %></p> <p>Resolution: <%= product.resolution %></p></div>
14
<button class="btn-gray articles-container__button ai-c">Add <img src="img/shopping-cart.svg" alt="shopping cart"></button>
15
</article>
16
<% }); %>
17
</div>
JavaScript
1
64
64
1
let colc, colcUploadedByUser, colcPurchasedByUser;
2
let searchQuery, filter;
3
4
const loadMore = async function () {
5
let startIndex = 0;
6
7
startIndex += 5;
8
9
const searchQuery = searchForm.querySelector("input").value;
10
const filter = searchForm.querySelector("select").value;
11
12
const response = await fetch("load-more", {
13
method: "POST",
14
headers: { "Content-Type": "application/json" },
15
body: JSON.stringify({
16
startIndex,
17
searchQuery,
18
filter,
19
}),
20
});
21
22
const products = await response.json();
23
24
let itemsToAppend = [];
25
26
products.forEach((product) => {
27
const date = new Date(product.createdAt)
28
.toISOString()
29
.split("T")[0]
30
.replaceAll("-", "/");
31
32
const htmlString = `
33
<img src="${product.optimizedImgUrl}" data-original-img-source="${product.imgUrl}" alt="article photo" class="articles-container__article-img">
34
<h2>${product.title}</h2>
35
<p>${product.description} <button class="articles-container__highlight">Read more</button></p>
36
<div class="articles-container__article-info separetor"><p>Price: ${product.price} $</p><p>Author: ${product.authorName} </p><p>Uploaded: ${date}</p> <p>Resolution: ${product.resolution}</p></div>
37
<button class="btn-gray articles-container__button ai-c">Add <img src="img/shopping-cart.svg" alt="shopping cart"></button>
38
`;
39
40
const item = document.createElement("article");
41
42
item.className = "ver-spacer grid-item";
43
item.setAttribute("id", product._id);
44
item.insertAdjacentHTML("beforeend", htmlString);
45
46
itemsToAppend.push(item);
47
});
48
49
colc.append(itemsToAppend);
50
};
51
52
// Colcade
53
if (document.querySelector(".grid")) {
54
colc = new Colcade(".grid", {
55
columns: ".grid-col",
56
items: ".grid-item",
57
});
58
}
59
60
const reloadColcade = function () {
61
colc && colc.layout();
62
colcUploadedByUser && colcUploadedByUser.layout();
63
colcPurchasedByUser && colcPurchasedByUser.layout();
64
};
Advertisement
Answer
I solved the problem by using library imagesloaded also created by author of colcade, like that:
JavaScript
1
5
1
import * as imagesloaded from "./node_modules/imagesloaded/imagesloaded.pkgd.min.js";
2
3
imagesLoaded(colc.element, function () {
4
reloadColcade();
5
});