From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Hofmann To: development@lists.ipfire.org Subject: Re: [PATCH 4/4] zoneconf.cgi: Add Javascript for new GUI elements Date: Mon, 04 Jan 2021 13:19:49 +0100 Message-ID: <10e5670d-5e2b-facc-8cd0-d1c4cf11eda4@leo-andres.de> In-Reply-To: <168B77A7-ED70-4B53-B58F-0702998DCE83@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4256468345444590773==" List-Id: --===============4256468345444590773== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hi Michael, thank you very much for reviewing my patches! I agree, we should test this th= oroughly. I would rather submit new patches than break someones network :) Regarding your other mail, I looked into moving the "is_zone_active"... funct= ions to the general-functions.pl file. I still need to make sure that these functions are universally applicable, th= en I will submit them. Regards, Leo Am 27.12.2020 um 12:05 schrieb Michael Tremer: > Hi, > > This patchset looks good to me, but I would like to hear back from Daniel f= or some test results :) > > Breaking people=E2=80=99s networks would be really bad. So let=E2=80=99s gi= ve this a good test. > > -Michael > >> On 22 Dec 2020, at 21:15, Leo Hofmann wrote: >> >> Hi Daniel, >> >> just in time for the holidays, I finished my work on the zoneconf.cgi STP = GUI. >> I'm not sure how to test STP in my development setup, but I think I got it= right. I would appreciate if you could test these patches, thank you :) >> >> Best regards & happy holidays >> Leo >> >> Am 22.12.2020 um 21:06 schrieb Leo-Andres Hofmann: >>> 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) { >>> print <>> $uc
>>> - >>> >>> >>> >>> @@ -544,7 +544,7 @@ foreach (@zones) { # load settings and prepare form e= lements 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.zo= ne); >>> + if(stpEnable) { >>> + stpEnable.disabled =3D (selectObj.value !=3D=3D 'BRIDGE'); //STP is av= ailable if zone is in bridge mode >>> + stpEnable.checked =3D stpEnable.checked && (! stpEnable.disabled); //u= n-check 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.dat= aset.zone); >>> + if(priority) { >>> + priority.disabled =3D inputObj.disabled || (! inputObj.checked); >>> + } >>> +} --===============4256468345444590773==--