« get me outta code hell

art-tag.js « things « data « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/things/art-tag.js
blob: 75fb0f7b0856faf365312a55fc045fa7f8cce49d (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
import Thing from './thing.js';

import {
  sortAlbumsTracksChronologically,
} from '../../util/wiki-data.js';

export class ArtTag extends Thing {
  static [Thing.referenceType] = 'tag';

  static [Thing.getPropertyDescriptors] = ({
    Album,
    Track,
  }) => ({
    // Update & expose

    name: Thing.common.name('Unnamed Art Tag'),
    directory: Thing.common.directory(),
    color: Thing.common.color(),
    isContentWarning: Thing.common.flag(false),

    nameShort: {
      flags: {update: true, expose: true},

      expose: {
        dependencies: ['name'],
        transform: (value, {name}) =>
          value ?? name.replace(/ \(.*?\)$/, ''),
      },
    },

    // Update only

    albumData: Thing.common.wikiData(Album),
    trackData: Thing.common.wikiData(Track),

    // Expose only

    taggedInThings: {
      flags: {expose: true},

      expose: {
        dependencies: ['albumData', 'trackData'],
        compute: ({albumData, trackData, [ArtTag.instance]: artTag}) =>
          sortAlbumsTracksChronologically(
            [...albumData, ...trackData]
              .filter(({artTags}) => artTags.includes(artTag)),
            {getDate: o => o.coverArtDate}),
      },
    },
  });
}