fuck it, just do it in the blade template instead

This commit is contained in:
Roscoe 2025-08-30 17:44:33 +01:00
commit 49f9f7fd3c
Signed by: RoscoeDaWah
SSH key fingerprint: SHA256:Hqn452XQ1ETzUt/FthJu6+OFkS4NBxCv5VQSEvuk7CE
3 changed files with 12 additions and 15 deletions

View file

@ -8,21 +8,11 @@
class LastFMCurrent extends Component {
public $track;
public $artUrl;
/**
* Create a new component instance.
*/
public function __construct($track) {
$this->track = $track;
$this->artUrl = null;
if (isLegacy()) {
$path = parse_url($track["image"], PHP_URL_PATH);
if ($track["image"] !== "") {
$this->artUrl = "//" . request()->getHttpHost() . "/proxy/lastfm/" . basename($path);
}
} else {
$this->artUrl = $track["image"];
}
}
/**

View file

@ -5,7 +5,7 @@
return [
'name' => env('APP_NAME', 'wah.moe'),
'version' => '2025.08.30-patch0',
'version' => '2025.08.30-patch1',
'env' => env('APP_ENV', 'production'),
'debug' => (bool) env('APP_DEBUG', false),
'url' => env('APP_URL', 'http://localhost'),

View file

@ -1,7 +1,14 @@
@if (isLegacy())
@php
$artUrl = null;
$path = parse_url($track["image"], PHP_URL_PATH);
if ($track["image"] !== "") {
$artUrl = "//" . request()->getHttpHost() . "/proxy/lastfm/" . basename($path);
}
@endphp
<table border="0" cellpadding="0" cellspacing="0"><tr>
@if (isset($artUrl))
<td><img src="{{ $artUrl }}" alt="Album cover for {{ $track["title"] }} by {{ $track["artist"] }}"></td>
@if ($artUrl !== null)
<td><img src="{{ $artUrl }}" alt="Album cover for {{ $track["title"] }} by {{ $track["artist"] }}" border="1"></td>
@endif
<td width="10px">&nbsp;</td>
<td>
@ -13,9 +20,9 @@
<br>
@else
<div class="current-track">
@if (isset($artUrl))
@if($track["image"] !== "")
<div>
<img src="{{ $artUrl }}" alt="Album cover for {{ $track["title"] }} by {{ $track["artist"] }}">
<img src="{{ $track["image"] }}" alt="Album cover for {{ $track["title"] }} by {{ $track["artist"] }}">
</div>
@endif
<div>