From 64b4a5e6355872c49429f1d19c3403277d032b6c Mon Sep 17 00:00:00 2001 From: "(quasar) nebula" Date: Sat, 24 Jun 2023 17:55:00 -0300 Subject: content: linkContribution: take standard {who, what} object This is what's used for all contributions anyway, so no need to have every call to linkContribution manually destructure whatever contribution is being provided. --- src/content/dependencies/linkContribution.js | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'src/content/dependencies/linkContribution.js') diff --git a/src/content/dependencies/linkContribution.js b/src/content/dependencies/linkContribution.js index c9b514fe..f4c05388 100644 --- a/src/content/dependencies/linkContribution.js +++ b/src/content/dependencies/linkContribution.js @@ -11,14 +11,15 @@ export default { 'language', ], - relations(relation, artist) { + relations(relation, contribution) { const relations = {}; - relations.artistLink = relation('linkArtist', artist); + relations.artistLink = + relation('linkArtist', contribution.who); - if (!empty(artist.urls)) { + if (!empty(contribution.who.urls)) { relations.artistIcons = - artist.urls + contribution.who.urls .slice(0, 4) .map(url => relation('linkExternalAsIcon', url)); } @@ -26,8 +27,10 @@ export default { return relations; }, - data(artist, contribution) { - return {contribution}; + data(contribution) { + return { + what: contribution.what, + }; }, slots: { @@ -36,7 +39,7 @@ export default { }, generate(data, relations, slots, {html, language}) { - const hasContributionPart = !!(slots.showContribution && data.contribution); + const hasContributionPart = !!(slots.showContribution && data.what); const hasExternalPart = !!(slots.showIcons && relations.artistIcons); const externalLinks = hasExternalPart && @@ -49,7 +52,7 @@ export default { if (hasContributionPart) { parts.push('withContribution'); - options.contrib = data.contribution; + options.contrib = data.what; } if (hasExternalPart) { -- cgit 1.3.0-6-gf8a5