web/_javascript/utils/category-collapse.js

31 lines
1.0 KiB
JavaScript
Raw Normal View History

2022-10-25 14:26:44 +03:00
/**
2019-09-30 15:38:41 +03:00
* Tab 'Categories' expand/close effect.
*/
2022-10-25 14:26:44 +03:00
$(function () {
const childPrefix = "l_";
const parentPrefix = "h_";
const collapse = $(".collapse");
2019-09-30 15:38:41 +03:00
2022-10-25 14:26:44 +03:00
/* close up top-category */
collapse.on("hide.bs.collapse", function () { /* Bootstrap collapse events. */
const parentId = parentPrefix + $(this).attr("id").substring(childPrefix.length);
if (parentId) {
$(`#${parentId} .far.fa-folder-open`).attr("class", "far fa-folder fa-fw");
$(`#${parentId} i.fas`).addClass("rotate");
$(`#${parentId}`).removeClass("hide-border-bottom");
}
});
2019-09-30 15:38:41 +03:00
2022-10-25 14:26:44 +03:00
/* expand the top category */
collapse.on("show.bs.collapse", function () {
const parentId = parentPrefix + $(this).attr("id").substring(childPrefix.length);
if (parentId) {
$(`#${parentId} .far.fa-folder`).attr("class", "far fa-folder-open fa-fw");
$(`#${parentId} i.fas`).removeClass("rotate");
$(`#${parentId}`).addClass("hide-border-bottom");
}
});
2019-09-30 15:38:41 +03:00
2021-01-23 10:07:18 +03:00
});