From ffb43a8b8a17534cc577517082260008673a2c68 Mon Sep 17 00:00:00 2001 From: sai-neetha Date: Thu, 31 Aug 2023 12:27:17 +0200 Subject: [PATCH] Update ODLUX Update odlux to latest Issue-ID: CCSDK-3933 Change-Id: I40ed806955c46295c5f2c36d74964a6045576662 Signed-off-by: sai-neetha --- .../configurationApp/src/actions/deviceActions.ts | 45 +++++++++++++--------- sdnr/wt/odlux/framework/pom.xml | 2 +- .../src/services/authenticationService.ts | 3 +- sdnr/wt/odlux/odlux.properties | 4 +- 4 files changed, 30 insertions(+), 24 deletions(-) diff --git a/sdnr/wt/odlux/apps/configurationApp/src/actions/deviceActions.ts b/sdnr/wt/odlux/apps/configurationApp/src/actions/deviceActions.ts index 52137135a..d8ec4bfd9 100644 --- a/sdnr/wt/odlux/apps/configurationApp/src/actions/deviceActions.ts +++ b/sdnr/wt/odlux/apps/configurationApp/src/actions/deviceActions.ts @@ -193,29 +193,36 @@ export const updateViewActionAsyncCreator = (vPath: string) => async (dispatch: })); } else { // Found a list at root level of a module w/o a reference key. - dataPath += `?content=config&fields=${encodeURIComponent(viewElement.id)}(${encodeURIComponent(viewElement.key || '')})`; + dataPath += `?&fields=${encodeURIComponent(viewElement.id)}(${encodeURIComponent(viewElement.key || '')})`; const restResult = (await restService.getConfigData(dataPath)); if (restResult && restResult.status === 200 && restResult.data && restResult.data[viewElement.id] ) { // spoof the not existing view here const refData = restResult.data[viewElement.id]; - const refView : ViewSpecification = { - id: '-1', - canEdit: false, - config: false, - language: 'en-US', - elements: { - [viewElement.key!] : { - uiType: 'string', - config: false, - id: viewElement.key, - label: viewElement.key, - isList: true, - } as ViewElementString, - }, - }; - dispatch(new EnableValueSelector(refView, refData, viewElement.key!, (refKey) => { - window.setTimeout(() => dispatch(new PushAction(`${vPath}[${refKey.replace(/\//ig, '%2F')}]`))); - })); + if (!Array.isArray(refData) || !refData.length) { + throw new Error('Found a list at root level of a module containing no keys.'); + } + if (refData.length > 1) { + const refView : ViewSpecification = { + id: '-1', + canEdit: false, + config: false, + language: 'en-US', + elements: { + [viewElement.key!] : { + uiType: 'string', + config: false, + id: viewElement.key, + label: viewElement.key, + isList: true, + } as ViewElementString, + }, + }; + dispatch(new EnableValueSelector(refView, refData, viewElement.key!, (refKey) => { + window.setTimeout(() => dispatch(new PushAction(`${vPath}[${refKey.replace(/\//ig, '%2F')}]`))); + })); + } else { + window.setTimeout(() => dispatch(new PushAction(`${vPath}[${refData[0]?.id.replace(/\//ig, '%2F')}]`))); + } } else { throw new Error('Found a list at root level of a module and could not determine the keys.'); } diff --git a/sdnr/wt/odlux/framework/pom.xml b/sdnr/wt/odlux/framework/pom.xml index d0dee60a8..1146f5954 100644 --- a/sdnr/wt/odlux/framework/pom.xml +++ b/sdnr/wt/odlux/framework/pom.xml @@ -45,7 +45,7 @@ ${maven.build.timestamp} ONAP Frankfurt (Neon, mdsal ${odl.mdsal.version}) - 188.1b12eac8(23/06/30) + 190.d02fb971(23/08/31) ONAP SDN-R | ONF Wireless for ${distversion} - Build: ${buildtime} ${buildno} ${project.version} diff --git a/sdnr/wt/odlux/framework/src/services/authenticationService.ts b/sdnr/wt/odlux/framework/src/services/authenticationService.ts index 39f407e40..b9c1a5a94 100644 --- a/sdnr/wt/odlux/framework/src/services/authenticationService.ts +++ b/sdnr/wt/odlux/framework/src/services/authenticationService.ts @@ -87,8 +87,7 @@ class AuthenticationService { } public async getServerReadyState(){ - - const result = await fetch("/ready", {method: "GET"}); + const result = await requestRestExt(`/ready`, { method: "GET" }, false); return result.status == (200 || 304) ? true : false; } } diff --git a/sdnr/wt/odlux/odlux.properties b/sdnr/wt/odlux/odlux.properties index 2291f6b15..b9b3ac338 100644 --- a/sdnr/wt/odlux/odlux.properties +++ b/sdnr/wt/odlux/odlux.properties @@ -1,5 +1,5 @@ -odlux.framework.buildno=188.1b12eac8(23/06/30) -odlux.apps.configurationApp.buildno=188.1b12eac8(23/06/30) +odlux.framework.buildno=190.d02fb971(23/08/31) +odlux.apps.configurationApp.buildno=189.430945bc(23/08/04) odlux.apps.connectApp.buildno=172.52348b7c(23/02/16) odlux.apps.eventLogApp.buildno=172.52348b7c(23/02/16) odlux.apps.faultApp.buildno=188.1b12eac8(23/06/30) -- 2.16.6