mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-06-02 23:56:56 +08:00
Added column select-all to role permission table
This commit is contained in:
@ -13,6 +13,12 @@ class PermissionsTable {
|
||||
for (let toggleRowElem of toggleRowElems) {
|
||||
toggleRowElem.addEventListener('click', this.toggleRowClick.bind(this));
|
||||
}
|
||||
|
||||
// Handle toggle column event
|
||||
const toggleColumnElems = elem.querySelectorAll('[permissions-table-toggle-all-in-column]');
|
||||
for (let toggleColElem of toggleColumnElems) {
|
||||
toggleColElem.addEventListener('click', this.toggleColumnClick.bind(this));
|
||||
}
|
||||
}
|
||||
|
||||
toggleAllClick(event) {
|
||||
@ -25,10 +31,31 @@ class PermissionsTable {
|
||||
this.toggleAllInElement(event.target.closest('tr'));
|
||||
}
|
||||
|
||||
toggleColumnClick(event) {
|
||||
event.preventDefault();
|
||||
|
||||
const tableCell = event.target.closest('th,td');
|
||||
const colIndex = Array.from(tableCell.parentElement.children).indexOf(tableCell);
|
||||
const tableRows = tableCell.closest('table').querySelectorAll('tr');
|
||||
const inputsToToggle = [];
|
||||
|
||||
for (let row of tableRows) {
|
||||
const targetCell = row.children[colIndex];
|
||||
if (targetCell) {
|
||||
inputsToToggle.push(...targetCell.querySelectorAll('input[type=checkbox]'));
|
||||
}
|
||||
}
|
||||
this.toggleAllInputs(inputsToToggle);
|
||||
}
|
||||
|
||||
toggleAllInElement(domElem) {
|
||||
const inputsToSelect = domElem.querySelectorAll('input[type=checkbox]');
|
||||
const currentState = inputsToSelect.length > 0 ? inputsToSelect[0].checked : false;
|
||||
for (let checkbox of inputsToSelect) {
|
||||
const inputsToToggle = domElem.querySelectorAll('input[type=checkbox]');
|
||||
this.toggleAllInputs(inputsToToggle);
|
||||
}
|
||||
|
||||
toggleAllInputs(inputsToToggle) {
|
||||
const currentState = inputsToToggle.length > 0 ? inputsToToggle[0].checked : false;
|
||||
for (let checkbox of inputsToToggle) {
|
||||
checkbox.checked = !currentState;
|
||||
checkbox.dispatchEvent(new Event('change'));
|
||||
}
|
||||
|
Reference in New Issue
Block a user