diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-08-15 14:13:46 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-08-15 14:13:46 -0300 |
commit | 53794015af7ca4022b93e6536abb3dcee5ba9ece (patch) | |
tree | dcacd159ebefd890c802a84b9b7442edc20e0d26 /src/content | |
parent | ef942bf281194c318dc306cb56f2058b9a600c7a (diff) |
content: gAIP{Chunk,ChunkItem}: trimAnnotation / trimAnnotations
Diffstat (limited to 'src/content')
-rw-r--r-- | src/content/dependencies/generateArtistInfoPageChunk.js | 10 | ||||
-rw-r--r-- | src/content/dependencies/generateArtistInfoPageChunkItem.js | 19 |
2 files changed, 22 insertions, 7 deletions
diff --git a/src/content/dependencies/generateArtistInfoPageChunk.js b/src/content/dependencies/generateArtistInfoPageChunk.js index c16d50f3..820c01e0 100644 --- a/src/content/dependencies/generateArtistInfoPageChunk.js +++ b/src/content/dependencies/generateArtistInfoPageChunk.js @@ -29,6 +29,11 @@ export default { duration: {validate: v => v.isDuration}, durationApproximate: {type: 'boolean'}, + + trimAnnotations: { + type: 'boolean', + default: false, + }, }, generate(slots, {html, language}) { @@ -102,7 +107,10 @@ export default { html.tag('dt', accentedLink), html.tag('dd', html.tag('ul', - slots.items)), + slots.items + .map(item => item.slots({ + trimAnnotation: slots.trimAnnotations, + })))), ]); }, }; diff --git a/src/content/dependencies/generateArtistInfoPageChunkItem.js b/src/content/dependencies/generateArtistInfoPageChunkItem.js index 9d406c67..0ec7b1ec 100644 --- a/src/content/dependencies/generateArtistInfoPageChunkItem.js +++ b/src/content/dependencies/generateArtistInfoPageChunkItem.js @@ -9,16 +9,18 @@ export default { mutable: false, }, - annotation: { - type: 'html', - mutable: false, - }, + annotation: {type: 'string'}, otherArtistLinks: { validate: v => v.strictArrayOf(v.isHTML), }, rerelease: {type: 'boolean'}, + + trimAnnotation: { + type: 'boolean', + default: false, + }, }, generate: (slots, {html, language}) => @@ -43,10 +45,15 @@ export default { language.formatConjunctionList(slots.otherArtistLinks); } - if (!html.isBlank(slots.annotation)) { + const annotation = + (slots.trimAnnotation + ? slots.annotation?.replace(/^edits for wiki(: )?/, '') + : slots.annotation); + + if (annotation) { anyAccent = true; workingCapsule += '.withAnnotation'; - workingOptions.annotation = slots.annotation; + workingOptions.annotation = annotation; } if (anyAccent) { |