-
-
- {rows.map((r) => (
- -
- {r.artist} — {r.album} · {r.job?.state ?? r.status}
- {r.job ? ` (${r.job.currentStage})` : ""}
-
- ))}
-
+
+ {active.length === 0 ? (
+
The press is quiet. Queue a release above, or send one over from Wanted or Discover.
+ ) : (
+
+ {active.map((r) => {
+ const j = jobOf(r);
+ const d = describeJob(j.state, j.currentStage);
+ const attention = d.kind === "attention";
+ return (
+
+ );
+ })}
+
+ )}
+
+ {pressed.length > 0 ? (
+ <>
+
+
({ id: r.id, artist: r.artist, album: r.album, matrix: pressedMark(r) }))}
+ />
+ >
+ ) : null}
+
+
+ Lyra — self-hosted pressing plant
+ MusicBrainz · Qobuz · Soulseek · YouTube
+
);
}