« get me outta code hell

"from (group)" accents on group album lists - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
author(quasar) nebula <towerofnix@gmail.com>2021-05-27 12:19:03 -0300
committer(quasar) nebula <towerofnix@gmail.com>2021-05-27 12:19:03 -0300
commit19ef6644cc187d750ba9fa1c05e3e891a73d3425 (patch)
tree0a4d2ac5a8a2d1677d86cdb0d95e1d603c2dd78b /src
parent789bf78f5c350a98bbf64cb7aa06af6c27aab110 (diff)
"from (group)" accents on group album lists
Diffstat (limited to 'src')
-rw-r--r--src/static/site.css4
-rw-r--r--src/strings-default.json2
-rwxr-xr-xsrc/upd8.js27
3 files changed, 25 insertions, 8 deletions
diff --git a/src/static/site.css b/src/static/site.css
index b71f0cd..e664c0e 100644
--- a/src/static/site.css
+++ b/src/static/site.css
@@ -197,9 +197,11 @@ footer > :last-child {
     fill: var(--primary-color);
 }
 
-.rerelease {
+.rerelease,
+.other-group-accent {
     opacity: 0.7;
     font-style: oblique;
+    white-space: nowrap;
 }
 
 .content-columns {
diff --git a/src/strings-default.json b/src/strings-default.json
index eac7154..dd89239 100644
--- a/src/strings-default.json
+++ b/src/strings-default.json
@@ -213,6 +213,8 @@
     "groupInfoPage.viewAlbumGallery.link": "album gallery",
     "groupInfoPage.albumList.title": "Albums",
     "groupInfoPage.albumList.item": "({YEAR}) {ALBUM}",
+    "groupInfoPage.albumList.item.withAccent": "{ITEM} {ACCENT}",
+    "groupInfoPage.albumList.item.otherGroupAccent": "(from {GROUP})",
     "groupGalleryPage.title": "{GROUP} - Gallery",
     "groupGalleryPage.infoLine": "{TRACKS} across {ALBUMS}, totaling {TIME}.",
     "groupGalleryPage.anotherGroupLine": "({LINK})",
diff --git a/src/upd8.js b/src/upd8.js
index 5615bb1..1337d28 100755
--- a/src/upd8.js
+++ b/src/upd8.js
@@ -5474,6 +5474,11 @@ function writeGroupPage(group, {wikiData}) {
     const releasedTracks = releasedAlbums.flatMap(album => album.tracks);
     const totalDuration = getTotalDuration(releasedTracks);
 
+    const albumLines = group.albums.map(album => ({
+        album,
+        otherGroup: album.groups.find(g => g !== group)
+    }));
+
     const infoPage = {
         type: 'page',
         path: ['groupInfo', group.directory],
@@ -5505,14 +5510,22 @@ function writeGroupPage(group, {wikiData}) {
                         })
                     }</p>
                     <ul>
-                        ${group.albums.map(album => fixWS`
-                            <li>${
-                                strings('groupInfoPage.albumList.item', {
-                                    year: album.date.getFullYear(),
-                                    album: link.album(album)
+                        ${albumLines.map(({ album, otherGroup }) => {
+                            const item = strings('groupInfoPage.albumList.item', {
+                                year: album.date.getFullYear(),
+                                album: link.album(album)
+                            });
+                            return html.tag('li', (otherGroup
+                                ? strings('groupInfoPage.albumList.item.withAccent', {
+                                    item,
+                                    accent: html.tag('span',
+                                        {class: 'other-group-accent'},
+                                        strings('groupInfoPage.albumList.item.otherGroupAccent', {
+                                            group: link.groupInfo(otherGroup, {color: false})
+                                        }))
                                 })
-                            }</li>
-                        `).join('\n')}
+                                : item));
+                        }).join('\n')}
                     </ul>
                 `
             },