Hide recent media on now page if requests fail

This commit is contained in:
2024-05-24 20:30:42 +10:00
parent f4bbeea825
commit b894fe93fa
3 changed files with 22 additions and 18 deletions

View File

@@ -1,10 +1,12 @@
div class="grid grid-cols-4 gap-2"
- recently_played_music.each do |album|
a href="#{album[:href]}"
div
img class="m-0 rounded transition-transform ease-out hover:scale-105" src="#{album[:image]}"
span class="inline-block text-sm"
= album[:name]
br
span class="inline-block text-sm font-bold"
= album[:artist]
- if recently_played_music.count > 0
h3 🎧 Recently listened to
div class="grid grid-cols-4 gap-2"
- recently_played_music.each do |album|
a href="#{album[:href]}"
div
img class="m-0 rounded transition-transform ease-out hover:scale-105" src="#{album[:image]}"
span class="inline-block text-sm"
= album[:name]
br
span class="inline-block text-sm font-bold"
= album[:artist]

View File

@@ -1,8 +1,11 @@
table
- recently_played_games.each do |game|
tr
td
= game[:name]
- if recently_played_games.count > 0
h3 👾 Recently played on Steam
td
= "(#{game[:playtime_forever]}hrs total)"
table
- recently_played_games.each do |game|
tr
td
= game[:name]
td
= "(#{game[:playtime_forever]}hrs total)"

View File

@@ -7,7 +7,6 @@ module Main
include Deps["queries.posts.recently_played"]
expose :recently_played_music do |recently_played_result|
# raise recently_played_result["data"].inspect
JSON.parse(recently_played_result)["data"].reject { |a| a["type"] != "albums" }.map do |album|
{
artist: album["attributes"]["artistName"],