fix: artist concert notes; ics timing

This commit is contained in:
Cory Dransfeldt 2024-08-06 14:09:47 -07:00
parent 82e2fa887a
commit a26e34f2ef
No known key found for this signature in database
5 changed files with 11 additions and 11 deletions

View file

@ -171,14 +171,15 @@ export const albumReleasesCalendar = (collection) => {
const events = albumReleases.map(album => {
const date = DateTime.fromFormat(album.date, 'MMMM d, yyyy')
if (!date.isValid) return null
return {
start: [
date.year,
date.month,
date.day,
0, 0
date.day
],
startInputType: 'local',
startOutputType: 'local',
duration: { days: 1 },
title: `Release: ${album.artist} / ${album.title}`,
description: `Check out this new album release: ${album.url}`,
url: album.url,
@ -189,12 +190,12 @@ export const albumReleasesCalendar = (collection) => {
const { error, value } = ics.createEvents(events)
if (error) {
console.error('Error creating ICS events:', error)
console.error('Error creating events:', error)
events.forEach((event, index) => {
console.error(`Event ${index}:`, event)
})
return ''
}
return value
return value;
}

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "coryd.dev",
"version": "21.5.1",
"version": "21.5.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "21.5.1",
"version": "21.5.2",
"license": "MIT",
"dependencies": {
"@cdransf/api-text": "^1.4.0",

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "21.5.1",
"version": "21.5.2",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"scripts": {

View file

@ -1,6 +1,5 @@
import { createClient } from '@supabase/supabase-js'
import { DateTime } from 'luxon'
import { sanitizeMediaString, parseCountryField } from '../../config/utilities/index.js'
const SUPABASE_URL = process.env.SUPABASE_URL
const SUPABASE_KEY = process.env.SUPABASE_KEY

View file

@ -82,8 +82,8 @@ schema: artist
<li>
On <strong class="highlight-text">{{ concert.date | date: "%B %e, %Y" }}</strong>
{% if venue %} at {{ venue }}{% endif %}
{%- if concert.concert_notes -%}
{% assign notes = concert.concert_notes | prepend: "### Notes\n" | markdown %}
{%- if concert.notes -%}
{% assign notes = concert.notes | prepend: "### Notes\n" | markdown %}
{% render "partials/blocks/modal.liquid", label:"Concert info", icon:"info-circle", content:notes, id:concert.id %}
{%- endif -%}
</li>