1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 21:29:38 +02:00
Maybe/app/javascript/controllers/bulk_select_controller.js

166 lines
4 KiB
JavaScript
Raw Permalink Normal View History

import { Controller } from "@hotwired/stimulus";
// Connects to data-controller="bulk-select"
export default class extends Controller {
static targets = [
"row",
"group",
"selectionBar",
"selectionBarText",
"bulkEditDrawerHeader",
];
static values = {
singularLabel: String,
pluralLabel: String,
selectedIds: { type: Array, default: [] },
};
connect() {
document.addEventListener("turbo:load", this._updateView);
this._updateView();
}
disconnect() {
document.removeEventListener("turbo:load", this._updateView);
}
bulkEditDrawerHeaderTargetConnected(element) {
const headingTextEl = element.querySelector("h2");
headingTextEl.innerText = `Edit ${
this.selectedIdsValue.length
} ${this._pluralizedResourceName()}`;
}
submitBulkRequest(e) {
const form = e.target.closest("form");
const scope = e.params.scope;
this._addHiddenFormInputsForSelectedIds(
form,
`${scope}[entry_ids][]`,
this.selectedIdsValue,
);
form.requestSubmit();
}
togglePageSelection(e) {
if (e.target.checked) {
this._selectAll();
} else {
this.deselectAll();
}
}
toggleGroupSelection(e) {
const group = this.groupTargets.find((group) => group.contains(e.target));
this._rowsForGroup(group).forEach((row) => {
if (e.target.checked) {
this._addToSelection(row.dataset.id);
} else {
this._removeFromSelection(row.dataset.id);
}
});
}
toggleRowSelection(e) {
if (e.target.checked) {
this._addToSelection(e.target.dataset.id);
} else {
this._removeFromSelection(e.target.dataset.id);
}
}
deselectAll() {
this.selectedIdsValue = [];
this.element.querySelectorAll('input[type="checkbox"]').forEach((el) => {
el.checked = false;
});
}
selectedIdsValueChanged() {
this._updateView();
}
2024-10-11 14:40:13 -04:00
_addHiddenFormInputsForSelectedIds(form, paramName, transactionIds) {
this._resetFormInputs(form, paramName);
transactionIds.forEach((id) => {
const input = document.createElement("input");
input.type = "hidden";
input.name = paramName;
input.value = id;
form.appendChild(input);
});
}
2024-10-11 14:40:13 -04:00
_resetFormInputs(form, paramName) {
const existingInputs = form.querySelectorAll(`input[name='${paramName}']`);
existingInputs.forEach((input) => input.remove());
}
2024-10-11 14:40:13 -04:00
_rowsForGroup(group) {
return this.rowTargets.filter(
(row) => group.contains(row) && !row.disabled,
);
}
2024-10-11 14:40:13 -04:00
_addToSelection(idToAdd) {
this.selectedIdsValue = Array.from(
new Set([...this.selectedIdsValue, idToAdd]),
);
}
2024-10-11 14:40:13 -04:00
_removeFromSelection(idToRemove) {
this.selectedIdsValue = this.selectedIdsValue.filter(
(id) => id !== idToRemove,
);
}
2024-10-11 14:40:13 -04:00
_selectAll() {
this.selectedIdsValue = this.rowTargets
.filter((t) => !t.disabled)
.map((t) => t.dataset.id);
}
2024-10-11 11:34:51 -04:00
_updateView = () => {
this._updateSelectionBar();
this._updateGroups();
this._updateRows();
};
2024-10-11 14:40:13 -04:00
_updateSelectionBar() {
const count = this.selectedIdsValue.length;
this.selectionBarTextTarget.innerText = `${count} ${this._pluralizedResourceName()} selected`;
this.selectionBarTarget.classList.toggle("hidden", count === 0);
this.selectionBarTarget.querySelector("input[type='checkbox']").checked =
count > 0;
}
2024-10-11 14:40:13 -04:00
_pluralizedResourceName() {
if (this.selectedIdsValue.length === 1) {
return this.singularLabelValue;
}
return this.pluralLabelValue;
}
2024-10-11 14:40:13 -04:00
_updateGroups() {
this.groupTargets.forEach((group) => {
const rows = this.rowTargets.filter(
(row) => group.contains(row) && !row.disabled,
);
const groupSelected =
rows.length > 0 &&
rows.every((row) => this.selectedIdsValue.includes(row.dataset.id));
group.querySelector("input[type='checkbox']").checked = groupSelected;
});
}
2024-10-11 14:40:13 -04:00
_updateRows() {
this.rowTargets.forEach((row) => {
row.checked = this.selectedIdsValue.includes(row.dataset.id);
});
}
}