blob: 03b840d432cedd6e6a0dfad5fd2b91d2cfd43671 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Gets the track's album. This will early exit if albumData is missing.
// If there's no album whose list of tracks includes this track, the output
// dependency will be null.
import {input, templateCompositeFrom} from '#composite';
import {withUniqueReferencingThing} from '#composite/wiki-data';
export default templateCompositeFrom({
annotation: `withAlbum`,
outputs: ['#album'],
steps: () => [
withUniqueReferencingThing({
data: 'albumData',
list: input.value('tracks'),
}).outputs({
['#uniqueReferencingThing']: '#album',
}),
],
});
|