« 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/things/content/withSourceURLs.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/data/composite/things/content/withSourceURLs.js')
-rw-r--r--src/data/composite/things/content/withSourceURLs.js62
1 files changed, 0 insertions, 62 deletions
diff --git a/src/data/composite/things/content/withSourceURLs.js b/src/data/composite/things/content/withSourceURLs.js
deleted file mode 100644
index f85ff9ea..00000000
--- a/src/data/composite/things/content/withSourceURLs.js
+++ /dev/null
@@ -1,62 +0,0 @@
-import {input, templateCompositeFrom} from '#composite';
-
-import {raiseOutputWithoutDependency} from '#composite/control-flow';
-import {withFilteredList, withMappedList} from '#composite/data';
-
-import withAnnotationParts from './withAnnotationParts.js';
-
-export default templateCompositeFrom({
-  annotation: `withSourceURLs`,
-
-  outputs: ['#sourceURLs'],
-
-  steps: () => [
-    withAnnotationParts({
-      mode: input.value('nodes'),
-    }),
-
-    raiseOutputWithoutDependency({
-      dependency: '#annotationParts',
-      output: input.value({'#sourceURLs': []}),
-    }),
-
-    {
-      dependencies: ['#annotationParts'],
-      compute: (continuation, {
-        ['#annotationParts']: annotationParts,
-      }) => continuation({
-        ['#firstPartWithExternalLink']:
-          annotationParts
-            .find(nodes => nodes
-              .some(node => node.type === 'external-link')) ??
-          null,
-      }),
-    },
-
-    raiseOutputWithoutDependency({
-      dependency: '#firstPartWithExternalLink',
-      output: input.value({'#sourceURLs': []}),
-    }),
-
-    withMappedList({
-      list: '#firstPartWithExternalLink',
-      map: input.value(node => node.type === 'external-link'),
-    }).outputs({
-      '#mappedList': '#externalLinkFilter',
-    }),
-
-    withFilteredList({
-      list: '#firstPartWithExternalLink',
-      filter: '#externalLinkFilter',
-    }).outputs({
-      '#filteredList': '#externalLinks',
-    }),
-
-    withMappedList({
-      list: '#externalLinks',
-      map: input.value(node => node.data.href),
-    }).outputs({
-      '#mappedList': '#sourceURLs',
-    }),
-  ],
-});