Web/scripts/blog.js

65 lines
2.3 KiB
JavaScript
Raw Normal View History

2020-09-30 00:24:37 +02:00
$("#blog-archive-button").on("click", function () {
let archive = $('#blog-archive');
archive.toggle();
$(this).html((archive.is(":visible") ? "Hide" : "Show") + " archived posts");
});
2019-02-23 16:30:23 +01:00
$.ajax({
dataType: "json",
2021-03-11 03:44:50 +01:00
url: "blog/src/posts.json",
2019-02-23 16:30:23 +01:00
cache: false,
success: function (json) {
2021-03-31 02:48:13 +02:00
populateBlog(json, getCookie("category") || "Featured");
2021-03-17 03:07:12 +01:00
forceToAnchor();
}
});
2021-03-31 02:48:13 +02:00
function populateBlog(json, currCat) {
2021-03-17 03:07:12 +01:00
let archive = $('#blog-archive');
let list = $('#blog-list');
let cats = $('#blog-cats');
archive.html("");
list.html("");
cats.html("");
2021-03-31 02:48:13 +02:00
// force all and featured categories to be first
addCatButton(json, cats, "All Posts", currCat);
2021-03-31 02:48:13 +02:00
addCatButton(json, cats, "Featured", currCat);
for (let i = json.length - 1; i >= 0; i--) {
2021-03-31 02:48:13 +02:00
let post = json[i];
for (let cat of post.cat)
addCatButton(json, cats, cat, currCat);
if (currCat === "All Posts" || post.cat.includes(currCat)) {
2021-03-19 07:55:18 +01:00
let p = /*html*/ `
<div class="card bg-light blog-entry rounded-0">
<div class="card-body">
2021-03-31 02:48:13 +02:00
<h4 class="card-title blog-title"><a class="blog-button" href="./blog/${post.id}">${post.name}</a></h4>
<div class="card-text blog-summary">${post.summary}</div>
<span class="text-muted project-status">${post.date}</span>
<span class="text-muted blog-cat">${post.cat.join(", ")}</span>
2021-03-19 07:55:18 +01:00
</div>
</div>
`;
2021-03-31 02:48:13 +02:00
if (post.archived) {
2020-09-30 00:24:37 +02:00
archive.append(p);
} else {
list.append(p);
}
}
}
if (!archive.html())
2021-03-31 02:48:13 +02:00
archive.html(`<em>There are no archived ${currCat} posts.</em>`);
2021-03-17 03:07:12 +01:00
}
function addCatButton(json, cats, cat, currCat) {
2021-03-17 03:07:12 +01:00
let catAnchor = `blog-cat-${cat.toLowerCase().replace(" ", "_")}`;
if (!$(`#${catAnchor}`).length) {
cats.append( /*html*/ `<button type="button" class="btn btn-link blog-cat-button" id=${catAnchor} ${cat === currCat ? "disabled" : ""}>${cat}</button>`);
2021-03-17 03:07:12 +01:00
$(`#${catAnchor}`).on('click', function () {
populateBlog(json, cat);
2021-03-31 02:48:13 +02:00
setCookie("category", cat, 365);
2021-03-17 03:07:12 +01:00
});
}
}