2023-03-17 15:13:37 +00:00
|
|
|
<script setup lang="ts">
|
2023-10-31 14:38:43 +00:00
|
|
|
import { Head, useForm, router } from '@inertiajs/vue3';
|
|
|
|
import { mdiAccountKey, mdiArrowLeftBoldOutline } 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';
|
|
|
|
// import { Inertia } from '@inertiajs/inertia';
|
|
|
|
|
|
|
|
const props = defineProps({
|
2023-10-31 14:38:43 +00:00
|
|
|
user: {
|
|
|
|
type: Object,
|
|
|
|
default: () => ({}),
|
|
|
|
},
|
|
|
|
roles: {
|
|
|
|
type: Object,
|
|
|
|
default: () => ({}),
|
|
|
|
},
|
|
|
|
userHasRoles: {
|
|
|
|
type: Object,
|
|
|
|
default: () => ({}),
|
|
|
|
},
|
|
|
|
errors: {
|
|
|
|
type: Object,
|
|
|
|
default: () => ({}),
|
|
|
|
},
|
|
|
|
});
|
2023-03-03 15:54:28 +00:00
|
|
|
|
|
|
|
const form = useForm({
|
2023-10-31 14:38:43 +00:00
|
|
|
_method: 'put',
|
|
|
|
login: props.user.login,
|
|
|
|
email: props.user.email,
|
|
|
|
password: '',
|
|
|
|
password_confirmation: '',
|
|
|
|
roles: props.userHasRoles, // fill actual user roles from db
|
|
|
|
});
|
2023-03-03 15:54:28 +00:00
|
|
|
|
|
|
|
const submit = async () => {
|
|
|
|
// await Inertia.post(stardust.route('user.store'), form);
|
|
|
|
await router.put(stardust.route('user.update', [props.user.id]), form);
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-10-31 14:38:43 +00:00
|
|
|
<LayoutAuthenticated>
|
|
|
|
<Head title="Update user" />
|
|
|
|
<SectionMain>
|
|
|
|
<SectionTitleLineWithButton :icon="mdiAccountKey" title="Update user" main>
|
|
|
|
<BaseButton
|
|
|
|
:route-name="stardust.route('user.index')"
|
|
|
|
:icon="mdiArrowLeftBoldOutline"
|
|
|
|
label="Back"
|
|
|
|
color="white"
|
|
|
|
rounded-full
|
|
|
|
small
|
|
|
|
/>
|
|
|
|
</SectionTitleLineWithButton>
|
|
|
|
<!-- <CardBox form @submit.prevent="form.put(stardust.route('user.update', [props.user.id]))"> -->
|
|
|
|
<CardBox form @submit.prevent="submit()">
|
|
|
|
<FormField label="Enter Login" :class="{ 'text-red-400': errors.name }">
|
|
|
|
<FormControl v-model="form.login" type="text" placeholder="Name" :errors="errors.login">
|
|
|
|
<div class="text-red-400 text-sm" v-if="errors.login">
|
|
|
|
{{ errors.login }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
2023-03-03 15:54:28 +00:00
|
|
|
|
2023-10-31 14:38:43 +00:00
|
|
|
<FormField label="Enter Email" :class="{ 'text-red-400': errors.email }">
|
|
|
|
<FormControl v-model="form.email" type="text" placeholder="Email" :errors="errors.email">
|
|
|
|
<div class="text-red-400 text-sm" v-if="errors.email && Array.isArray(errors.email)">
|
|
|
|
{{ errors.email.join(', ') }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
2023-03-03 15:54:28 +00:00
|
|
|
|
2023-10-31 14:38:43 +00:00
|
|
|
<FormField label="Password" :class="{ 'text-red-400': errors.password }">
|
|
|
|
<FormControl v-model="form.password" type="password" placeholder="Enter Password" :errors="errors.password">
|
|
|
|
<div class="text-red-400 text-sm" v-if="errors.password">
|
|
|
|
{{ errors.password }}
|
|
|
|
</div>
|
|
|
|
</FormControl>
|
|
|
|
</FormField>
|
2023-03-03 15:54:28 +00:00
|
|
|
|
2023-10-31 14:38:43 +00:00
|
|
|
<FormField label="Password Confirmation" :class="{ 'text-red-400': errors.password_confirmation }">
|
|
|
|
<FormControl
|
|
|
|
v-model="form.password_confirmation"
|
|
|
|
type="password"
|
|
|
|
placeholder="Enter Password Confirmation"
|
|
|
|
:errors="errors.password"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="text-red-400 text-sm"
|
|
|
|
v-if="errors.password_confirmation && Array.isArray(errors.password_confirmation)"
|
|
|
|
>
|
|
|
|
{{ errors.password_confirmation.join(', ') }}
|
|
|
|
</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="Roles" wrap-body :class="{ 'text-red-400': errors.roles }">
|
|
|
|
<FormCheckRadioGroup v-model="form.roles" name="roles" is-column :options="props.roles" />
|
|
|
|
</FormField>
|
|
|
|
<div class="text-red-400 text-sm" v-if="errors.roles && Array.isArray(errors.roles)">
|
|
|
|
<!-- {{ errors.password_confirmation }} -->
|
|
|
|
{{ errors.roles.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>
|