mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-22 11:23:02 +00:00
1b7731e506
* add destroy hook * refresh details modal in interval * refactor to refresh assets list * disable create snapshot button when there is a pending snapshot
116 lines
3.6 KiB
JavaScript
116 lines
3.6 KiB
JavaScript
import { Behavior, registerBehavior } from "./index";
|
|
|
|
class BulkEdit extends Behavior {
|
|
constructor(element) {
|
|
super(element);
|
|
|
|
this.active = false;
|
|
|
|
this.onToggleActive = this.onToggleActive.bind(this);
|
|
this.onToggleAll = this.onToggleAll.bind(this);
|
|
this.onToggleBookmark = this.onToggleBookmark.bind(this);
|
|
this.onActionSelected = this.onActionSelected.bind(this);
|
|
|
|
this.init();
|
|
// Reset when bookmarks are refreshed
|
|
document.addEventListener("refresh-bookmark-list-done", () => this.init());
|
|
}
|
|
|
|
init() {
|
|
// Update elements
|
|
this.activeToggle = this.element.querySelector(".bulk-edit-active-toggle");
|
|
this.actionSelect = this.element.querySelector(
|
|
"select[name='bulk_action']",
|
|
);
|
|
this.tagAutoComplete = this.element.querySelector(".tag-autocomplete");
|
|
this.selectAcross = this.element.querySelector("label.select-across");
|
|
this.allCheckbox = this.element.querySelector(
|
|
".bulk-edit-checkbox.all input",
|
|
);
|
|
this.bookmarkCheckboxes = Array.from(
|
|
this.element.querySelectorAll(".bulk-edit-checkbox:not(.all) input"),
|
|
);
|
|
|
|
// Remove previous listeners if elements are the same
|
|
this.activeToggle.removeEventListener("click", this.onToggleActive);
|
|
this.actionSelect.removeEventListener("change", this.onActionSelected);
|
|
this.allCheckbox.removeEventListener("change", this.onToggleAll);
|
|
this.bookmarkCheckboxes.forEach((checkbox) => {
|
|
checkbox.removeEventListener("change", this.onToggleBookmark);
|
|
});
|
|
|
|
// Reset checkbox states
|
|
this.reset();
|
|
|
|
// Update total number of bookmarks
|
|
const totalHolder = this.element.querySelector("[data-bookmarks-total]");
|
|
const total = totalHolder?.dataset.bookmarksTotal || 0;
|
|
const totalSpan = this.selectAcross.querySelector("span.total");
|
|
totalSpan.textContent = total;
|
|
|
|
// Add new listeners
|
|
this.activeToggle.addEventListener("click", this.onToggleActive);
|
|
this.actionSelect.addEventListener("change", this.onActionSelected);
|
|
this.allCheckbox.addEventListener("change", this.onToggleAll);
|
|
this.bookmarkCheckboxes.forEach((checkbox) => {
|
|
checkbox.addEventListener("change", this.onToggleBookmark);
|
|
});
|
|
}
|
|
|
|
onToggleActive() {
|
|
this.active = !this.active;
|
|
if (this.active) {
|
|
this.element.classList.add("active", "activating");
|
|
setTimeout(() => {
|
|
this.element.classList.remove("activating");
|
|
}, 500);
|
|
} else {
|
|
this.element.classList.remove("active");
|
|
}
|
|
}
|
|
|
|
onToggleBookmark() {
|
|
const allChecked = this.bookmarkCheckboxes.every((checkbox) => {
|
|
return checkbox.checked;
|
|
});
|
|
this.allCheckbox.checked = allChecked;
|
|
this.updateSelectAcross(allChecked);
|
|
}
|
|
|
|
onToggleAll() {
|
|
const allChecked = this.allCheckbox.checked;
|
|
this.bookmarkCheckboxes.forEach((checkbox) => {
|
|
checkbox.checked = allChecked;
|
|
});
|
|
this.updateSelectAcross(allChecked);
|
|
}
|
|
|
|
onActionSelected() {
|
|
const action = this.actionSelect.value;
|
|
|
|
if (action === "bulk_tag" || action === "bulk_untag") {
|
|
this.tagAutoComplete.classList.remove("d-none");
|
|
} else {
|
|
this.tagAutoComplete.classList.add("d-none");
|
|
}
|
|
}
|
|
|
|
updateSelectAcross(allChecked) {
|
|
if (allChecked) {
|
|
this.selectAcross.classList.remove("d-none");
|
|
} else {
|
|
this.selectAcross.classList.add("d-none");
|
|
this.selectAcross.querySelector("input").checked = false;
|
|
}
|
|
}
|
|
|
|
reset() {
|
|
this.allCheckbox.checked = false;
|
|
this.bookmarkCheckboxes.forEach((checkbox) => {
|
|
checkbox.checked = false;
|
|
});
|
|
this.updateSelectAcross(false);
|
|
}
|
|
}
|
|
|
|
registerBehavior("ld-bulk-edit", BulkEdit);
|