« get me outta code hell

content, client: "Random Pages" listing - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/listing-spec.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-08-13 23:24:36 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-08-13 23:24:36 -0300
commit3d218700701a42d2b43714ddc63620ee308f354e (patch)
tree3a96dc4107966949bbf3b5326994d8f2164b3510 /src/listing-spec.js
parent004967af7dff9d7c1f87ef89d8bbafddf830afce (diff)
content, client: "Random Pages" listing
Diffstat (limited to 'src/listing-spec.js')
-rw-r--r--src/listing-spec.js90
1 files changed, 0 insertions, 90 deletions
diff --git a/src/listing-spec.js b/src/listing-spec.js
index e19b90e..402cb6f 100644
--- a/src/listing-spec.js
+++ b/src/listing-spec.js
@@ -240,96 +240,6 @@ listingSpec.push({
   stringsKey: 'other.randomPages',
   contentFunction: 'listRandomPageLinks',
   groupUnderOther: true,
-
-  /*
-  data: ({wikiData: {albumData}}) => [
-    {
-      name: 'Official',
-      randomCode: 'official',
-      albums: albumData
-        .filter((album) => album.groups
-          .some((group) => group.directory === OFFICIAL_GROUP_DIRECTORY)),
-    },
-    {
-      name: 'Fandom',
-      randomCode: 'fandom',
-      albums: albumData
-        .filter((album) => album.groups
-          .every((group) => group.directory !== OFFICIAL_GROUP_DIRECTORY)),
-    },
-  ],
-
-  html: (data, {getLinkThemeString, html}) =>
-    html.fragment([
-      html.tag('p',
-        `Choose a link to go to a random page in that category or album! If your browser doesn't support relatively modern JavaScript or you've disabled it, these links won't work - sorry.`),
-
-      html.tag('p',
-        {class: 'js-hide-once-data'},
-        `(Data files are downloading in the background! Please wait for data to load.)`),
-
-      html.tag('p',
-        {class: 'js-show-once-data'},
-        `(Data files have finished being downloaded. The links should work!)`),
-
-      html.tag('dl', [
-        html.tag('dt',
-          `Miscellaneous:`),
-
-        html.tag('dd',
-          html.tag('ul', [
-            html.tag('li', [
-              html.tag('a',
-                {href: '#', 'data-random': 'artist'},
-                `Random Artist`),
-              '(' +
-                html.tag('a',
-                  {href: '#', 'data-random': 'artist-more-than-one-contrib'},
-                  `&gt;1 contribution`) +
-                ')',
-            ]),
-
-            html.tag('li',
-              html.tag('a',
-                {href: '#', 'data-random': 'album'},
-                `Random Album (whole site)`)),
-
-            html.tag('li',
-              html.tag('a',
-                {href: '#', 'data-random': 'track'},
-                `Random Track (whole site)`)),
-          ])),
-
-        ...data.flatMap(({albums, name, randomCode}) => [
-          html.tag('dt', [
-            name + ':',
-            '(' +
-              html.tag('a',
-                {href: '#', 'data-random': 'album-in-' + randomCode},
-                `Random Album`) +
-              ', ' +
-              html.tag('a',
-                {href: '#', 'data-random': 'track-in' + randomCode},
-                'Random Track') +
-              ')',
-          ]),
-
-          html.tag('dd',
-            html.tag('ul',
-              albums.map(album =>
-                html.tag('li',
-                  html.tag('a',
-                    {
-                      href: '#',
-                      'data-random': 'track-in-album',
-                      style: getLinkThemeString(album.color) +
-                        `; --album-directory: ${album.directory}`,
-                    },
-                    album.name))))),
-        ]),
-      ]),
-    ]),
-  */
 });
 
 {