diff options
author | sai-neetha <sai-neetha.phulmali@highstreet-technologies.com> | 2023-08-31 12:27:17 +0200 |
---|---|---|
committer | sai-neetha <sai-neetha.phulmali@highstreet-technologies.com> | 2023-08-31 12:30:00 +0200 |
commit | ffb43a8b8a17534cc577517082260008673a2c68 (patch) | |
tree | 6a71a0ba97c0d6fa1823183df5bf9910a01135cd /sdnr | |
parent | 25d7a57c8f243fd2e4b7c89596188c6fd2e90e17 (diff) |
Update ODLUX
Update odlux to latest
Issue-ID: CCSDK-3933
Change-Id: I40ed806955c46295c5f2c36d74964a6045576662
Signed-off-by: sai-neetha <sai-neetha.phulmali@highstreet-technologies.com>
Diffstat (limited to 'sdnr')
-rw-r--r-- | sdnr/wt/odlux/apps/configurationApp/src/actions/deviceActions.ts | 45 | ||||
-rw-r--r-- | sdnr/wt/odlux/framework/pom.xml | 2 | ||||
-rw-r--r-- | sdnr/wt/odlux/framework/src/services/authenticationService.ts | 3 | ||||
-rw-r--r-- | 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 @@ <properties> <buildtime>${maven.build.timestamp}</buildtime> <distversion>ONAP Frankfurt (Neon, mdsal ${odl.mdsal.version})</distversion> - <buildno>188.1b12eac8(23/06/30)</buildno> + <buildno>190.d02fb971(23/08/31)</buildno> <odlux.version>ONAP SDN-R | ONF Wireless for ${distversion} - Build: ${buildtime} ${buildno} ${project.version}</odlux.version> </properties> 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) |