fix: artist concert notes; ics timing
This commit is contained in:
parent
82e2fa887a
commit
a26e34f2ef
5 changed files with 11 additions and 11 deletions
|
@ -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
4
package-lock.json
generated
|
@ -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",
|
||||
|
|
|
@ -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": {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
Reference in a new issue