diff --git a/src/_data/weeklyArtistChart.js b/src/_data/weeklyArtistChart.js new file mode 100644 index 00000000..aea1eda6 --- /dev/null +++ b/src/_data/weeklyArtistChart.js @@ -0,0 +1,19 @@ +const chartData = require('./json/weekly-artist-charts.json') + +module.exports = async function () { + const artists = chartData['weeklyartistchart']['artist'].splice(0, 8) + const date = parseInt(chartData['weeklyartistchart']['@attr']['to']) * 1000 + let content = 'My top artists for the week:\n' + artists.forEach((artist) => { + content += `#${artist['@attr']['rank']} ${artist['name']}: ${artist['playcount']} plays\n` + }) + content += '#Music #LastFM' + return [ + { + title: content, + url: 'https://last.fm/user/coryd_', + date: new Date(date), + description: 'My top artists for the week as a feed item.', + }, + ] +} diff --git a/src/feeds/weekly-artist-chart.liquid b/src/feeds/weekly-artist-chart.liquid new file mode 100644 index 00000000..3d7a631f --- /dev/null +++ b/src/feeds/weekly-artist-chart.liquid @@ -0,0 +1,13 @@ +--- +layout: null +eleventyExcludeFromCollections: true +permalink: /feeds/weekly-artist-chart +--- +{% render "partials/feeds/rss.liquid" + permalink:"/feeds/weekly-artist-chart" + title:"Weekly artist chart • Cory Dransfeldt" + description:"The top 8 artists I've listened to this week." + data:weeklyArtistChart + updated:weeklyArtistChart[0].date + site:site +%} \ No newline at end of file