The app is about operating something — playing a track and setting a level on it — but every screen looked like a form. One metaphor now does three jobs. - Reviewing: a vertical fader beside the text, so the two things you do at once stop being a screen apart. Native range input, so keyboard, focus and form submission are unchanged; on mobile it lies down and the ticks reverse - The reveal: everyone's scores as a row of channels. The silhouette of that row is the spread, which the stats page can only tell you as a number - Profiles: given versus received as two faders, the one comparison that says something about a person The player is now a transport: play/pause, a range input for seeking so arrow keys come free, and a stereo level meter driven by a real AnalyserNode. It is progressive enhancement — the page ships native audio controls and the script takes over, so no JS means the browser's own player. The meter is dark until audio actually plays and stops when it does; reduced motion skips it entirely. Also: hidden scores are hatched rather than blank, the nav carries the queue count, "Seuraava jonossa" keeps the loop going after a review, leaderboards gained level bars and a range bar where divisive is the point, durations read 3:54, both lists can get back to the start, and the admin invite table lists unused codes instead of silently truncating at 50. Slogan restored from the original app, three decades on.
147 lines
5.4 KiB
HTML
147 lines
5.4 KiB
HTML
{{define "content"}}
|
|
{{$s := .Data}}
|
|
<h1>{{$s.Title}}</h1>
|
|
<p class="songmeta">
|
|
<strong>{{$s.Artist}}</strong>
|
|
<span class="badge genre">{{$s.GenreLabel}}</span>
|
|
<span>{{$s.Length}}</span>
|
|
<span>lähetti {{$s.Submitter}} {{fidate $s.CreatedAt}}</span>
|
|
{{if $s.Own}}<span class="badge admin">oma kappale</span>{{end}}
|
|
</p>
|
|
|
|
{{if $s.CanEdit}}
|
|
<details class="editbox">
|
|
<summary>Muokkaa tietoja</summary>
|
|
<form method="post" action="/songs/{{$s.ID}}" class="stack">
|
|
<label>Nimi <input name="title" value="{{$s.Title}}" maxlength="100" required></label>
|
|
<label>Esittäjä <input name="artist" value="{{$s.Artist}}" maxlength="100" required></label>
|
|
<label>Genre
|
|
<select name="genre" required>
|
|
{{$current := $s.Genre}}
|
|
{{range $s.Genres}}
|
|
<option value="{{.Code}}" {{if eq .Code $current}}selected{{end}}>{{.Label}}</option>
|
|
{{end}}
|
|
</select>
|
|
</label>
|
|
<label>Esittely <textarea name="description" rows="4" maxlength="2000">{{$s.Description}}</textarea></label>
|
|
<button type="submit">Tallenna</button>
|
|
</form>
|
|
<form method="post" action="/songs/{{$s.ID}}/delete"
|
|
onsubmit="return confirm('Poistetaanko kappale lopullisesti?')">
|
|
<button type="submit" class="ghost danger">Poista kappale</button>
|
|
</form>
|
|
<p class="muted small">Muokkaus ja poisto ovat mahdollisia vain ennen ensimmäistä arvostelua.</p>
|
|
</details>
|
|
{{else if $s.Own}}
|
|
<p class="muted small">Kappaletta on jo arvosteltu, joten tietoja ei voi enää muuttaa.</p>
|
|
{{end}}
|
|
|
|
{{if $s.CanReview}}
|
|
<!-- The channel strip: the fader is the score, the panel beside it is everything else you do
|
|
while the track plays. -->
|
|
<form method="post" action="/songs/{{$s.ID}}/review" class="strip">
|
|
{{template "fader" 50}}
|
|
<div class="deck">
|
|
{{template "player" $s}}
|
|
{{with $s.Description}}<p class="intro">{{.}}</p>{{end}}
|
|
<label class="grow">Arvostelu
|
|
<textarea name="text" rows="8" maxlength="5000" required
|
|
placeholder="Mitä kuulit?"></textarea>
|
|
</label>
|
|
<div class="deckfoot">
|
|
<button type="submit">Tallenna arvostelu</button>
|
|
<span class="muted small">Muiden pisteet paljastuvat kun tallennat omasi. Voit muokata
|
|
tai poistaa arvostelusi 30 minuutin ajan.</span>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{{else}}
|
|
{{template "player" $s}}
|
|
{{with $s.Description}}<p class="intro">{{.}}</p>{{end}}
|
|
{{end}}
|
|
|
|
{{with $s.SourceURL}}<p class="muted small"><a href="{{.}}" rel="noreferrer">Kuuntele YouTubessa</a></p>{{end}}
|
|
|
|
{{if $s.ViewerReview}}
|
|
<section>
|
|
<h2>Oma arvostelusi</h2>
|
|
{{with $s.ViewerReview}}
|
|
{{if .CanEdit}}
|
|
<form method="post" action="/reviews/{{.ID}}" class="strip">
|
|
<input type="hidden" name="from" value="/songs/{{$s.ID}}">
|
|
{{template "fader" .Score}}
|
|
<div class="deck">
|
|
<label class="grow">Arvostelu
|
|
<textarea name="text" rows="6" maxlength="5000" required>{{.Text}}</textarea>
|
|
</label>
|
|
<div class="deckfoot">
|
|
<button type="submit">Päivitä</button>
|
|
<span class="muted small">Muokkausaika päättyy {{fidate .EditableUntil}}.</span>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<form method="post" action="/reviews/{{.ID}}/delete"
|
|
onsubmit="return confirm('Poistetaanko arvostelu?')">
|
|
<input type="hidden" name="from" value="/songs/{{$s.ID}}">
|
|
<button type="submit" class="ghost danger">Poista arvostelu</button>
|
|
</form>
|
|
{{else}}
|
|
<p class="score">{{.Score}}</p>
|
|
<p class="reviewtext">{{.Text}}</p>
|
|
<p class="muted small">Muokkausaika on päättynyt.</p>
|
|
{{end}}
|
|
{{end}}
|
|
</section>
|
|
{{end}}
|
|
|
|
<section>
|
|
<h2>Arvostelut{{if $s.ReviewCount}} ({{$s.ReviewCount}}){{end}}</h2>
|
|
|
|
{{if $s.Revealed}}
|
|
{{if $s.Reviews}}
|
|
<!-- One channel per reviewer: the spread across the row is what "divisive" looks like. -->
|
|
<div class="channels">
|
|
{{range $i, $r := $s.Reviews}}
|
|
<div class="chan{{if $r.Own}} own{{end}}" style="--v: {{$r.Score}}; --i: {{$i}}">
|
|
<span class="chan-track"><span class="chan-cap"></span></span>
|
|
<span class="chan-score">{{$r.Score}}</span>
|
|
<span class="chan-who" title="{{$r.Reviewer}}">{{$r.Initials}}</span>
|
|
</div>
|
|
{{end}}
|
|
{{if $s.Average}}
|
|
<div class="chan avg" style="--v: {{score $s.Average}}">
|
|
<span class="chan-track"><span class="chan-cap"></span></span>
|
|
<span class="chan-score">{{score $s.Average}}</span>
|
|
<span class="chan-who">ka.</span>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
|
|
{{range $s.Reviews}}
|
|
<article class="review{{if .Own}} own{{end}}">
|
|
<header>
|
|
<span class="avatar small">{{.Initials}}</span>
|
|
<span class="who">{{.Reviewer}}</span>
|
|
<span class="score">{{.Score}}</span>
|
|
<span class="meta">{{fidate .CreatedAt}}</span>
|
|
</header>
|
|
<p>{{.Text}}</p>
|
|
</article>
|
|
{{end}}
|
|
{{else}}
|
|
<p class="muted">Kukaan ei ole vielä arvostellut tätä kappaletta.</p>
|
|
{{end}}
|
|
{{else}}
|
|
<p class="sealed-note">
|
|
<span class="sealed" aria-hidden="true"></span>
|
|
Muiden pisteet ja arvostelut paljastuvat kun kirjoitat omasi.
|
|
{{if $s.ReviewCount}}Arvosteluja on {{$s.ReviewCount}}.{{end}}
|
|
</p>
|
|
{{end}}
|
|
</section>
|
|
|
|
{{if $s.NextInQueue}}
|
|
<p class="nextup"><a href="/songs/{{$s.NextInQueue}}">Seuraava jonossa →</a></p>
|
|
{{end}}
|
|
{{end}}
|