summaryrefslogtreecommitdiffstats
path: root/ogcp/static/js
diff options
context:
space:
mode:
authorAlejandro Sirgo Rica <asirgo@soleta.eu>2024-07-19 20:33:19 +0200
committerAlejandro Sirgo Rica <asirgo@soleta.eu>2024-07-22 15:57:51 +0200
commitc1d08df31d5135fe43c26ea32b5998ad30645162 (patch)
treea6846a91407edf1bf896006c3989dde52ebc5fbc /ogcp/static/js
parentc3d2582aa6431ee1c4b95c04f51905f4f0976730 (diff)
ogcp: improve sidebar logic in Commands
Disable all checkboxes of scopes of level higher than room in the $(window).on('pageshow', function) callback. Set checkboxes as "indeterminate" when not every children is selected but have some of its children selected. [x] center [x] room1 [x] client1 [x] client1 [-] center [ ] room1 [-] room2 [ ] client1 [x] client1 Send all selected sidebar fields as form fields. This requires setting disabled to false and replacing indeterminate = true to checked = true in the .on('submit', function) callback. When a checkbox is clicked: 1. Find the room branch of the checked input. [ ] center [ ] room1 [ ] room2 <- root of the room branch [ ] client1 <-- clicked item 2. Uncheck all the checkboxes outside of the room branch. 3. Set all the children of the clicked item to the same value as the clicked item. 4. Set the parent checked or indeterminate values. 5. Save checkbox status.
Diffstat (limited to 'ogcp/static/js')
-rw-r--r--ogcp/static/js/ogcp.js97
1 files changed, 53 insertions, 44 deletions
diff --git a/ogcp/static/js/ogcp.js b/ogcp/static/js/ogcp.js
index 872f03c..0dccd57 100644
--- a/ogcp/static/js/ogcp.js
+++ b/ogcp/static/js/ogcp.js
@@ -59,70 +59,79 @@ function storeCheckboxStatus(checkbox, context) {
localStorage.removeItem(context + checkbox.id);
}
-function checkParentsCheckboxes() {
- const checkboxes = $('input:checkbox[form|="scopesForm"]');
- const reversedCheckboxes = $(checkboxes.get().reverse())
+function findParentCheckboxes(element) {
+ const $element = $(element);
+ const parents = $element.parentsUntil('#scopes').not('ul');
+
+ const checkboxes = parents
+ .map(function() {
+ return $(this).children('input[type="checkbox"][form="scopesForm"]').toArray();
+ })
+ .get()
+ .flat();
+ return $(checkboxes).not($element);;
+}
- reversedCheckboxes.each(function() {
- const checkbox = this;
- const checkboxChildren = $('input:checkbox', this.parentNode).not(this);
+function setParentStatus(checkboxes) {
+ checkboxes.each(function() {
+ const checkboxChildren = $(this).parent().find('input:checkbox[form="scopesForm"]').not(this);
if (checkboxChildren.length == 0) return;
- if (this.name == "scope-server") {
- const checkedChildren = checkboxChildren.filter(":checked");
- checkbox.checked = checkedChildren.length > 0;
- return;
- }
-
const unCheckedChildren = checkboxChildren.filter(":not(:checked)");
- checkbox.indeterminate =
+ this.indeterminate =
unCheckedChildren.length > 0 &&
unCheckedChildren.length < checkboxChildren.length;
- checkbox.checked = unCheckedChildren.length === 0;
+ this.checked = unCheckedChildren.length === 0;
});
}
-function checkChildrenCheckboxes(context) {
- const checkboxes = $('input:checkbox[form|="scopesForm"]')
+function configureCommandCheckboxes(context) {
+ const checkboxes = $('input:checkbox[form="scopesForm"]');
+
+ // Ensure the form fields are sent
+ $('#scopesForm').on('submit', function() {
+ checkboxes.each(function() {
+ if (this.indeterminate) {
+ this.checked = true;
+ this.disabled = false;
+ }
+ });
+ });
+
+ // disable checkboxes outside of scope-room branches
+ $(window).on('pageshow', function(event) {
+ const enabledCheckboxes = checkboxes.filter('[name="scope-room"]').parent().find('input:checkbox[form="scopesForm"]');
+ checkboxes.not(enabledCheckboxes).prop('disabled', true);
+ setParentStatus(checkboxes)
+ });
checkboxes.on('change', function () {
- const checked = this.checked
- const children = $('input:checkbox', this.parentNode).not(this)
+ const checked = this.checked;
+ const childrenCheckboxes = $('input:checkbox[form|="scopesForm"]', this.parentNode);
+ // Uncheck all other checkboxes outside of the actual room branch
if (checked) {
- // Only for rooms, deselect other rooms
- if (this.name === 'scope-room') {
- const others = $('input:checkbox[form|="scopesForm"]').not(this);
- others.prop('checked', false);
- others.each(function() {
- showSelectedClient(this);
- storeCheckboxStatus(this, context);
- });
- //others.trigger('change');
- } else {
- // Look for room, deselect all other rooms
- const selectedRoom = $('[data-room="' + $(this).data('parentRoom') + '"]');
- const others = $('input:checkbox[name="scope-room"]').not(selectedRoom);
- others.prop('checked', false).prop('indeterminate', false);
- others.each(function() {
- const checks = $(this).parent().find('input:checkbox').prop('checked', false);
- storeCheckboxStatus(this, context);
- checks.each(function() {
- showSelectedClient(this);
- storeCheckboxStatus(this, context);
- });
- });
- }
+ const roomBranch = findParentCheckboxes(this).add(childrenCheckboxes)
+ .filter('[name="scope-room"]')
+ .parent().find('input:checkbox[form="scopesForm"]');
+ checkboxes.not(roomBranch).each(function () {
+ this.checked = false;
+ this.indeterminate = false;
+ });
}
- children.each(function () {
+ childrenCheckboxes.each(function () {
this.checked = checked;
+ });
+
+ setParentStatus(checkboxes);
+
+ checkboxes.each(function() {
+ showSelectedClient(this);
storeCheckboxStatus(this, context);
- $(this).trigger('show-client');
});
- checkParentsCheckboxes();
});
}