« get me outta code hell

listAlbumsByDateAdded.js « dependencies « content « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/content/dependencies/listAlbumsByDateAdded.js
blob: d462ad465d9fc1582563934db62b248fe432c186 (plain)
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
import {sortAlphabetically} from '#sort';
import {chunkByProperties} from '#sugar';

export default {
  contentDependencies: ['generateListingPage', 'linkAlbum'],
  extraDependencies: ['language', 'wikiData'],

  sprawl({albumData}) {
    return {albumData};
  },

  query({albumData}, spec) {
    return {
      spec,

      chunks:
        chunkByProperties(
          sortAlphabetically(albumData.filter(a => a.dateAddedToWiki))
            .sort((a, b) => {
              if (a.dateAddedToWiki < b.dateAddedToWiki) return -1;
              if (a.dateAddedToWiki > b.dateAddedToWiki) return 1;
            }),
          ['dateAddedToWiki']),
    };
  },

  relations(relation, query) {
    return {
      page: relation('generateListingPage', query.spec),

      albumLinks:
        query.chunks.map(({chunk}) =>
          chunk.map(album => relation('linkAlbum', album))),
    };
  },

  data(query) {
    return {
      dates:
        query.chunks.map(({dateAddedToWiki}) => dateAddedToWiki),
    };
  },

  generate(data, relations, {language}) {
    return relations.page.slots({
      type: 'chunks',

      chunkTitles:
        data.dates.map(date => ({
          date: language.formatDate(date),
        })),

      chunkRows:
        relations.albumLinks.map(albumLinks =>
          albumLinks.map(link => ({
            album: link,
          }))),
    });
  },
};