« get me outta code hell

hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/content/dependencies/listTracksWithExtra.js3
-rw-r--r--src/content/dependencies/listTracksWithMusicVideos.js4
2 files changed, 5 insertions, 2 deletions
diff --git a/src/content/dependencies/listTracksWithExtra.js b/src/content/dependencies/listTracksWithExtra.js
index 09d8ee21..27f03ee9 100644
--- a/src/content/dependencies/listTracksWithExtra.js
+++ b/src/content/dependencies/listTracksWithExtra.js
@@ -52,6 +52,7 @@ export default {
 
   slots: {
     hash: {type: 'string'},
+    showAlbumDates: {type: 'boolean', default: true},
   },
 
   generate(data, relations, slots, {language}) {
@@ -63,7 +64,7 @@ export default {
           albumLink: relations.albumLinks,
           date: data.dates,
         }).map(({albumLink, date}) =>
-            (date
+            (slots.showAlbumDates && date
               ? {
                   stringsKey: 'withDate',
                   album: albumLink,
diff --git a/src/content/dependencies/listTracksWithMusicVideos.js b/src/content/dependencies/listTracksWithMusicVideos.js
index b61832e5..e7aa1f5e 100644
--- a/src/content/dependencies/listTracksWithMusicVideos.js
+++ b/src/content/dependencies/listTracksWithMusicVideos.js
@@ -3,5 +3,7 @@ export default {
     ({page: relation('listTracksWithExtra', spec, 'musicVideos', 'array')}),
 
   generate: (relations) =>
-    relations.page,
+    relations.page.slots({
+      showAlbumDates: false,
+    }),
 };