From 612d7db40ab40ede647728bbd34bf49f2e6e4651 Mon Sep 17 00:00:00 2001 From: danielpeintner Date: Fri, 12 Jul 2024 11:03:54 +0200 Subject: [PATCH] refactor: take over changes from https://github.com/eclipse-thingweb/node-wot/pull/1210 --- node/thing-model/src/tm-helpers.ts | 44 +++++++++++++----------------- 1 file changed, 19 insertions(+), 25 deletions(-) diff --git a/node/thing-model/src/tm-helpers.ts b/node/thing-model/src/tm-helpers.ts index 8c486f2..c21a1fb 100644 --- a/node/thing-model/src/tm-helpers.ts +++ b/node/thing-model/src/tm-helpers.ts @@ -322,20 +322,17 @@ export class ThingModelHelpers { modelInput.imports = []; for (const affType of affordanceTypes) { const affRefs = ThingModelHelpers.getThingModelRef(data[affType] as DataSchema); - if (Object.keys(affRefs).length > 0) { - for (const aff in affRefs) { - const affUri = affRefs[aff] as string; - const refObj = this.parseTmRef(affUri); - if (refObj.uri == null) { - throw new Error(`Missing remote path in ${affUri}`); - } - let source = await this.fetchModel(refObj.uri); - [source] = await this._getPartialTDs(source); - delete (data[affType] as DataSchema)[aff]["tm:ref"]; - const importedAffordance = this.getRefAffordance(refObj, source) ?? {}; - refObj.name = aff; // update the name of the affordance - modelInput.imports.push({ affordance: importedAffordance, ...refObj }); + for (const [aff, affUri] of Object.entries(affRefs)) { + const refObj = this.parseTmRef(affUri); + if (refObj.uri == null) { + throw new Error(`Missing remote path in ${affUri}`); } + let source = await this.fetchModel(refObj.uri); + [source] = await this._getPartialTDs(source); + delete (data[affType] as DataSchema)[aff]["tm:ref"]; + const importedAffordance = this.getRefAffordance(refObj, source) ?? {}; + refObj.name = aff; // update the name of the affordance + modelInput.imports.push({ affordance: importedAffordance, ...refObj }); } } const tmLinks = ThingModelHelpers.getThingModelLinks(data, "tm:submodel"); @@ -386,8 +383,7 @@ export class ThingModelHelpers { if ("submodel" in modelObject) { const submodelObj = modelObject.submodel; - for (const key in submodelObj) { - const sub = submodelObj[key]; + for (const [key, sub] of Object.entries(submodelObj ?? {})) { if (options.selfComposition === true) { if (!data.links) { throw new Error( @@ -405,11 +401,9 @@ export class ThingModelHelpers { const [subPartialTD] = await this._getPartialTDs(sub, options); const affordanceTypes = ["properties", "actions", "events"]; for (const affType of affordanceTypes) { - for (const affKey in subPartialTD[affType] as DataSchema) { + for (const affKey of Object.keys((subPartialTD[affType] ?? {}) as DataSchema)) { + data[affType] ??= {} as DataSchema; const newAffKey = `${instanceName}_${affKey}`; - if (!(affType in data)) { - data[affType] = {} as DataSchema; - } (data[affType] as DataSchema)[newAffKey] = (subPartialTD[affType] as DataSchema)[ affKey ] as DataSchema; @@ -456,15 +450,15 @@ export class ThingModelHelpers { return tmpThingModels; } - private static getThingModelRef(data: Record): Record { - const refs = {} as Record; + private static getThingModelRef(data: Record): Record { + const refs = {} as Record; if (data == null) { return refs; } - for (const key in data) { - for (const key1 in data[key] as Record) { - if (key1 === "tm:ref") { - refs[key] = (data[key] as Record)["tm:ref"] as string; + for (const [key, value] of Object.entries(data)) { + for (const valueKey of Object.keys(value as Record)) { + if (valueKey === "tm:ref") { + refs[key] = (value as Record)["tm:ref"] as string; } } }