« get me outta code hell

generateFlashCoverArtwork.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/generateFlashCoverArtwork.js
blob: 374fa3f8aa186b1a24d66cf16f8cf63c615d1e6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export default {
  contentDependencies: ['generateCoverArtwork'],

  relations: (relation) =>
    ({coverArtwork: relation('generateCoverArtwork')}),

  data: (flash) =>
    ({path: ['media.flashArt', flash.directory, flash.coverArtFileExtension]}),

  generate: (data, relations) =>
    relations.coverArtwork.slot('path', data.path),
};