Replaces maryUI and daisyUI with nonameweb/livewire-material: the Vibrant indigo scheme, a system/light/dark theme under sealshare-theme, one top app bar with the account menu, the upload drop zone and link-ready moments, M3 fields, dialogs instead of wire:confirm, snackbars instead of flashed messages, a sortable admin table, and the starter-kit cleanup. Docker builds assets after Composer; CI drops the Flux step. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01V9NnLxnPp8vaaurb3Z1MFy
118 lines
3.6 KiB
PHP
118 lines
3.6 KiB
PHP
<?php
|
|
|
|
use App\Concerns\ProfileValidationRules;
|
|
use App\Models\User;
|
|
use Illuminate\Contracts\Auth\MustVerifyEmail;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\Session;
|
|
use Illuminate\Validation\Rule;
|
|
use Livewire\Attributes\Computed;
|
|
use Livewire\Component;
|
|
use NoNameWeb\LivewireMaterial\Concerns\Toasts;
|
|
|
|
new class extends Component {
|
|
use ProfileValidationRules;
|
|
use Toasts;
|
|
|
|
public string $name = '';
|
|
public string $email = '';
|
|
|
|
/**
|
|
* Mount the component.
|
|
*/
|
|
public function mount(): void
|
|
{
|
|
$this->name = Auth::user()->name;
|
|
$this->email = Auth::user()->email;
|
|
}
|
|
|
|
/**
|
|
* Update the profile information for the currently authenticated user.
|
|
*/
|
|
public function updateProfileInformation(): void
|
|
{
|
|
$user = Auth::user();
|
|
|
|
$validated = $this->validate($this->profileRules($user->id));
|
|
|
|
$user->fill($validated);
|
|
|
|
if ($user->isDirty('email')) {
|
|
$user->email_verified_at = null;
|
|
}
|
|
|
|
$user->save();
|
|
|
|
$this->dispatch('profile-updated', name: $user->name);
|
|
|
|
$this->success(__('Saved.'));
|
|
}
|
|
|
|
/**
|
|
* Send an email verification notification to the current user.
|
|
*/
|
|
public function resendVerificationNotification(): void
|
|
{
|
|
$user = Auth::user();
|
|
|
|
if ($user->hasVerifiedEmail()) {
|
|
$this->redirectIntended(default: route('admin.dashboard', absolute: false));
|
|
|
|
return;
|
|
}
|
|
|
|
$user->sendEmailVerificationNotification();
|
|
|
|
Session::flash('status', 'verification-link-sent');
|
|
}
|
|
|
|
#[Computed]
|
|
public function hasUnverifiedEmail(): bool
|
|
{
|
|
return Auth::user() instanceof MustVerifyEmail && ! Auth::user()->hasVerifiedEmail();
|
|
}
|
|
|
|
#[Computed]
|
|
public function showDeleteUser(): bool
|
|
{
|
|
return ! Auth::user() instanceof MustVerifyEmail
|
|
|| (Auth::user() instanceof MustVerifyEmail && Auth::user()->hasVerifiedEmail());
|
|
}
|
|
}; ?>
|
|
|
|
<section class="w-full">
|
|
@include('partials.settings-heading')
|
|
|
|
<x-pages::settings.layout :heading="__('Profile')" :subheading="__('Update your name and email address')">
|
|
<form wire:submit="updateProfileInformation" class="grid w-full gap-5">
|
|
<x-input wire:model="name" :label="__('Name')" type="text" required autofocus autocomplete="name" icon="person" />
|
|
|
|
<div class="grid gap-3">
|
|
<x-input wire:model="email" :label="__('Email')" type="email" required autocomplete="email" icon="mail" />
|
|
|
|
@if ($this->hasUnverifiedEmail)
|
|
<p class="type-body-md text-on-surface-variant">
|
|
{{ __('Your email address is unverified.') }}
|
|
|
|
<button type="button" class="link" wire:click.prevent="resendVerificationNotification">
|
|
{{ __('Click here to re-send the verification email.') }}
|
|
</button>
|
|
</p>
|
|
|
|
@if (session('status') === 'verification-link-sent')
|
|
<x-alert color="success">{{ __('A new verification link has been sent to your email address.') }}</x-alert>
|
|
@endif
|
|
@endif
|
|
</div>
|
|
|
|
<div>
|
|
<x-button type="submit" :label="__('Save')" variant="filled" spinner="updateProfileInformation" data-test="update-profile-button" />
|
|
</div>
|
|
</form>
|
|
|
|
@if ($this->showDeleteUser)
|
|
<livewire:pages::settings.delete-user-form />
|
|
@endif
|
|
</x-pages::settings.layout>
|
|
</section>
|