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

135 lines
3.6 KiB
JavaScript
Raw Normal View History

2024-10-11 11:34:51 -04:00
import { Controller } from "@hotwired/stimulus"
// Connects to data-controller="bulk-select"
export default class extends Controller {
static targets = ["row", "group", "selectionBar", "selectionBarText", "bulkEditDrawerTitle"]
static values = {
resource: String,
2024-10-11 11:34:51 -04:00
selectedIds: { type: Array, default: [] }
}
connect() {
2024-10-11 11:34:51 -04:00
document.addEventListener("turbo:load", this._updateView)
2024-10-11 11:34:51 -04:00
this._updateView()
}
disconnect() {
2024-10-11 11:34:51 -04:00
document.removeEventListener("turbo:load", this._updateView)
}
bulkEditDrawerTitleTargetConnected(element) {
2024-10-11 14:40:13 -04:00
element.innerText = `Edit ${this.selectedIdsValue.length} ${this._pluralizedResourceName()}`
}
submitBulkRequest(e) {
const form = e.target.closest("form");
const scope = e.params.scope
2024-10-11 14:40:13 -04:00
this._addHiddenFormInputsForSelectedIds(form, `${scope}[entry_ids][]`, this.selectedIdsValue)
form.requestSubmit()
}
togglePageSelection(e) {
if (e.target.checked) {
2024-10-11 14:40:13 -04:00
this._selectAll()
} else {
this.deselectAll()
}
}
toggleGroupSelection(e) {
const group = this.groupTargets.find(group => group.contains(e.target))
2024-10-11 14:40:13 -04:00
this._rowsForGroup(group).forEach(row => {
if (e.target.checked) {
2024-10-11 14:40:13 -04:00
this._addToSelection(row.dataset.id)
} else {
2024-10-11 14:40:13 -04:00
this._removeFromSelection(row.dataset.id)
}
})
}
toggleRowSelection(e) {
if (e.target.checked) {
2024-10-11 14:40:13 -04:00
this._addToSelection(e.target.dataset.id)
} else {
2024-10-11 14:40:13 -04:00
this._removeFromSelection(e.target.dataset.id)
}
}
deselectAll() {
this.selectedIdsValue = []
this.element.querySelectorAll('input[type="checkbox"]').forEach(el => el.checked = false)
}
selectedIdsValueChanged() {
2024-10-11 11:34:51 -04:00
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))
}
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.map(t => t.dataset.id)
}
2024-10-11 11:34:51 -04:00
_updateView = () => {
2024-10-11 14:40:13 -04:00
this._updateSelectionBar()
this._updateGroups()
this._updateRows()
}
2024-10-11 14:40:13 -04:00
_updateSelectionBar() {
const count = this.selectedIdsValue.length
2024-10-11 14:40:13 -04:00
this.selectionBarTextTarget.innerText = `${count} ${this._pluralizedResourceName()} selected`
this.selectionBarTarget.hidden = count === 0
this.selectionBarTarget.querySelector("input[type='checkbox']").checked = count > 0
}
2024-10-11 14:40:13 -04:00
_pluralizedResourceName() {
return `${this.resourceValue}${this.selectedIdsValue.length === 1 ? "" : "s"}`
}
2024-10-11 14:40:13 -04:00
_updateGroups() {
this.groupTargets.forEach(group => {
const rows = this.rowTargets.filter(row => group.contains(row))
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)
})
}
}