« get me outta code hell

data: Thing.composite.from: mapDependencies/mapContinuation - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-08-24 18:47:09 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-09-05 21:02:50 -0300
commit2b2bbe9083d6f205e6b04b08c8bc4339a6a9ed87 (patch)
treee2ba6aab9aee206bbb6c2b7f84ac5ce68c164dae /src
parentfab4b46d13795bcc82c8b4dd6b5a39ef23c42430 (diff)
data: Thing.composite.from: mapDependencies/mapContinuation
Diffstat (limited to 'src')
-rw-r--r--src/data/things/thing.js162
1 files changed, 91 insertions, 71 deletions
diff --git a/src/data/things/thing.js b/src/data/things/thing.js
index eaf4655d..a9fd220f 100644
--- a/src/data/things/thing.js
+++ b/src/data/things/thing.js
@@ -644,7 +644,7 @@ export default class Thing extends CacheableObject {
         push(new TypeError(`Base which composes can't also update yet`));
       }
 
-      const exposeFunctionOrder = [];
+      const exposeSteps = [];
       const exposeDependencies = new Set(base.expose?.dependencies);
 
       for (let i = 0; i < steps.length; i++) {
@@ -695,11 +695,7 @@ export default class Thing extends CacheableObject {
               fn = step.expose.compute;
             }
 
-            exposeFunctionOrder.push({
-              type,
-              fn,
-              ownDependencies: step.expose.dependencies,
-            });
+            exposeSteps.push(step.expose);
           }
         });
       }
@@ -727,81 +723,104 @@ export default class Thing extends CacheableObject {
         expose.dependencies = Array.from(exposeDependencies);
 
         const continuationSymbol = Symbol();
+        const noTransformSymbol = Symbol();
 
-        if (base.flags.update) {
-          expose.transform = (value, initialDependencies) => {
-            const dependencies = {...initialDependencies};
-            let valueSoFar = value;
-
-            for (const {type, fn, ownDependencies} of exposeFunctionOrder) {
-              const filteredDependencies =
-                (ownDependencies
-                  ? filterProperties(dependencies, ownDependencies)
-                  : {})
-
-              const result =
-                (type === 'transform'
-                  ? fn(valueSoFar, filteredDependencies, (updatedValue, providedDependencies) => {
+        const _filterDependencies = (dependencies, step) => {
+          const filteredDependencies =
+            (step.dependencies
+              ? filterProperties(dependencies, step.dependencies)
+              : {});
+
+          if (step.mapDependencies) {
+            for (const [to, from] of Object.entries(step.mapDependencies)) {
+              filteredDependencies[to] = dependencies[from] ?? null;
+            }
+          }
+
+          return filteredDependencies;
+        };
+
+        const _assignDependencies = (continuationAssignment, step) => {
+          if (!step.mapContinuation) {
+            return continuationAssignment;
+          }
+
+          const assignDependencies = {};
+
+          for (const [from, to] of Object.entries(step.mapContinuation)) {
+            assignDependencies[to] = continuationAssignment[from] ?? null;
+          }
+
+          return assignDependencies;
+        };
+
+        const _computeOrTransform = (value, initialDependencies) => {
+          const dependencies = {...initialDependencies};
+
+          let valueSoFar = value;
+
+          for (const step of exposeSteps) {
+            const filteredDependencies = _filterDependencies(dependencies, step);
+
+            let assignDependencies = null;
+
+            const result =
+              (valueSoFar !== noTransformSymbol && step.transform
+                ? step.transform(
+                    valueSoFar, filteredDependencies,
+                    (updatedValue, providedDependencies) => {
                       valueSoFar = updatedValue ?? null;
-                      Object.assign(dependencies, providedDependencies ?? {});
+                      assignDependencies = providedDependencies;
                       return continuationSymbol;
                     })
-                  : fn(filteredDependencies, providedDependencies => {
-                      Object.assign(dependencies, providedDependencies ?? {});
+                : step.compute(
+                    filteredDependencies,
+                    (providedDependencies) => {
+                      assignDependencies = providedDependencies;
                       return continuationSymbol;
                     }));
 
-              if (result !== continuationSymbol) {
-                return result;
-              }
+            if (result !== continuationSymbol) {
+              return result;
             }
 
-            const filteredDependencies =
-              filterProperties(dependencies, base.expose.dependencies);
+            Object.assign(dependencies, _assignDependencies(assignDependencies, step));
+          }
 
-            // Note: base.flags.compose is not compatible with base.flags.update,
-            // so the base.flags.compose case is not handled here.
+          const filteredDependencies = _filterDependencies(dependencies, base.expose);
 
-            if (base.expose.transform) {
-              return base.expose.transform(valueSoFar, filteredDependencies);
-            } else {
-              return base.expose.compute(filteredDependencies);
-            }
-          };
-        } else {
-          expose.compute = (initialDependencies, continuationIfApplicable) => {
-            const dependencies = {...initialDependencies};
-
-            for (const {fn} of exposeFunctionOrder) {
-              const result =
-                fn(dependencies, providedDependencies => {
-                  Object.assign(dependencies, providedDependencies ?? {});
-                  return continuationSymbol;
-                });
-
-              if (result !== continuationSymbol) {
-                return result;
-              }
-            }
+          // Note: base.flags.compose is not compatible with base.flags.update.
+          if (base.expose.transform) {
+            return base.expose.transform(valueSoFar, filteredDependencies);
+          } else if (base.flags.compose) {
+            const continuation = continuationIfApplicable;
 
-            if (base.flags.compose) {
-              let exportDependencies;
+            let exportDependencies;
 
-              const result =
-                base.expose.compute(dependencies, providedDependencies => {
-                  exportDependencies = providedDependencies;
-                  return continuationSymbol;
-                });
+            const result =
+              base.expose.compute(filteredDependencies, providedDependencies => {
+                exportDependencies = providedDependencies;
+                return continuationSymbol;
+              });
 
-              if (result !== continuationSymbol) {
-                return result;
-              }
-
-              return continuationIfApplicable(exportDependencies);
-            } else {
-              return base.expose.compute(dependencies);
+            if (result !== continuationSymbol) {
+              return result;
             }
-          };
+
+            return continuation(_assignDependencies(exportDependencies, base.expose));
+          } else {
+            return base.expose.compute(filteredDependencies);
+          }
+        };
+
+        if (base.flags.update) {
+          expose.transform =
+            (value, initialDependencies) =>
+              _computeOrTransform(value, initialDependencies);
+        } else {
+          expose.compute =
+            (initialDependencies) =>
+              _computeOrTransform(undefined, initialDependencies);
         }
       }
 
@@ -848,16 +867,17 @@ export default class Thing extends CacheableObject {
     // providing (named by the second argument) the result. "Resolving"
     // means mapping the "who" reference of each contribution to an artist
     // object, and filtering out those whose "who" doesn't match any artist.
-    withResolvedContribs: ({from: contribsByRefDependency, to: outputDependency}) => ({
+    withResolvedContribs: ({from, to}) => ({
       annotation: `Thing.composite.withResolvedContribs`,
       flags: {expose: true, compose: true},
 
       expose: {
-        dependencies: ['artistData', contribsByRefDependency],
-        compute: ({artistData, [contribsByRefDependency]: contribsByRef}, continuation) =>
+        dependencies: ['artistData'],
+        mapDependencies: {from},
+        mapContinuation: {to},
+        compute: ({artistData, from}, continuation) =>
           continuation({
-            [outputDependency]:
-              Thing.findArtistsFromContribs(contribsByRef, artistData),
+            to: Thing.findArtistsFromContribs(from, artistData),
           }),
       },
     }),