mirror of
https://github.com/fly-apps/live_beats.git
synced 2024-11-27 18:21:02 +00:00
Add empty state for new profile
This commit is contained in:
parent
66699cdc68
commit
dbf5cc32f3
1 changed files with 15 additions and 1 deletions
|
@ -109,7 +109,21 @@ defmodule LiveBeatsWeb.ProfileLive do
|
||||||
</.modal>
|
</.modal>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div :if={@songs_count == 0} class="my-2 text-center">
|
||||||
|
<.icon name={:music_note} class="mx-auto h-12 w-12 text-gray-400" />
|
||||||
|
<h3 class="mt-2 text-sm font-semibold text-gray-900">No music</h3>
|
||||||
|
<p class="mt-1 text-sm text-gray-500">Get started by uploading a new playlist</p>
|
||||||
|
<div class="mt-6">
|
||||||
|
<.button
|
||||||
|
primary
|
||||||
|
phx-click={show_modal("upload") |> JS.patch(profile_upload_path(@current_user))}
|
||||||
|
>
|
||||||
|
<.icon name={:upload} />
|
||||||
|
<span class="ml-2">Upload songs</span>
|
||||||
|
</.button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div :if={@songs_count > 0}>
|
||||||
<.table
|
<.table
|
||||||
id="songs"
|
id="songs"
|
||||||
rows={@streams.songs}
|
rows={@streams.songs}
|
||||||
|
|
Loading…
Reference in a new issue