diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-09-23 20:19:12 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-09-23 20:19:12 -0300 |
commit | 61a3fad9cde8fa3809ccf26465f69dd050e6c669 (patch) | |
tree | 5c5c90d452c5aa7c023174bddc1a08f3f0acd75f /src/content/dependencies | |
parent | 64476074cbc7375afe2388ddd6e9e3275c25f3bd (diff) | |
parent | a53d53e1f95d84b23cffb9a5d43f1a70a412b6fe (diff) |
Merge branch 'preview' into track-data-cleanup
Diffstat (limited to 'src/content/dependencies')
-rw-r--r-- | src/content/dependencies/linkThing.js | 6 | ||||
-rw-r--r-- | src/content/dependencies/listTracksWithExtra.js | 12 |
2 files changed, 11 insertions, 7 deletions
diff --git a/src/content/dependencies/linkThing.js b/src/content/dependencies/linkThing.js index 643bf4b1..e661ca7c 100644 --- a/src/content/dependencies/linkThing.js +++ b/src/content/dependencies/linkThing.js @@ -1,6 +1,6 @@ export default { contentDependencies: ['linkTemplate'], - extraDependencies: ['html'], + extraDependencies: ['html', 'language'], relations(relation) { return { @@ -41,7 +41,7 @@ export default { hash: {type: 'string'}, }, - generate(data, relations, slots, {html}) { + generate(data, relations, slots, {html, language}) { const path = [data.pathKey, data.directory]; const name = @@ -51,7 +51,7 @@ export default { const content = (html.isBlank(slots.content) - ? name + ? language.sanitize(name) : slots.content); let color = null; diff --git a/src/content/dependencies/listTracksWithExtra.js b/src/content/dependencies/listTracksWithExtra.js index 73d25e3d..c9f80f35 100644 --- a/src/content/dependencies/listTracksWithExtra.js +++ b/src/content/dependencies/listTracksWithExtra.js @@ -65,10 +65,14 @@ export default { stitchArrays({ albumLink: relations.albumLinks, date: data.dates, - }).map(({albumLink, date}) => ({ - album: albumLink, - date: language.formatDate(date), - })), + }).map(({albumLink, date}) => + (date + ? { + stringsKey: 'withDate', + album: albumLink, + date: language.formatDate(date), + } + : {album: albumLink})), chunkRows: relations.trackLinks |