This commit is contained in:
yuriko 🦊 2025-05-24 23:16:40 -04:00
parent 2e75c1c407
commit 67bf5494fd
8 changed files with 18 additions and 23 deletions

View file

@ -7,14 +7,16 @@ use Livewire\Component;
class Pfp extends Component
{
public User $user;
public string $user = '';
public string $size = '3rem';
public string $shape = 'circle';
public function render()
{
$u = User::find($this->user);
return view('livewire.app.pfp', [
'pfp' => $this->user->getAvatarBase64()
'pfp' =>$u->getAvatarBase64(),
'name' => $u->name,
]);
}
}

View file

@ -22,14 +22,14 @@ class Profile extends Component
return view('livewire.pages.profile')->title($this->user->name);
}
public function updated($name, $value)
public function updated()
{
if (Auth::id() != $this->user->id)
{
abort(401);
}
$this->validateOnly($name);
$this->validate();
$this->user->avatarExt = $this->avatar->getClientOriginalExtension();
$this->user->save();

View file

@ -55,7 +55,7 @@ class Upload extends Component
$preview = Image::read($fullImg)->scaleDown(width: 1280, height: 720);
Storage::put("posts/$post->id/preview", $preview->encodeByExtension($post->extension, quality: 70));
return $this->redirect('/');
return $this->redirect("/posts/$post->id");
}
}