diff options
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 |
commit | 7d33f79430e72f8c15b2359e652b1b0afef0c1f4 (patch) | |
tree | f5c44a5d73695b1e6924250d959b08dd323797a5 /src | |
parent | 84f2a815ea1e25b46086869a9099659fd46a3640 (diff) |
content: linkStationaryIndex, linkListingIndex
Diffstat (limited to 'src')
-rw-r--r-- | src/content/dependencies/linkListingIndex.js | 12 | ||||
-rw-r--r-- | src/content/dependencies/linkStationaryIndex.js | 24 |
2 files changed, 36 insertions, 0 deletions
diff --git a/src/content/dependencies/linkListingIndex.js b/src/content/dependencies/linkListingIndex.js new file mode 100644 index 00000000..1bfaf46e --- /dev/null +++ b/src/content/dependencies/linkListingIndex.js @@ -0,0 +1,12 @@ +export default { + contentDependencies: ['linkStationaryIndex'], + + relations: (relation) => + ({link: + relation( + 'linkStationaryIndex', + 'localized.listingIndex', + 'listingIndex.title')}), + + generate: (relations) => relations.link, +}; diff --git a/src/content/dependencies/linkStationaryIndex.js b/src/content/dependencies/linkStationaryIndex.js new file mode 100644 index 00000000..d5506e60 --- /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), + }); + } +} |