mirror of
https://github.com/fly-apps/live_beats.git
synced 2024-11-22 08:01:00 +00:00
Merge pull request #18 from ndarilek/hide-empty-metadata
Hide title/artist metadata when empty.
This commit is contained in:
commit
a0f3b76f61
1 changed files with 7 additions and 5 deletions
|
@ -15,16 +15,18 @@ defmodule LiveBeatsWeb.PlayerLive do
|
||||||
</div>
|
</div>
|
||||||
<div class="bg-white dark:bg-gray-800 p-4">
|
<div class="bg-white dark:bg-gray-800 p-4">
|
||||||
<div class="flex items-center space-x-3.5 sm:space-x-5 lg:space-x-3.5 xl:space-x-5">
|
<div class="flex items-center space-x-3.5 sm:space-x-5 lg:space-x-3.5 xl:space-x-5">
|
||||||
|
<%= if @song do %>
|
||||||
<div class="pr-5">
|
<div class="pr-5">
|
||||||
<div class="min-w-0 max-w-xs flex-col space-y-0.5">
|
<div class="min-w-0 max-w-xs flex-col space-y-0.5">
|
||||||
<h2 class="text-black dark:text-white text-sm sm:text-sm lg:text-sm xl:text-sm font-semibold truncate">
|
<h2 class="text-black dark:text-white text-sm sm:text-sm lg:text-sm xl:text-sm font-semibold truncate">
|
||||||
<%= if @song, do: @song.title, else: raw(" ") %>
|
<%= @song.title %>
|
||||||
</h2>
|
</h2>
|
||||||
<p class="text-gray-500 dark:text-gray-400 text-sm sm:text-sm lg:text-sm xl:text-sm font-medium">
|
<p class="text-gray-500 dark:text-gray-400 text-sm sm:text-sm lg:text-sm xl:text-sm font-medium">
|
||||||
<%= if @song, do: @song.artist, else: raw(" ") %>
|
<%= @song.artist %>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
<.progress_bar id="player-progress" />
|
<.progress_bar id="player-progress" />
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue