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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
import {input} from '#composite';
import find from '#find';
import Thing from '#thing';
import {is, isDate} from '#validators';
import {parseDate} from '#yaml';
import {contentString, referenceList, simpleDate, soupyFind, thing}
from '#composite/wiki-properties';
import {
exposeConstant,
exposeDependencyOrContinue,
exposeUpdateValueOrContinue,
withResultOfAvailabilityCheck,
} from '#composite/control-flow';
import {withWebArchiveDate} from '#composite/things/commentary-entry';
export class ContentEntry extends Thing {
static [Thing.getPropertyDescriptors] = ({Artist}) => ({
// Update & expose
thing: thing(),
artists: referenceList({
class: input.value(Artist),
find: soupyFind.input('artist'),
}),
artistText: contentString(),
annotation: contentString(),
dateKind: {
flags: {update: true, expose: true},
update: {
validate: is(...[
'sometime',
'throughout',
'around',
]),
},
},
accessKind: [
exposeUpdateValueOrContinue({
validate: input.value(
is(...[
'captured',
'accessed',
])),
}),
withWebArchiveDate(),
withResultOfAvailabilityCheck({
from: '#webArchiveDate',
}),
{
dependencies: ['#availability'],
compute: (continuation, {['#availability']: availability}) =>
(availability
? continuation.exit('captured')
: continuation()),
},
exposeConstant({
value: input.value(null),
}),
],
date: simpleDate(),
secondDate: simpleDate(),
accessDate: [
exposeUpdateValueOrContinue({
validate: input.value(isDate),
}),
withWebArchiveDate(),
exposeDependencyOrContinue({
dependency: '#webArchiveDate',
}),
exposeConstant({
value: input.value(null),
}),
],
body: contentString(),
// Update only
find: soupyFind(),
});
static [Thing.yamlDocumentSpec] = {
fields: {
'Artists': {property: 'artists'},
'Artist Text': {property: 'artistText'},
'Annotation': {property: 'annotation'},
'Date Kind': {property: 'dateKind'},
'Access Kind': {property: 'accessKind'},
'Date': {property: 'date', transform: parseDate},
'Second Date': {property: 'secondDate', transform: parseDate},
'Access Date': {property: 'accessDate', transform: parseDate},
'Body': {property: 'body'},
},
};
}
export class CommentaryEntry extends ContentEntry {}
export class LyricsEntry extends ContentEntry {}
export class CreditingSourcesEntry extends ContentEntry {}
|