summaryrefslogtreecommitdiffstats
path: root/ogcp
diff options
context:
space:
mode:
authorAlejandro Sirgo Rica <asirgo@soleta.eu>2024-06-13 13:07:49 +0200
committerAlejandro Sirgo Rica <asirgo@soleta.eu>2024-06-14 09:25:36 +0200
commit5d9780e8d80df941000230a7ba3e2d9e96f44756 (patch)
tree0751917070641e52d5ae570a66b4e7a1286e51b9 /ogcp
parent37ae1bc5a218d0901431f6ab319f766b105c0773 (diff)
js: allow selection of multiple clients in scopes sidebar
Allow the selection of multiple client checkboxes if they belong to the same room. Each checkbox input in the DOM has a "data-parent-room" attribute whose value is the value of the "name" attribute of its parent room scope component. To check if a checkbox is a client and a sibling of the one being checked we check if "data-parent-room" is available for both nodes and if they have the same value.
Diffstat (limited to 'ogcp')
-rw-r--r--ogcp/static/js/ogcp.js17
-rw-r--r--ogcp/templates/base.html2
2 files changed, 16 insertions, 3 deletions
diff --git a/ogcp/static/js/ogcp.js b/ogcp/static/js/ogcp.js
index 5c15b30..b57fca7 100644
--- a/ogcp/static/js/ogcp.js
+++ b/ogcp/static/js/ogcp.js
@@ -399,8 +399,21 @@ function limitCheckboxes(context) {
const checkboxes = $('input:checkbox[form|="scopesForm"]');
checkboxes.on('change', function () {
- const checked = this;
- checkboxes.filter((i, c) => c !== checked).prop('checked', false);
+ const currentCheckbox = $(this);
+ const currentParentRoom = currentCheckbox.attr('data-parent-room');
+
+ checkboxes.each(function () {
+ const checkbox = $(this);
+ const checkboxParentRoom = checkbox.attr('data-parent-room');
+
+ if (currentCheckbox.is(checkbox)) {
+ return;
+ }
+ const isSibling = currentParentRoom && checkboxParentRoom && checkboxParentRoom === currentParentRoom;
+ if (!isSibling) {
+ checkbox.prop('checked', false);
+ }
+ });
checkScopeServer();
diff --git a/ogcp/templates/base.html b/ogcp/templates/base.html
index 30dc3bb..22fe086 100644
--- a/ogcp/templates/base.html
+++ b/ogcp/templates/base.html
@@ -111,7 +111,7 @@
<!-- ChartJS -->
<script src="{{ url_for('static', filename='AdminLTE/plugins/chart.js/Chart.min.js') }}"></script>
- <script src="{{ url_for('static', filename='js/ogcp.js') }}?v=7"></script>
+ <script src="{{ url_for('static', filename='js/ogcp.js') }}?v=8"></script>
<script>
// error messages