« get me outta code hell

hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/composite/wiki-data/withReverseContributionList.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/data/composite/wiki-data/withReverseContributionList.js')
-rw-r--r--src/data/composite/wiki-data/withReverseContributionList.js28
1 files changed, 2 insertions, 26 deletions
diff --git a/src/data/composite/wiki-data/withReverseContributionList.js b/src/data/composite/wiki-data/withReverseContributionList.js
index 99d0c73b..b7f7a95b 100644
--- a/src/data/composite/wiki-data/withReverseContributionList.js
+++ b/src/data/composite/wiki-data/withReverseContributionList.js
@@ -1,9 +1,6 @@
 // Analogous implementation for withReverseReferenceList, for contributions.
 // This is mostly duplicate code and both should be ported to the same
-// underlying data form later on. Unique to contributions, the 'mode' option
-// controls whether the things themselves, for which the artist is credited,
-// are exposed (the default), or the actual contribution objects representing
-// the relationship itself, instead.
+// underlying data form later on.
 //
 // This implementation uses a global cache (via WeakMap) to attempt to speed
 // up subsequent similar accesses.
@@ -13,7 +10,6 @@
 // is used, a fresh cache will always be created.
 
 import {input, templateCompositeFrom} from '#composite';
-import {is} from '#validators';
 
 import {exitWithoutDependency, raiseOutputWithoutDependency}
   from '#composite/control-flow';
@@ -32,11 +28,6 @@ export default templateCompositeFrom({
   inputs: {
     data: inputWikiData({allowMixedTypes: false}),
     list: input({type: 'string'}),
-
-    mode: input({
-      validate: is('things', 'contributions'),
-      defaultValue: 'things',
-    }),
   },
 
   outputs: ['#reverseContributionList'],
@@ -90,25 +81,10 @@ export default templateCompositeFrom({
         }
 
         return continuation({
-          ['#contributions']:
+          ['#reverseContributionList']:
             cache.get(data).get(myself) ?? [],
         });
       },
     },
-
-    {
-      dependencies: ['#contributions', input('mode')],
-      compute: (continuation, {
-        ['#contributions']: contributions,
-        [input('mode')]: mode,
-      }) => continuation({
-        ['#reverseContributionList']:
-          (mode === 'contributions'
-            ? contributions
-         : mode === 'things'
-            ? contributions.map(contrib => contrib.thing)
-            : []),
-      }),
-    },
   ],
 });