mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
* Add lookbook + viewcomponent, organize design system file * Build menu component * Button updates * More button fixes * Replace all menus with new ViewComponent * Checkpoint: fix tests, all buttons and menus converted * Split into Link and Button components for clarity * Button cleanup * Simplify custom confirmation configuration in views * Finalize button, link component API * Add toggle field to custom form builder + Component * Basic tabs component * Custom tabs, convert all menu / tab instances in app * Gem updates * Centralized icon helper * Update all icon usage to central helper * Lint fixes * Centralize all disclosure instances * Dialog replacements * Consolidation of all dialog styles * Test fixes * Fix app layout issues, move to component with slots * Layout simplification * Flakey test fix * Fix dashboard mobile issues * Finalize homepage * Lint fixes * Fix shadows and borders in dark mode * Fix tests * Remove stale class * Fix filled icon logic * Move transparent? to public interface
165 lines
4 KiB
JavaScript
165 lines
4 KiB
JavaScript
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();
|
|
}
|
|
|
|
_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);
|
|
});
|
|
}
|
|
|
|
_resetFormInputs(form, paramName) {
|
|
const existingInputs = form.querySelectorAll(`input[name='${paramName}']`);
|
|
existingInputs.forEach((input) => input.remove());
|
|
}
|
|
|
|
_rowsForGroup(group) {
|
|
return this.rowTargets.filter(
|
|
(row) => group.contains(row) && !row.disabled,
|
|
);
|
|
}
|
|
|
|
_addToSelection(idToAdd) {
|
|
this.selectedIdsValue = Array.from(
|
|
new Set([...this.selectedIdsValue, idToAdd]),
|
|
);
|
|
}
|
|
|
|
_removeFromSelection(idToRemove) {
|
|
this.selectedIdsValue = this.selectedIdsValue.filter(
|
|
(id) => id !== idToRemove,
|
|
);
|
|
}
|
|
|
|
_selectAll() {
|
|
this.selectedIdsValue = this.rowTargets
|
|
.filter((t) => !t.disabled)
|
|
.map((t) => t.dataset.id);
|
|
}
|
|
|
|
_updateView = () => {
|
|
this._updateSelectionBar();
|
|
this._updateGroups();
|
|
this._updateRows();
|
|
};
|
|
|
|
_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;
|
|
}
|
|
|
|
_pluralizedResourceName() {
|
|
if (this.selectedIdsValue.length === 1) {
|
|
return this.singularLabelValue;
|
|
}
|
|
|
|
return this.pluralLabelValue;
|
|
}
|
|
|
|
_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;
|
|
});
|
|
}
|
|
|
|
_updateRows() {
|
|
this.rowTargets.forEach((row) => {
|
|
row.checked = this.selectedIdsValue.includes(row.dataset.id);
|
|
});
|
|
}
|
|
}
|