Refactoring

Changed function names for better readibility
This commit is contained in:
JoseQuintas2021 2025-04-23 15:23:25 +01:00
parent 19a3584df0
commit be1ab4954c
2 changed files with 8 additions and 8 deletions

View File

@ -34,8 +34,8 @@ class PdfContainer {
this.splitPDF = this.splitPDF.bind(this); this.splitPDF = this.splitPDF.bind(this);
this.splitAll = this.splitAll.bind(this); this.splitAll = this.splitAll.bind(this);
this.deleteSelected = this.deleteSelected.bind(this); this.deleteSelected = this.deleteSelected.bind(this);
this.toggleSelectAll = this.toggleSelectAll.bind(this); this.selectAll = this.selectAll.bind(this);
this.toggleDeselectAll = this.toggleDeselectAll.bind(this); this.deselectAll = this.deselectAll.bind(this);
this.updateSelectedPagesDisplay = this.updateSelectedPagesDisplay.bind(this); this.updateSelectedPagesDisplay = this.updateSelectedPagesDisplay.bind(this);
this.toggleSelectPageVisibility = this.toggleSelectPageVisibility.bind(this); this.toggleSelectPageVisibility = this.toggleSelectPageVisibility.bind(this);
this.updatePagesFromCSV = this.updatePagesFromCSV.bind(this); this.updatePagesFromCSV = this.updatePagesFromCSV.bind(this);
@ -64,8 +64,8 @@ class PdfContainer {
window.rotateAll = this.rotateAll; window.rotateAll = this.rotateAll;
window.splitAll = this.splitAll; window.splitAll = this.splitAll;
window.deleteSelected = this.deleteSelected; window.deleteSelected = this.deleteSelected;
window.toggleSelectAll = this.toggleSelectAll; window.selectAll = this.selectAll;
window.toggleDeselectAll = this.toggleDeselectAll; window.deselectAll = this.deselectAll;
window.updateSelectedPagesDisplay = this.updateSelectedPagesDisplay; window.updateSelectedPagesDisplay = this.updateSelectedPagesDisplay;
window.toggleSelectPageVisibility = this.toggleSelectPageVisibility; window.toggleSelectPageVisibility = this.toggleSelectPageVisibility;
window.updatePagesFromCSV = this.updatePagesFromCSV; window.updatePagesFromCSV = this.updatePagesFromCSV;
@ -435,7 +435,7 @@ class PdfContainer {
this.undoManager.pushUndoClearRedo(removeSelectedCommand); this.undoManager.pushUndoClearRedo(removeSelectedCommand);
} }
toggleSelectAll() { selectAll() {
const checkboxes = document.querySelectorAll('.pdf-actions_checkbox'); const checkboxes = document.querySelectorAll('.pdf-actions_checkbox');
window.selectAll = true; window.selectAll = true;
const selectIcon = document.getElementById('select-All-Container'); const selectIcon = document.getElementById('select-All-Container');
@ -457,7 +457,7 @@ class PdfContainer {
this.updateSelectedPagesDisplay(); this.updateSelectedPagesDisplay();
} }
toggleDeselectAll() { deselectAll() {
const checkboxes = document.querySelectorAll('.pdf-actions_checkbox'); const checkboxes = document.querySelectorAll('.pdf-actions_checkbox');
window.selectAll = false; window.selectAll = false;
const selectIcon = document.getElementById('select-All-Container'); const selectIcon = document.getElementById('select-All-Container');

View File

@ -94,11 +94,11 @@
</span> </span>
</button> </button>
<button id="deselect-All-Container" th:title="#{multiTool.deselectAll}" <button id="deselect-All-Container" th:title="#{multiTool.deselectAll}"
class="btn btn-secondary enable-on-file hidden" onclick="toggleDeselectAll()" disabled> class="btn btn-secondary enable-on-file hidden" onclick="deselectAll()" disabled>
<span class="material-symbols-rounded" id="deselect-icon">deselect</span> <span class="material-symbols-rounded" id="deselect-icon">deselect</span>
</button> </button>
<button id="select-All-Container" th:title="#{multiTool.selectAll}" <button id="select-All-Container" th:title="#{multiTool.selectAll}"
class="btn btn-secondary enable-on-file hidden" onclick="toggleSelectAll()" disabled> class="btn btn-secondary enable-on-file hidden" onclick="selectAll()" disabled>
<span class="material-symbols-rounded" id="select-icon">select_all</span> <span class="material-symbols-rounded" id="select-icon">select_all</span>
</button> </button>
<button id="delete-button" th:title="#{multiTool.deleteSelected}" <button id="delete-button" th:title="#{multiTool.deleteSelected}"