82 lines
2.1 KiB
HTML
82 lines
2.1 KiB
HTML
{# #}
|
|
<!DOCTYPE html>
|
|
|
|
<div class="nowplaying">
|
|
<div class="current">
|
|
{% if let Some(song) = song %}
|
|
<div class="albumart">
|
|
<a href="/art?path={{ song.file|urlencode }}" target="_blank">
|
|
<img
|
|
src="/art?path={{ song.file|urlencode }}"
|
|
onerror="this.style.opacity = 0"
|
|
alt="Album art"
|
|
title="Album art"
|
|
>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="metadata">
|
|
{% if let Some(name) = name %}
|
|
<div class="song__name" title="Song name">{{ name }}</div>
|
|
{% endif %}
|
|
{% if let Some(artist) = song.artist %}
|
|
<div class="song__artist" title="Artist">{{ artist }}</div>
|
|
{% endif %}
|
|
</div>
|
|
{% else %}
|
|
<div class="metadata idle">
|
|
Nothing playing right now
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="controls" hx-swap="none" hx-trigger="click,keyUp[key=='Enter']">
|
|
<button
|
|
hx-post="/previous"
|
|
class="control material-symbols-outlined" role="button" title="Previous track"
|
|
>skip_previous</button>
|
|
|
|
{% if state == mpdrs::State::Play %}
|
|
<button
|
|
hx-post="/pause"
|
|
class="control material-symbols-outlined" role="button" title="Pause"
|
|
>pause</button>
|
|
{% else %}
|
|
<button
|
|
hx-post="/play"
|
|
class="control material-symbols-outlined" role="button" title="Play"
|
|
>play_arrow</button>
|
|
{% endif %}
|
|
|
|
<button
|
|
hx-post="/next"
|
|
class="control material-symbols-outlined" role="button" title="Next track"
|
|
>skip_next</button>
|
|
</div>
|
|
|
|
<div class="progress" style="width: {{ elapsed / duration * 100.0 }}%"></div>
|
|
</div>
|
|
|
|
<script>
|
|
{% if let Some(name) = name %}
|
|
document.title = "{{ name }} - Empede";
|
|
{% else %}
|
|
document.title = "Empede";
|
|
{% endif %}
|
|
|
|
{% if state == mpdrs::State::Play %}
|
|
progressBar = document.querySelector(".nowplaying .progress");
|
|
elapsed = {{ elapsed }};
|
|
duration = {{ duration }};
|
|
|
|
if (progressInterval) {
|
|
window.clearInterval(progressInterval);
|
|
}
|
|
|
|
progressInterval = window.setInterval(() => {
|
|
elapsed += 1.0;
|
|
let progress = Math.min(elapsed / duration, 1.0);
|
|
progressBar.style.width = `${progress * 100}%`;
|
|
}, 1000);
|
|
{% endif %}
|
|
</script> |