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
|
import {inspect} from 'node:util';
import {colors} from '#cli';
import {input, V} from '#composite';
import Thing from '#thing';
import {is} from '#validators';
import {contentString, name, referenceList, soupyFind, thing}
from '#composite/wiki-properties';
export class Series extends Thing {
static [Thing.wikiData] = 'seriesData';
static [Thing.getPropertyDescriptors] = ({Album, Group}) => ({
// Update & expose
name: name(V('Unnamed Series')),
showAlbumArtists: {
flags: {update: true, expose: true},
update: {
validate:
is('all', 'differing', 'none'),
},
},
description: contentString(),
group: thing(V(Group)),
albums: referenceList({
class: input.value(Album),
find: soupyFind.input('album'),
}),
// Update only
find: soupyFind(),
});
static [Thing.yamlDocumentSpec] = {
fields: {
'Name': {property: 'name'},
'Description': {property: 'description'},
'Show Album Artists': {property: 'showAlbumArtists'},
'Albums': {property: 'albums'},
},
};
[inspect.custom](depth, options, inspect) {
const parts = [];
parts.push(Thing.prototype[inspect.custom].apply(this));
if (depth >= 0) showGroup: {
let group = null;
try {
group = this.group;
} catch {
break showGroup;
}
const groupName = group.name;
const groupIndex = group.serieses.indexOf(this);
const num =
(groupIndex === -1
? 'indeterminate position'
: `#${groupIndex + 1}`);
parts.push(` (${colors.yellow(num)} in ${colors.green(`"${groupName}"`)})`);
}
return parts.join('');
}
}
|