« get me outta code hell

remove reference flash page code - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/page
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-08-10 12:43:39 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-08-10 12:43:39 -0300
commit41e86cba5e5afba011fc68599047e4d12df97819 (patch)
tree5a9b18d09ddadfb675d6e87905759155cdb8d751 /src/page
parent1fe4241e62c3172b771ac3090fc109945ffbbec5 (diff)
remove reference flash page code
Diffstat (limited to 'src/page')
-rw-r--r--src/page/flash.js327
1 files changed, 0 insertions, 327 deletions
diff --git a/src/page/flash.js b/src/page/flash.js
index f5d7347..14e67d8 100644
--- a/src/page/flash.js
+++ b/src/page/flash.js
@@ -36,330 +36,3 @@ export function pathsTargetless() {
     },
   ];
 }
-
-/*
-export function write(flash, {wikiData}) {
-  const page = {
-    type: 'page',
-    path: ['flash', flash.directory],
-    page: ({
-      fancifyFlashURL,
-      generateChronologyLinks,
-      generateContentHeading,
-      generateNavigationLinks,
-      getArtistString,
-      getFlashCover,
-      getThemeString,
-      html,
-      link,
-      language,
-    }) => ({
-      title: language.$('flashPage.title', {flash: flash.name}),
-
-      themeColor: flash.color,
-      theme:
-        getThemeString(flash.color, {
-          additionalVariables: [
-            `--flash-directory: ${flash.directory}`,
-          ],
-        }),
-
-      cover: {
-        src: getFlashCover(flash),
-        alt: language.$('misc.alt.flashArt'),
-      },
-
-      main: {
-        headingMode: 'sticky',
-
-        content: [
-          html.tag('p',
-            language.$('releaseInfo.released', {
-              date: language.formatDate(flash.date),
-            })),
-
-          (flash.page || !empty(flash.urls)) &&
-            html.tag('p',
-              language.$('releaseInfo.playOn', {
-                links: language.formatDisjunctionList(
-                  [
-                    flash.page && getFlashLink(flash),
-                    ...(flash.urls ?? []),
-                  ].map((url) => fancifyFlashURL(url, flash))
-                ),
-              })),
-
-          ...html.fragment(
-            !empty(flash.featuredTracks) && [
-              generateContentHeading({
-                id: 'features',
-                title:
-                  language.$('releaseInfo.tracksFeatured', {
-                    flash: html.tag('i', flash.name),
-                  }),
-              }),
-
-              html.tag('ul',
-                flash.featuredTracks.map(track =>
-                  html.tag('li',
-                    language.$('trackList.item.withArtists', {
-                      track: link.track(track),
-                      by: html.tag('span', {class: 'by'},
-                        language.$('trackList.item.withArtists.by', {
-                          artists: getArtistString(track.artistContribs),
-                        })),
-                    })))),
-            ]),
-
-          ...html.fragment(
-            !empty(flash.contributorContribs) && [
-              generateContentHeading({
-                id: 'contributors',
-                title: language.$('releaseInfo.contributors'),
-              }),
-
-              html.tag('ul',
-                flash.contributorContribs.map(contrib =>
-                  html.tag('li',
-                    getArtistString([contrib], {
-                      showContrib: true,
-                      showIcons: true,
-                    })))),
-            ]),
-        ],
-      },
-
-      sidebarLeft: generateSidebarForFlash(flash, {
-        html,
-        language,
-        link,
-        wikiData,
-      }),
-
-      nav: generateNavForFlash(flash, {
-        generateChronologyLinks,
-        generateNavigationLinks,
-        html,
-        link,
-        language,
-        wikiData,
-      }),
-    }),
-  };
-
-  return [page];
-}
-
-export function writeTargetless({
-  wikiData,
-}) {
-  const {flashActData} = wikiData;
-
-  const page = {
-    type: 'page',
-    path: ['flashIndex'],
-    page: ({
-      getFlashGridHTML,
-      getLinkThemeString,
-      html,
-      language,
-      link,
-    }) => ({
-      title: language.$('flashIndex.title'),
-
-      main: {
-        classes: ['flash-index'],
-        headingMode: 'static',
-
-        content: [
-          html.tag('p',
-            {class: 'quick-info'},
-            language.$('misc.jumpTo')),
-
-          html.tag('ul',
-            {class: 'quick-info'},
-            flashActData
-              .filter(act => act.jump)
-              .map(({anchor, jump, jumpColor}) =>
-                html.tag('li',
-                  html.tag('a',
-                    {
-                      href: '#' + anchor,
-                      style: getLinkThemeString(jumpColor),
-                    },
-                    jump)))),
-
-          ...flashActData.flatMap((act, i) => [
-            html.tag('h2',
-              {
-                id: act.anchor,
-                style: getLinkThemeString(act.color),
-              },
-              link.flash(act.flashes[0], {
-                text: act.name,
-              })),
-
-            html.tag('div',
-              {class: 'grid-listing'},
-              getFlashGridHTML({
-                entries: act.flashes.map((flash) => ({
-                  item: flash,
-                })),
-                lazy: i === 0 ? 4 : true,
-              })),
-          ]),
-        ],
-      },
-
-      nav: {simple: true},
-    }),
-  };
-
-  return [page];
-}
-
-// Utility functions
-
-function generateNavForFlash(flash, {
-  generateChronologyLinks,
-  generateNavigationLinks,
-  html,
-  language,
-  link,
-  wikiData
-}) {
-  const {flashData} = wikiData;
-
-  const previousNextLinks = generateNavigationLinks(flash, {
-    data: flashData,
-    linkKey: 'flash',
-  });
-
-  return {
-    linkContainerClasses: ['nav-links-hierarchy'],
-    links: [
-      {toHome: true},
-      {
-        path: ['localized.flashIndex'],
-        title: language.$('flashIndex.title'),
-      },
-      {
-        html: language.$('flashPage.nav.flash', {
-          flash: link.flash(flash, {class: 'current'}),
-        }),
-      },
-    ],
-
-    bottomRowContent: previousNextLinks && `(${previousNextLinks})`,
-
-    content: html.tag('div',
-      {
-        [html.onlyIfContent]: true,
-        class: 'nav-chronology-links',
-      },
-      generateChronologyLinks(flash, {
-        headingString: 'misc.chronology.heading.flash',
-        contribKey: 'contributorContribs',
-        getThings: (artist) => artist.flashesAsContributor,
-      })),
-  };
-}
-
-function generateSidebarForFlash(flash, {
-  html,
-  language,
-  link,
-  wikiData,
-}) {
-  // all hard-coded, sorry :(
-  // this doesnt have a super portable implementation/design...yet!!
-
-  const {flashActData} = wikiData;
-
-  const act6 = flashActData.findIndex((act) => act.name.startsWith('Act 6'));
-  const postCanon = flashActData.findIndex((act) =>
-    act.name.includes('Post Canon')
-  );
-  const outsideCanon =
-    postCanon +
-    flashActData
-      .slice(postCanon)
-      .findIndex((act) => !act.name.includes('Post Canon'));
-  const actIndex = flashActData.indexOf(flash.act);
-  const side =
-    actIndex < 0 ? 0 : actIndex < act6 ? 1 : actIndex <= outsideCanon ? 2 : 3;
-  const currentAct = flash && flash.act;
-
-  return {
-    content: [
-      html.tag('h1',
-        link.flashIndex('', {
-          text: language.$('flashIndex.title'),
-        })),
-
-      html.tag('dl',
-        flashActData
-          .filter(
-            (act) =>
-              act.name.startsWith('Act 1') ||
-              act.name.startsWith('Act 6 Act 1') ||
-              act.name.startsWith('Hiveswap') ||
-              // Sorry not sorry -Yiffy
-              (({index = flashActData.indexOf(act)} = {}) =>
-                index < act6
-                  ? side === 1
-                  : index < outsideCanon
-                  ? side === 2
-                  : true)())
-          .flatMap((act) => [
-            (act.name.startsWith('Act 1') &&
-              html.tag(
-                'dt',
-                {class: ['side', side === 1 && 'current']},
-                link.flash(act.flashes[0], {
-                  color: '#4ac925',
-                  text: `Side 1 (Acts 1-5)`,
-                })
-              )) ||
-              (act.name.startsWith('Act 6 Act 1') &&
-                html.tag(
-                  'dt',
-                  {class: ['side', side === 2 && 'current']},
-                  link.flash(act.flashes[0], {
-                    color: '#1076a2',
-                    text: `Side 2 (Acts 6-7)`,
-                  })
-                )) ||
-              (act.name.startsWith('Hiveswap Act 1') &&
-                html.tag(
-                  'dt',
-                  {class: ['side', side === 3 && 'current']},
-                  link.flash(act.flashes[0], {
-                    color: '#008282',
-                    text: `Outside Canon (Misc. Games)`,
-                  })
-                )),
-            (({index = flashActData.indexOf(act)} = {}) =>
-              index < act6
-                ? side === 1
-                : index < outsideCanon
-                ? side === 2
-                : true)() &&
-              html.tag(
-                'dt',
-                {class: act === currentAct && 'current'},
-                link.flash(act.flashes[0], {text: act.name})
-              ),
-            act === currentAct &&
-              html.tag('dd',
-                html.tag('ul',
-                  act.flashes
-                    .map(f =>
-                      html.tag('li',
-                        {class: f === flash && 'current'},
-                        link.flash(f))))),
-          ])),
-    ],
-  };
-}
-*/