mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-17 19:26:48 +00:00
71 lines
1.7 KiB
JavaScript
71 lines
1.7 KiB
JavaScript
import { Controller } from "stimulus";
|
|
|
|
export default class extends Controller {
|
|
static targets = ["all", "checkbox", "disable"];
|
|
static values = { count: Number };
|
|
|
|
connect() {
|
|
this.toggleCheckbox();
|
|
}
|
|
|
|
allTargetConnected(allTarget) {
|
|
allTarget.addEventListener("change", this.toggleAll.bind(this));
|
|
}
|
|
|
|
checkboxTargetConnected(checkboxTarget) {
|
|
checkboxTarget.addEventListener("change", this.toggleCheckbox.bind(this));
|
|
}
|
|
|
|
toggleAll() {
|
|
this.checkboxTargets.forEach((checkbox) => {
|
|
checkbox.checked = this.allTarget.checked;
|
|
});
|
|
|
|
this.countValue = this.allTarget.checked ? this.checkboxTargets.length : 0;
|
|
|
|
this.#toggleDisabled();
|
|
}
|
|
|
|
toggleCheckbox() {
|
|
this.countValue = this.#checkedCount();
|
|
this.allTarget.checked = this.#allChecked();
|
|
|
|
this.#toggleDisabled();
|
|
}
|
|
|
|
countValueChanged() {
|
|
window.dispatchEvent(
|
|
new CustomEvent("checked:updated", { detail: { count: this.countValue } }),
|
|
);
|
|
}
|
|
|
|
// private
|
|
|
|
#checkedCount() {
|
|
return this.checkboxTargets.filter((checkbox) => checkbox.checked).length;
|
|
}
|
|
|
|
#allChecked() {
|
|
return this.countValue === this.checkboxTargets.length;
|
|
}
|
|
|
|
#closeDetails(elmnt) {
|
|
if (elmnt.getElementsByTagName("details").length == 0) return;
|
|
|
|
Array.from(elmnt.getElementsByTagName("details")).forEach((element) => (element.open = false));
|
|
}
|
|
|
|
#toggleDisabled() {
|
|
if (!this.hasDisableTarget) {
|
|
return;
|
|
}
|
|
|
|
if (this.#checkedCount() === 0) {
|
|
this.disableTargets.forEach((element) => element.classList.add("disabled"));
|
|
this.disableTargets.forEach(this.#closeDetails);
|
|
} else {
|
|
this.disableTargets.forEach((element) => element.classList.remove("disabled"));
|
|
}
|
|
}
|
|
}
|