create role crud
This commit is contained in:
162
app/Http/Controllers/Superuser/RoleController.php
Normal file
162
app/Http/Controllers/Superuser/RoleController.php
Normal file
@@ -0,0 +1,162 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Superuser;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Models\Permission;
|
||||
use App\Models\Role;
|
||||
use Illuminate\Database\Eloquent\Builder;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Validation\Rule;
|
||||
use Inertia\Inertia;
|
||||
|
||||
class RoleController extends Controller
|
||||
{
|
||||
/**
|
||||
* Display a listing of the resource.
|
||||
*
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
return Inertia::render('Superuser/Role/Index')->with([
|
||||
'permissions' => Permission::get(),
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function get()
|
||||
{
|
||||
return Role::get();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function paginate(Request $request)
|
||||
{
|
||||
$request->validate([
|
||||
'search' => 'nullable|string',
|
||||
'per_page' => 'nullable|integer|max:1000',
|
||||
'order.key' => 'nullable|string',
|
||||
'order.dir' => 'nullable|in:asc,desc',
|
||||
]);
|
||||
|
||||
return Role::where(function (Builder $query) use ($request) {
|
||||
$search = '%' . $request->search . '%';
|
||||
|
||||
$query->orWhereRelation('permissions', 'name', 'like', $search)
|
||||
->orWhere('name', 'like', $search);
|
||||
})
|
||||
->orderBy($request->input('order.key') ?: 'name', $request->input('order.dir') ?: 'asc')
|
||||
->with('permissions')
|
||||
->paginate($request->per_page ?: 10);
|
||||
}
|
||||
|
||||
/**
|
||||
* Store a newly created resource in storage.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function store(Request $request)
|
||||
{
|
||||
$request->validate([
|
||||
'name' => 'required|string|unique:roles',
|
||||
'permissions.*' => 'nullable|integer|exists:permissions,id',
|
||||
]);
|
||||
|
||||
$role = Role::create([
|
||||
'name' => $request->name,
|
||||
'guard_name' => 'web',
|
||||
]);
|
||||
|
||||
if ($role) {
|
||||
$role->permissions()->sync($request->input('permissions', []));
|
||||
|
||||
return redirect()->back()->with('success', __(
|
||||
'role `:name` has been created', [
|
||||
'name' => $request->name,
|
||||
]
|
||||
));
|
||||
}
|
||||
|
||||
return redirect()->back()->with('error', __(
|
||||
'can\'t create role',
|
||||
));
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the specified resource in storage.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @param \App\Models\Role $role
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function update(Request $request, Role $role)
|
||||
{
|
||||
$request->validate([
|
||||
'name' => ['required', 'string', Rule::unique('roles')->ignore($role->id)],
|
||||
'permissions.*' => 'nullable|integer|exists:permissions,id',
|
||||
]);
|
||||
|
||||
if ($role->update([ 'name' => $request->name ])) {
|
||||
$role->permissions()->sync($request->input('permissions', []));
|
||||
|
||||
return redirect()->back()->with('success', __(
|
||||
'role `:name` has been updated', [
|
||||
'name' => $request->name,
|
||||
]
|
||||
));
|
||||
}
|
||||
|
||||
return redirect()->back()->with('error', __(
|
||||
'can\'t update role',
|
||||
));
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the specified resource from storage.
|
||||
*
|
||||
* @param \App\Models\Role $role
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function destroy(Role $role)
|
||||
{
|
||||
if ($role->delete()) {
|
||||
return redirect()->back()->with('success', __(
|
||||
'role `:name` has been deleted', [
|
||||
'name' => $role->name,
|
||||
]
|
||||
));
|
||||
}
|
||||
|
||||
return redirect()->back()->with('error', __(
|
||||
'can\'t delete role',
|
||||
));
|
||||
}
|
||||
|
||||
/**
|
||||
* @param \App\Models\Role $role
|
||||
* @param \App\Models\Permission $permission
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function detach(Role $role, Permission $permission)
|
||||
{
|
||||
if ($role->permissions()->detach([$permission->id])) {
|
||||
return redirect()->back()->with('success', __(
|
||||
'permission `:permission` has been detached from role `:role`', [
|
||||
'permission' => $permission->name,
|
||||
'role' => $role->name,
|
||||
]
|
||||
));
|
||||
}
|
||||
|
||||
return redirect()->back()->with('error', __(
|
||||
'can\'t detach permission',
|
||||
));
|
||||
}
|
||||
}
|
||||
221
resources/js/Pages/Superuser/Role/Index.vue
Normal file
221
resources/js/Pages/Superuser/Role/Index.vue
Normal file
@@ -0,0 +1,221 @@
|
||||
<script setup>
|
||||
import { getCurrentInstance, nextTick, onMounted, onUnmounted, ref } from 'vue'
|
||||
import { Inertia } from '@inertiajs/inertia'
|
||||
import { useForm } from '@inertiajs/inertia-vue3'
|
||||
import DashboardLayout from '@/Layouts/DashboardLayout.vue'
|
||||
import Card from '@/Components/Card.vue'
|
||||
import Icon from '@/Components/Icon.vue'
|
||||
import Builder from '@/Components/DataTable/Builder.vue'
|
||||
import Th from '@/Components/DataTable/Th.vue'
|
||||
import Swal from 'sweetalert2'
|
||||
import Select from '@vueform/multiselect'
|
||||
|
||||
const self = getCurrentInstance()
|
||||
const { permissions } = defineProps({
|
||||
permissions: Array,
|
||||
})
|
||||
const form = useForm({
|
||||
id: null,
|
||||
name: '',
|
||||
permissions: [],
|
||||
})
|
||||
|
||||
const tableRefresh = ref(null)
|
||||
const open = ref(false)
|
||||
|
||||
const show = () => {
|
||||
open.value = true
|
||||
nextTick(() => self.refs.name?.focus())
|
||||
}
|
||||
|
||||
const close = () => {
|
||||
open.value = false
|
||||
form.reset()
|
||||
tableRefresh.value && tableRefresh.value()
|
||||
}
|
||||
|
||||
const detach = async (role, permission, refresh) => {
|
||||
const response = await Swal.fire({
|
||||
title: 'are you sure?',
|
||||
icon: 'question',
|
||||
showCloseButton: true,
|
||||
showCancelButton: true,
|
||||
})
|
||||
|
||||
if (!response.isConfirmed) return
|
||||
|
||||
Inertia.on('finish', () => refresh())
|
||||
|
||||
return Inertia.patch(route('superuser.role.detach', { role: role.id, permission: permission.id }))
|
||||
}
|
||||
|
||||
const store = () => {
|
||||
return form.post(route('superuser.role.store'), {
|
||||
onSuccess: () => close() || (tableRefresh.value && tableRefresh.value()),
|
||||
onError: () => show(),
|
||||
})
|
||||
}
|
||||
|
||||
const edit = role => {
|
||||
form.id = role.id
|
||||
form.name = role.name
|
||||
form.permissions = role.permissions.map(permission => permission.id)
|
||||
|
||||
show()
|
||||
}
|
||||
|
||||
const update = () => {
|
||||
return form.patch(route('superuser.role.update', form.id), {
|
||||
onSuccess: () => close() || (tableRefresh.value && tableRefresh.value()),
|
||||
onError: () => show(),
|
||||
})
|
||||
}
|
||||
|
||||
const destroy = async (role, refresh) => {
|
||||
const response = await Swal.fire({
|
||||
title: 'Are you sure?',
|
||||
text: 'You can\'t restore it after deleted',
|
||||
showCancelButton: true,
|
||||
showCloseButton: true,
|
||||
})
|
||||
|
||||
if (response.isConfirmed) {
|
||||
Inertia.on('finish', () => refresh())
|
||||
|
||||
return Inertia.delete(route('superuser.role.destroy', role.id))
|
||||
}
|
||||
}
|
||||
|
||||
const submit = () => form.id ? update() : store()
|
||||
|
||||
const esc = e => e.key === 'Escape' && close()
|
||||
onMounted(() => window.addEventListener('keydown', esc))
|
||||
onUnmounted(() => window.removeEventListener('keydown', esc))
|
||||
|
||||
const load = e => console.log(e)
|
||||
</script>
|
||||
|
||||
<style src="@vueform/multiselect/themes/default.css"></style>
|
||||
|
||||
<template>
|
||||
<DashboardLayout title="role">
|
||||
<Card class="dark:bg-gray-700 dark:text-gray-100">
|
||||
<template #header>
|
||||
<div class="flex items-center space-x-2 p-2 dark:bg-gray-800">
|
||||
<button v-if="can('create role')" @click.prevent="show" class="bg-green-600 hover:bg-green-700 rounded-md px-3 py-1 text-sm transition-all">
|
||||
<div class="flex items-center space-x-1">
|
||||
<Icon name="plus" />
|
||||
<p class="uppercase font-semibold">create</p>
|
||||
</div>
|
||||
</button>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template #body>
|
||||
<div class="flex flex-col space-y-2">
|
||||
<Builder :url="route('api.v1.superuser.role.paginate')">
|
||||
<template v-slot:thead="table">
|
||||
<tr>
|
||||
<Th class="dark:bg-gray-800 border dark:border-gray-900 px-3 py-2 text-center" :table="table" :sort="false">no</Th>
|
||||
<Th class="dark:bg-gray-800 border dark:border-gray-900 px-3 py-2 text-center whitespace-nowrap" :table="table" :sort="true" name="name">name</Th>
|
||||
<Th class="dark:bg-gray-800 border dark:border-gray-900 px-3 py-2 text-center whitespace-nowrap" :table="table" :sort="false">permissions</Th>
|
||||
<Th class="dark:bg-gray-800 border dark:border-gray-900 px-3 py-2 text-center whitespace-nowrap" :table="table" :sort="false">action</Th>
|
||||
</tr>
|
||||
</template>
|
||||
|
||||
<template v-slot:tbody="{ data, refresh }">
|
||||
<tr v-for="(role, i) in (tableRefresh = refresh) ? data : data" :key="i">
|
||||
<td class="px-2 py-1 border dark:border-gray-800 text-center">{{ i + 1 }}</td>
|
||||
<td class="px-2 py-1 border dark:border-gray-800 uppercase">{{ role.name }}</td>
|
||||
<td class="px-2 py-1 border dark:border-gray-800">
|
||||
<div class="flex-wrap">
|
||||
<div v-for="(permission, j) in role.permissions" :key="j" class="inline-block bg-gray-600 rounded-md px-3 py-1 m-[1px] text-sm">
|
||||
<div class="flex items-center justify-between space-x-1">
|
||||
<p class="uppercase font-semibold">{{ permission.name }}</p>
|
||||
|
||||
<Icon @click.prevent="detach(role, permission, refresh)" v-if="can('update role')" name="times" class="px-2 py-1 rounded-md dark:bg-gray-700 transition-all hover:bg-red-500 cursor-pointer" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
<td class="px-2 py-1 border dark:border-gray-800">
|
||||
<div class="flex items-center space-x-2">
|
||||
<button @click.prevent="edit(role, refresh)" class="bg-blue-600 rounded-md px-3 py-1 transition-all hover:bg-blue-700 text-white text-sm">
|
||||
<div class="flex items-center space-x-2">
|
||||
<Icon name="edit" />
|
||||
<p class="uppercase">edit</p>
|
||||
</div>
|
||||
</button>
|
||||
|
||||
<button @click.prevent="destroy(role, refresh)" class="bg-red-600 rounded-md px-3 py-1 transition-all hover:bg-red-700 text-white text-sm">
|
||||
<div class="flex items-center space-x-2">
|
||||
<Icon name="trash" />
|
||||
<p class="uppercase">edit</p>
|
||||
</div>
|
||||
</button>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</template>
|
||||
</Builder>
|
||||
</div>
|
||||
</template>
|
||||
</Card>
|
||||
</DashboardLayout>
|
||||
|
||||
<transition name="fade">
|
||||
<div v-if="open" class="fixed top-0 left-0 w-full h-full bg-black bg-opacity-25 flex items-center justify-center">
|
||||
<form @submit.prevent="submit" class="w-full max-w-xl shadow-xl">
|
||||
<Card class="dark:bg-gray-700 dark:text-gray-100">
|
||||
<template #header>
|
||||
<div class="flex items-center justify-end bg-gray-800 p-2">
|
||||
<Icon @click.prevent="close" name="times" class="px-2 py-1 dark:bg-gray-700 dark:hover:bg-gray-600 rounded-md transition-all cursor-pointer" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template #body>
|
||||
<div class="flex flex-col space-y-4 p-2">
|
||||
<div class="flex flex-col space-y-2">
|
||||
<div class="flex items-center space-x-2">
|
||||
<label for="name" class="w-1/3 lowercase first-letter:capitalize">name</label>
|
||||
<input ref="name" type="text" name="name" v-model="form.name" class="w-full bg-transparent rounded-md px-3 py-1 placeholder:capitalize" placeholder="name" required>
|
||||
</div>
|
||||
|
||||
<p v-if="form.errors.name" class="text-red-500 text-right lowercase first-letter:capitalize">{{ form.errors.name }}</p>
|
||||
</div>
|
||||
|
||||
<div class="flex flex-col space-y-2">
|
||||
<div class="flex items-center space-x-2">
|
||||
<label for="permissions" class="w-1/3 lowercase first-letter:capitalize">permissions</label>
|
||||
<Select
|
||||
v-model="form.permissions"
|
||||
:options="permissions.map(p => ({
|
||||
label: p.name,
|
||||
value: p.id,
|
||||
}))"
|
||||
:searchable="true"
|
||||
class="text-gray-800 uppercase"
|
||||
mode="tags" />
|
||||
</div>
|
||||
|
||||
<p v-if="form.errors.permissions" class="text-red-500 text-right lowercase first-letter:capitalize">{{ form.errors.permissions }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template #footer>
|
||||
<div class="flex items-center justify-end space-x-2 dark:bg-gray-800 px-2 py-1">
|
||||
<button type="submit" class="bg-green-600 rounded-md px-3 py-1 text-sm">
|
||||
<div class="flex items-center space-x-1">
|
||||
<Icon name="check" />
|
||||
|
||||
<p class="uppercase font-semibold">{{ form.id ? 'update' : 'create' }}</p>
|
||||
</div>
|
||||
</button>
|
||||
</div>
|
||||
</template>
|
||||
</Card>
|
||||
</form>
|
||||
</div>
|
||||
</transition>
|
||||
</template>
|
||||
@@ -19,5 +19,7 @@ Route::prefix('/v1')->name('api.v1.')->group(function () {
|
||||
|
||||
Route::name('superuser.')->group(function () {
|
||||
Route::get('/superuser/permission', [App\Http\Controllers\Superuser\PermissionController::class, 'get'])->name('permission');
|
||||
Route::get('/superuser/role', [App\Http\Controllers\Superuser\RoleController::class, 'get'])->name('role');
|
||||
Route::post('/superuser/role/paginate', [App\Http\Controllers\Superuser\RoleController::class, 'paginate'])->name('role.paginate');
|
||||
});
|
||||
});
|
||||
@@ -20,9 +20,15 @@ Route::middleware(['auth:sanctum', config('jetstream.auth_session'), 'verified']
|
||||
return Inertia::render('Dashboard');
|
||||
})->name('dashboard');
|
||||
|
||||
Route::name('superuser.')->group(function () {
|
||||
Route::prefix('/superuser')->name('superuser.')->group(function () {
|
||||
Route::resource('permission', App\Http\Controllers\Superuser\PermissionController::class)->only([
|
||||
'index', 'store', 'update', 'destroy',
|
||||
]);
|
||||
|
||||
Route::resource('role', App\Http\Controllers\Superuser\RoleController::class)->only([
|
||||
'index', 'store', 'update', 'destroy',
|
||||
]);
|
||||
|
||||
Route::patch('/role/{role}/detach/{permission}', [App\Http\Controllers\Superuser\RoleController::class, 'detach'])->name('role.detach');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user