| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
 | import {sortAlbumsTracksChronologically} from '#sort';
import {chunkByProperties, stitchArrays} from '#sugar';
export default {
  sprawl: ({trackData}) => ({trackData}),
  query({trackData}, spec) {
    const query = {spec};
    query.tracks =
      sortAlbumsTracksChronologically(
        trackData.filter(track => track.date));
    query.chunks =
      chunkByProperties(query.tracks, ['album', 'date']);
    return query;
  },
  relations: (relation, query) => ({
    page:
      relation('generateListingPage', query.spec),
    albumLinks:
      query.chunks
        .map(({album}) => relation('linkAlbum', album)),
    trackLinks:
      query.chunks
        .map(({chunk}) => chunk
          .map(track => relation('linkTrack', track))),
  }),
  data: (query) => ({
    dates:
      query.chunks
        .map(({date}) => date),
    rereleases:
      query.chunks
        .map(({chunk}) => chunk
          .map(track =>
            // Check if the index of this track...
            query.tracks.indexOf(track) >
            // ...is greater than the *smallest* index
            // of any of this track's *other* releases.
            // (It won't be greater than its own index,
            // so we can use otherReleases here, rather
            // than allReleases.)
            Math.min(...
              track.otherReleases.map(t => query.tracks.indexOf(t))))),
  }),
  generate(data, relations, {language}) {
    return relations.page.slots({
      type: 'chunks',
      chunkTitles:
        stitchArrays({
          albumLink: relations.albumLinks,
          date: data.dates,
        }).map(({albumLink, date}) => ({
            album: albumLink,
            date: language.formatDate(date),
          })),
      chunkRows:
        stitchArrays({
          trackLinks: relations.trackLinks,
          rereleases: data.rereleases,
        }).map(({trackLinks, rereleases}) =>
            stitchArrays({
              trackLink: trackLinks,
              rerelease: rereleases,
            }).map(({trackLink, rerelease}) =>
                (rerelease
                  ? {stringsKey: 'rerelease', track: trackLink}
                  : {track: trackLink}))),
      chunkRowAttributes:
        data.rereleases.map(rereleases =>
          rereleases.map(rerelease =>
            (rerelease
              ? {class: 'rerelease-line'}
              : null))),
    });
  },
};
 |