From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo-Andres Hofmann To: development@lists.ipfire.org Subject: [PATCH v2 4/6] zoneconf.cgi: Add Javascript for new GUI elements Date: Thu, 18 Feb 2021 15:30:14 +0100 Message-ID: <20210218143016.972-4-hofmann@leo-andres.de> In-Reply-To: <20210218143016.972-1-hofmann@leo-andres.de> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0635616099445815441==" List-Id: --===============0635616099445815441== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Leo-Andres Hofmann --- html/cgi-bin/zoneconf.cgi | 6 +++--- html/html/include/zoneconf.js | 27 +++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 3 deletions(-) diff --git a/html/cgi-bin/zoneconf.cgi b/html/cgi-bin/zoneconf.cgi index 1d30450ed..eb6cd0e66 100644 --- a/html/cgi-bin/zoneconf.cgi +++ b/html/cgi-bin/zoneconf.cgi @@ -410,7 +410,7 @@ foreach (@zones) { =20 print <$uc
- @@ -544,7 +544,7 @@ foreach (@zones) { # load settings and prepare form eleme= nts for each zone # enable checkbox HTML my $row_1 =3D < - + END ; @@ -553,7 +553,7 @@ END # priority input box HTML my $row_2 =3D < - + END ; diff --git a/html/html/include/zoneconf.js b/html/html/include/zoneconf.js index d76f0ab68..d27a79bc8 100644 --- a/html/html/include/zoneconf.js +++ b/html/html/include/zoneconf.js @@ -54,3 +54,30 @@ function highlightAccess(selectObj) { //if interface is assigned, highlight table cell in zone color colorParentCell(selectObj, zoneColor, (selectObj.value !=3D=3D 'NONE')); } + +//update zone mode +function changeZoneMode(selectObj) { + if(!(selectObj && ('zone' in selectObj.dataset))) { + return; //required parameters are missing + } + + // STP enable checkbox + let stpEnable =3D document.getElementById('STP-' + selectObj.dataset.zone); + if(stpEnable) { + stpEnable.disabled =3D (selectObj.value !=3D=3D 'BRIDGE'); //STP is availa= ble if zone is in bridge mode + stpEnable.checked =3D stpEnable.checked && (! stpEnable.disabled); //un-ch= eck if disabled + stpEnable.dispatchEvent(new Event('change')); + } +} + +//STP enable checkbox change toggles priority input +function changeEnableSTP(inputObj) { + if(!(inputObj && ('zone' in inputObj.dataset))) { + return; //required parameters are missing + } + + let priority =3D document.getElementById('STP-PRIORITY-' + inputObj.dataset= .zone); + if(priority) { + priority.disabled =3D inputObj.disabled || (! inputObj.checked); + } +} --=20 2.27.0.windows.1 --===============0635616099445815441==--