mirror of
https://github.com/fly-apps/live_beats.git
synced 2024-11-25 01:10:59 +00:00
Minor cleanup to make navigating by region easier.
* Make `<main>` the part of the page that actually changes when the route updates, thus making navigation to page content easier. * Add labelled region for persistent audio player.
This commit is contained in:
parent
d35554ee0e
commit
5cf58b2b77
2 changed files with 7 additions and 7 deletions
|
@ -9,7 +9,7 @@ defmodule LiveBeatsWeb.PlayerLive do
|
|||
def render(assigns) do
|
||||
~H"""
|
||||
<!-- player -->
|
||||
<div id="audio-player" phx-hook="AudioPlayer" class="w-full" >
|
||||
<div id="audio-player" phx-hook="AudioPlayer" class="w-full" role="region" aria-label="Player" >
|
||||
<div phx-update="ignore">
|
||||
<audio></audio>
|
||||
</div>
|
||||
|
|
|
@ -143,13 +143,13 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<.live_component module={LiveBeatsWeb.LayoutComponent} id="layout" />
|
||||
|
||||
<%= if @current_user do %>
|
||||
<%= live_render(@socket, LiveBeatsWeb.PlayerLive, id: "player", session: %{}, sticky: true) %>
|
||||
<% end %>
|
||||
|
||||
<main class="flex-1 relative z-0 overflow-y-auto focus:outline-none">
|
||||
<.live_component module={LiveBeatsWeb.LayoutComponent} id="layout" />
|
||||
|
||||
<%= if @current_user do %>
|
||||
<%= live_render(@socket, LiveBeatsWeb.PlayerLive, id: "player", session: %{}, sticky: true) %>
|
||||
<% end %>
|
||||
|
||||
<.flash flash={@flash} kind={:info}/>
|
||||
<.flash flash={@flash} kind={:error}/>
|
||||
<.connection_status>
|
||||
|
|
Loading…
Reference in a new issue