Arno Kaimbacher
cefd9081ae
Some checks failed
CI Pipeline / japa-tests (push) Failing after 52s
- adapted menu.ts, NavBar.vue, NavBarItem.vue for highlighting active nav item - NavBarItemLabel.vue for app menu highlighting - adapted routes.ts - adapted app.edge for new favicon - adapted LayoutAuthenticated.vue (:showAsideMenu="false") for showing AsideMenu optional - new material icons: BriefcaseCheck.vue, SwapHorizontal.vue, AccountGroup.vue, Lock.vue - started with FirstRunWizard
107 lines
4.0 KiB
Vue
107 lines
4.0 KiB
Vue
<script setup>
|
|
import { Head, Link, useForm } from '@inertiajs/vue3';
|
|
import { mdiAccountKey, mdiArrowLeftBoldOutline, 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';
|
|
import { stardust } from '@eidellev/adonis-stardust/client';
|
|
|
|
const props = defineProps({
|
|
role: {
|
|
type: Object,
|
|
default: () => ({}),
|
|
},
|
|
permissions: {
|
|
type: Object,
|
|
default: () => ({}),
|
|
},
|
|
roleHasPermissions: {
|
|
type: Object,
|
|
default: () => ({}),
|
|
},
|
|
});
|
|
|
|
const form = useForm({
|
|
_method: 'put',
|
|
name: props.role.name,
|
|
description: props.role.description,
|
|
permissions: props.roleHasPermissions,
|
|
});
|
|
|
|
const submit = async () => {
|
|
// await Inertia.post(stardust.route('user.store'), form);
|
|
await form.put(stardust.route('settings.role.update', [props.role.id]), form);
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<LayoutAuthenticated>
|
|
<Head title="Update role" />
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton :icon="mdiAccountKey" title="Update role" main>
|
|
<BaseButton
|
|
:route-name="stardust.route('settings.role.index')"
|
|
:icon="mdiArrowLeftBoldOutline"
|
|
label="Back"
|
|
color="white"
|
|
rounded-full
|
|
small
|
|
/>
|
|
</SectionTitleLineWithButton>
|
|
<!-- <CardBox form @submit.prevent="form.put(stardust.route('role.update', [props.role.id]))"> -->
|
|
<CardBox form @submit.prevent="submit()">
|
|
<FormField label="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>
|
|
|
|
<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>
|
|
|
|
<BaseDivider />
|
|
|
|
<FormField label="Permissions" wrap-body>
|
|
<FormCheckRadioGroup v-model="form.permissions" name="permissions" is-column :options="props.permissions" />
|
|
</FormField>
|
|
|
|
<template #footer>
|
|
<BaseButtons>
|
|
<BaseButton
|
|
type="submit"
|
|
color="info"
|
|
label="Submit"
|
|
:class="{ 'opacity-25': form.processing }"
|
|
:disabled="form.processing"
|
|
/>
|
|
</BaseButtons>
|
|
</template>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</LayoutAuthenticated>
|
|
</template>
|