2023-03-03 15:54:28 +00:00
|
|
|
<script setup>
|
2023-10-31 14:38:43 +00:00
|
|
|
import { Head, Link, useForm, router } from '@inertiajs/vue3';
|
|
|
|
import { mdiAccountKey, mdiArrowLeftBoldOutline, mdiAccount, mdiNoteText, mdiFormTextarea } from '@mdi/js';
|
|
|
|
import LayoutAuthenticated from '@/Layouts/LayoutAuthenticated.vue';
|
|
|
|
import SectionMain from '@/Components/SectionMain.vue';
|
|
|
|
import SectionTitleLineWithButton from '@/Components/SectionTitleLineWithButton.vue';
|
|
|
|
import CardBox from '@/Components/CardBox.vue';
|
|
|
|
import FormField from '@/Components/FormField.vue';
|
|
|
|
import FormControl from '@/Components/FormControl.vue';
|
|
|
|
import FormCheckRadioGroup from '@/Components/FormCheckRadioGroup.vue';
|
|
|
|
import BaseDivider from '@/Components/BaseDivider.vue';
|
|
|
|
import BaseButton from '@/Components/BaseButton.vue';
|
|
|
|
import BaseButtons from '@/Components/BaseButtons.vue';
|
2023-03-03 15:54:28 +00:00
|
|
|
import { stardust } from '@eidellev/adonis-stardust/client';
|
|
|
|
|
|
|
|
const props = defineProps({
|
2023-10-31 14:38:43 +00:00
|
|
|
permissions: {
|
|
|
|
type: Object,
|
|
|
|
default: () => ({}),
|
|
|
|
},
|
2023-03-03 15:54:28 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const form = useForm({
|
2023-10-31 14:38:43 +00:00
|
|
|
name: '',
|
|
|
|
display_name: '',
|
|
|
|
description: '',
|
|
|
|
permissions: [],
|
2023-03-03 15:54:28 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const submit = async () => {
|
|
|
|
await form.post(stardust.route('role.store'), form);
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-10-31 14:38:43 +00:00
|
|
|
<LayoutAuthenticated>
|
|
|
|
<Head title="Add role" />
|
|
|
|
<SectionMain>
|
|
|
|
<SectionTitleLineWithButton :icon="mdiAccountKey" title="Add role" main>
|
|
|
|
<BaseButton
|
|
|
|
:route-name="stardust.route('role.index')"
|
|
|
|
:icon="mdiArrowLeftBoldOutline"
|
|
|
|
label="Back"
|
|
|
|
color="white"
|
|
|
|
rounded-full
|
|
|
|
small
|
|
|
|
/>
|
|
|
|
</SectionTitleLineWithButton>
|
|
|
|
<!-- <CardBox form @submit.prevent="form.post(stardust.route('role.store'))"> -->
|
|
|
|
<CardBox form @submit.prevent="submit()">
|
|
|
|
<FormField label="Name" help="Required. Role name" :class="{ 'text-red-400': form.errors.name }">
|
|
|
|
<FormControl v-model="form.name" type="text" placeholder="Enter Name" required :error="form.errors.name">
|
|
|
|
<div class="text-red-400 text-sm" v-if="form.errors.name">
|
|
|
|
{{ form.errors.name }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
2023-03-03 15:54:28 +00:00
|
|
|
|
2023-10-31 14:38:43 +00:00
|
|
|
<FormField label="Display Name" help="Optional. Display name" :class="{ 'text-red-400': form.errors.display_name }">
|
|
|
|
<FormControl v-model="form.display_name" name="display_name" :error="form.errors.display_name">
|
|
|
|
<div class="text-red-400 text-sm" v-if="form.errors.display_name">
|
|
|
|
{{ form.errors.display_name }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
2023-03-03 15:54:28 +00:00
|
|
|
|
2023-10-31 14:38:43 +00:00
|
|
|
<FormField
|
|
|
|
label="Description"
|
|
|
|
help="Optional. Description of new role"
|
|
|
|
:class="{ 'text-red-400': form.errors.description }"
|
|
|
|
>
|
|
|
|
<FormControl
|
|
|
|
v-model="form.description"
|
|
|
|
v-bind:icon="mdiFormTextarea"
|
|
|
|
name="display_name"
|
|
|
|
:type="'textarea'"
|
|
|
|
:error="form.errors.description"
|
|
|
|
>
|
|
|
|
<div class="text-red-400 text-sm" v-if="form.errors.description">
|
|
|
|
{{ form.errors.description }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
2023-03-03 15:54:28 +00:00
|
|
|
|
2023-10-31 14:38:43 +00:00
|
|
|
<BaseDivider />
|
2023-03-03 15:54:28 +00:00
|
|
|
|
2023-10-31 14:38:43 +00:00
|
|
|
<FormField label="Permissions" wrap-body>
|
|
|
|
<FormCheckRadioGroup v-model="form.permissions" name="permissions" is-column :options="props.permissions" />
|
|
|
|
</FormField>
|
|
|
|
<div class="text-red-400 text-sm" v-if="form.errors.permissions && Array.isArray(form.errors.permissions)">
|
|
|
|
<!-- {{ errors.password_confirmation }} -->
|
|
|
|
{{ form.errors.permissions.join(', ') }}
|
|
|
|
</div>
|
2023-03-03 15:54:28 +00:00
|
|
|
|
2023-10-31 14:38:43 +00:00
|
|
|
<template #footer>
|
|
|
|
<BaseButtons>
|
|
|
|
<BaseButton
|
|
|
|
type="submit"
|
|
|
|
color="info"
|
|
|
|
label="Submit"
|
|
|
|
:class="{ 'opacity-25': form.processing }"
|
|
|
|
:disabled="form.processing"
|
|
|
|
/>
|
|
|
|
</BaseButtons>
|
|
|
|
</template>
|
|
|
|
</CardBox>
|
|
|
|
</SectionMain>
|
|
|
|
</LayoutAuthenticated>
|
2023-03-03 15:54:28 +00:00
|
|
|
</template>
|