« get me outta code hell

content: linkStationaryIndex, linkListingIndex - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/content/dependencies/linkStationaryIndex.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-06-24 11:38:55 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-06-24 11:38:55 -0300
commit7d33f79430e72f8c15b2359e652b1b0afef0c1f4 (patch)
treef5c44a5d73695b1e6924250d959b08dd323797a5 /src/content/dependencies/linkStationaryIndex.js
parent84f2a815ea1e25b46086869a9099659fd46a3640 (diff)
content: linkStationaryIndex, linkListingIndex
Diffstat (limited to 'src/content/dependencies/linkStationaryIndex.js')
-rw-r--r--src/content/dependencies/linkStationaryIndex.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/content/dependencies/linkStationaryIndex.js b/src/content/dependencies/linkStationaryIndex.js
new file mode 100644
index 0000000..d5506e6
--- /dev/null
+++ b/src/content/dependencies/linkStationaryIndex.js
@@ -0,0 +1,24 @@
+// Not to be confused with "html.Stationery".
+
+export default {
+  contentDependencies: ['linkTemplate'],
+  extraDependencies: ['language'],
+
+  relations(relation) {
+    return {
+      linkTemplate: relation('linkTemplate'),
+    };
+  },
+
+  data(pathKey, stringKey) {
+    return {pathKey, stringKey};
+  },
+
+  generate(data, relations, {language}) {
+    return relations.linkTemplate
+      .slots({
+        path: [data.pathKey],
+        content: language.formatString(data.stringKey),
+      });
+  }
+}