2026-05-20 18:25:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\View\Components;
|
|
|
|
|
|
|
|
|
|
use App\Auth\XenForoUser;
|
2026-05-27 21:24:38 +02:00
|
|
|
use App\Services\XenforoService;
|
2026-05-20 18:25:15 +02:00
|
|
|
use Closure;
|
|
|
|
|
use Illuminate\Contracts\View\View;
|
|
|
|
|
use Illuminate\View\Component;
|
|
|
|
|
|
|
|
|
|
class XenForoAvatar extends Component
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Create a new component instance.
|
|
|
|
|
*/
|
|
|
|
|
public function __construct(
|
2026-05-27 21:24:38 +02:00
|
|
|
public null|int|XenForoUser $user = null,
|
2026-05-20 18:25:15 +02:00
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
if( $this->user === null )
|
|
|
|
|
$this->user = \Auth::user();
|
2026-05-27 21:24:38 +02:00
|
|
|
else if( is_int( $this->user ) )
|
|
|
|
|
$this->user = app(XenforoService::class)->getXfUser( $this->user );
|
2026-05-20 18:25:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the view / contents that represent the component.
|
|
|
|
|
*/
|
|
|
|
|
public function render(): View|Closure|string
|
|
|
|
|
{
|
|
|
|
|
return view('components.xen-foro-avatar');
|
|
|
|
|
}
|
|
|
|
|
}
|