chore: surface concert notes on artist pages

This commit is contained in:
Cory Dransfeldt 2024-08-06 11:02:53 -07:00
parent 2d56f5a889
commit 07c7bdec24
No known key found for this signature in database
5 changed files with 26 additions and 11 deletions

4
package-lock.json generated
View file

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

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "21.4.11", "version": "21.4.12",
"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": {

View file

@ -101,7 +101,6 @@ export default async function () {
} }
const selectFields = ` const selectFields = `
id,
listened_at, listened_at,
track_name, track_name,
artist_name, artist_name,

View file

@ -70,7 +70,23 @@ schema: artist
</p> </p>
<ul> <ul>
{% for concert in artist.concerts %} {% for concert in artist.concerts %}
<li>On <strong class="highlight-text">{{ concert.date | date: "%B %e, %Y" }}</strong> at <a href="https://www.openstreetmap.org/?mlat={{ concert.venue_latitude }}&mlon={{ concert.venue_longitude }}#map=18/{{ concert.venue_latitude }}/{{ concert.venue_longitude }}">{{ concert.venue | formatVenue }}</a></li> {%- capture venue -%}
{% if concert.venue %}
{% if concert.venue_latitude and concert.venue_longitude %}
<a href="https://www.openstreetmap.org/?mlat={{ concert.venue_latitude }}&mlon={{ concert.venue_longitude }}#map=18/{{ concert.venue_latitude }}/{{ concert.venue_longitude }}">{{ concert.venue | formatVenue }}</a>
{% else %}
{{ concert.venue | formatVenue }}
{% endif %}
{% endif %}
{%- endcapture -%}
<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 %}
{% render "partials/blocks/modal.liquid", label:"Concert info", icon:"info-circle", content:notes, id:concert.id %}
{%- endif -%}
</li>
{% endfor %} {% endfor %}
</ul> </ul>
<hr /> <hr />

View file

@ -7,13 +7,13 @@ pagination:
size: 30 size: 30
permalink: "/music/concerts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html" permalink: "/music/concerts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
--- ---
{% if pagination.pageNumber == 0 %} {%- if pagination.pageNumber == 0 -%}
<h2 class="page-header">Concerts</h2> <h2 class="page-header">Concerts</h2>
<p>These are concerts I've attended (not all of them — just the ones I could remember or glean from emails, photo metadata et al). I've been to at least <strong class="highlight-text">{{ concerts | size }}</strong> shows. <a href="/music">You can also take a look at the music I've been listening to lately</a>.</p> <p>These are concerts I've attended (not all of them — just the ones I could remember or glean from emails, photo metadata et al). I've been to at least <strong class="highlight-text">{{ concerts | size }}</strong> shows. <a href="/music">You can also take a look at the music I've been listening to lately</a>.</p>
<hr /> <hr />
{% endif %} {%- endif -%}
<ul class="concert-list"> <ul class="concert-list">
{% for concert in pagination.items %} {%- for concert in pagination.items -%}
{%- capture artistName -%} {%- capture artistName -%}
{% if concert.artistNameString %} {% if concert.artistNameString %}
{{ concert.artistNameString }} {{ concert.artistNameString }}
@ -33,11 +33,11 @@ permalink: "/music/concerts/{% if pagination.pageNumber > 0 %}{{ pagination.page
<li> <li>
{{ artistName }} on <strong class="highlight-text">{{ concert.date | date: "%B %e, %Y" }}</strong> {{ artistName }} on <strong class="highlight-text">{{ concert.date | date: "%B %e, %Y" }}</strong>
{% if venue %} at {{ venue }}{% endif %} {% if venue %} at {{ venue }}{% endif %}
{% if concert.notes %} {%- if concert.notes -%}
{% assign notes = concert.notes | prepend: "### Notes\n" | markdown %} {% assign notes = concert.notes | prepend: "### Notes\n" | markdown %}
{% render "partials/blocks/modal.liquid", label:"Concert info", icon:"info-circle", content:notes, id:concert.id %} {% render "partials/blocks/modal.liquid", label:"Concert info", icon:"info-circle", content:notes, id:concert.id %}
{% endif %} {%- endif -%}
</li> </li>
{% endfor %} {%- endfor -%}
</ul> </ul>
{% render "partials/nav/paginator.liquid", pagination:pagination %} {% render "partials/nav/paginator.liquid", pagination:pagination %}