|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
declare(strict_types=1); |
|
4
|
|
|
|
|
5
|
|
|
namespace Xetaravel\Livewire\Admin\Permission; |
|
6
|
|
|
|
|
7
|
|
|
use Illuminate\Contracts\View\Factory; |
|
8
|
|
|
use Illuminate\Contracts\View\View; |
|
9
|
|
|
use Illuminate\Foundation\Application; |
|
10
|
|
|
use Illuminate\Foundation\Auth\Access\AuthorizesRequests; |
|
11
|
|
|
use Livewire\Attributes\On; |
|
12
|
|
|
use Livewire\Component; |
|
13
|
|
|
use Masmerise\Toaster\Toastable; |
|
14
|
|
|
use Spatie\Permission\Models\Role; |
|
|
|
|
|
|
15
|
|
|
use Spatie\Permission\Models\Permission; |
|
|
|
|
|
|
16
|
|
|
use Xetaravel\Livewire\Forms\RoleForm; |
|
17
|
|
|
|
|
18
|
|
|
class UpdateRole extends Component |
|
19
|
|
|
{ |
|
20
|
|
|
use AuthorizesRequests; |
|
21
|
|
|
use Toastable; |
|
22
|
|
|
|
|
23
|
|
|
/** |
|
24
|
|
|
* The form used to create/update a model. |
|
25
|
|
|
* |
|
26
|
|
|
* @var RoleForm |
|
27
|
|
|
*/ |
|
28
|
|
|
public RoleForm $form; |
|
29
|
|
|
|
|
30
|
|
|
/** |
|
31
|
|
|
* Used to show the update modal. |
|
32
|
|
|
* |
|
33
|
|
|
* @var bool |
|
34
|
|
|
*/ |
|
35
|
|
|
public bool $showModal = false; |
|
36
|
|
|
|
|
37
|
|
|
/** |
|
38
|
|
|
* When a user click on 'Edit' open the modal and set the content. |
|
39
|
|
|
* |
|
40
|
|
|
* @param Role $role |
|
41
|
|
|
* |
|
42
|
|
|
* @return void |
|
43
|
|
|
*/ |
|
44
|
|
|
#[On('update-role')] |
|
45
|
|
|
public function updateRole(Role $role): void |
|
46
|
|
|
{ |
|
47
|
|
|
$this->authorize('update', $role); |
|
48
|
|
|
|
|
49
|
|
|
$this->form->reset(); |
|
50
|
|
|
$this->form->fill([ |
|
51
|
|
|
'role' => $role, |
|
52
|
|
|
'name' => $role->name, |
|
53
|
|
|
'color' => $role->color, |
|
|
|
|
|
|
54
|
|
|
'level' => $role->level, |
|
|
|
|
|
|
55
|
|
|
'description' => $role->description, |
|
|
|
|
|
|
56
|
|
|
'permissions' => $role->permissions()->pluck('name')->toArray(), |
|
57
|
|
|
]); |
|
58
|
|
|
|
|
59
|
|
|
$this->showModal = true; |
|
60
|
|
|
} |
|
61
|
|
|
|
|
62
|
|
|
/** |
|
63
|
|
|
* Update the role. |
|
64
|
|
|
* |
|
65
|
|
|
* @return void |
|
66
|
|
|
*/ |
|
67
|
|
|
public function update(): void |
|
68
|
|
|
{ |
|
69
|
|
|
$this->authorize('update', $this->form->role); |
|
70
|
|
|
|
|
71
|
|
|
$this->validate(); |
|
72
|
|
|
|
|
73
|
|
|
$role = $this->form->update(); |
|
74
|
|
|
|
|
75
|
|
|
redirect() |
|
76
|
|
|
->route('admin.role.index') |
|
|
|
|
|
|
77
|
|
|
->success("The role $role->name has been updated successfully !"); |
|
78
|
|
|
} |
|
79
|
|
|
|
|
80
|
|
|
public function render(): View|Application|Factory|\Illuminate\View\View |
|
81
|
|
|
{ |
|
82
|
|
|
// Select all permissions except `bypass login` which is handled by a checkbox. |
|
83
|
|
|
$permissions = Permission::where('name', '<>', 'bypass login') |
|
84
|
|
|
->select(['name', 'description']) |
|
85
|
|
|
->orderBy('name') |
|
86
|
|
|
->get() |
|
87
|
|
|
->toArray(); |
|
88
|
|
|
|
|
89
|
|
|
return view('livewire.admin.permission.update-role', [ |
|
90
|
|
|
'permissions' => $permissions, |
|
91
|
|
|
]); |
|
92
|
|
|
} |
|
93
|
|
|
} |
|
94
|
|
|
|
Let?s assume that you have a directory layout like this:
. |-- OtherDir | |-- Bar.php | `-- Foo.php `-- SomeDir `-- Foo.phpand let?s assume the following content of
Bar.php:If both files
OtherDir/Foo.phpandSomeDir/Foo.phpare loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.phpHowever, as
OtherDir/Foo.phpdoes not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: