blob: 5cea49a0266840f99bfa36ae46bb1c3d5085f33d (
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
|
// General purpose wiki data constructor, for properties like artistData,
// trackData, etc.
import {input, templateCompositeFrom} from '#composite';
import {validateWikiData} from '#validators';
import {inputThingClass} from '#composite/wiki-data';
// TODO: Kludge.
import Thing from '../../things/thing.js';
export default templateCompositeFrom({
annotation: `wikiData`,
compose: false,
inputs: {
class: inputThingClass(),
},
update: ({
[input.staticValue('class')]: thingClass,
}) => {
const referenceType = thingClass[Thing.referenceType];
return {validate: validateWikiData({referenceType})};
},
steps: () => [],
});
|