« get me outta code hell

generateAlbumCoverArtwork.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/generateAlbumCoverArtwork.js
blob: 9900303417e666075c8368e9be78ee63edbd0e9c (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
export default {
  contentDependencies: ['generateCoverArtwork'],
  extraDependencies: ['language'],

  relations: (relation, album) => ({
    coverArtwork:
      relation('generateCoverArtwork', album.artTags, album.coverArtistContribs),
  }),

  data: (album) => ({
    path:
      ['media.albumCover', album.directory, album.coverArtFileExtension],

    color:
      album.color,

    dimensions:
      album.coverArtDimensions,
  }),

  generate: (data, relations, {language}) =>
    relations.coverArtwork.slots({
      path: data.path,
      color: data.color,
      dimensions: data.dimensions,
      alt: language.$('misc.alt.albumCover'),
    }),
};