fix: calendar title
This commit is contained in:
parent
6005b8ee9a
commit
de566a3205
3 changed files with 7 additions and 6 deletions
|
@ -164,8 +164,9 @@ export const processContent = (collection) => {
|
||||||
export const albumReleasesCalendar = (collection) => {
|
export const albumReleasesCalendar = (collection) => {
|
||||||
const collectionData = collection.getAll()[0]
|
const collectionData = collection.getAll()[0]
|
||||||
const { data } = collectionData
|
const { data } = collectionData
|
||||||
const { albumReleases: { all } } = data;
|
const { albumReleases: { all } } = data
|
||||||
if (!all || all.length === 0) return ''
|
if (!all || all.length === 0) return ''
|
||||||
|
|
||||||
const events = all.map(album => {
|
const events = all.map(album => {
|
||||||
const date = DateTime.fromFormat(album.date, 'MMMM d, yyyy')
|
const date = DateTime.fromFormat(album.date, 'MMMM d, yyyy')
|
||||||
if (!date.isValid) return null
|
if (!date.isValid) return null
|
||||||
|
@ -182,7 +183,7 @@ export const albumReleasesCalendar = (collection) => {
|
||||||
}
|
}
|
||||||
}).filter(event => event !== null)
|
}).filter(event => event !== null)
|
||||||
|
|
||||||
const { error, value } = ics.createEvents(events)
|
const { error, value } = ics.createEvents(events, { calName: 'Album releases calendar / coryd.dev' })
|
||||||
|
|
||||||
if (error) {
|
if (error) {
|
||||||
console.error('Error creating events: ', error)
|
console.error('Error creating events: ', error)
|
||||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.4.3",
|
"version": "24.4.4",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.4.3",
|
"version": "24.4.4",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.5.0",
|
"@cdransf/api-text": "^1.5.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.4.3",
|
"version": "24.4.4",
|
||||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -56,4 +56,4 @@
|
||||||
"slugify": "^1.6.6",
|
"slugify": "^1.6.6",
|
||||||
"terser": "^5.31.6"
|
"terser": "^5.31.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in a new issue