140 lines
6.9 KiB
Vue
140 lines
6.9 KiB
Vue
<script setup>
|
|
import { Head, Link, useForm } from '@inertiajs/vue3';
|
|
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout.vue';
|
|
import InputLabel from '@/Components/InputLabel.vue';
|
|
import TextInput from '@/Components/TextInput.vue';
|
|
import InputError from '@/Components/InputError.vue';
|
|
import PrimaryButton from '@/Components/PrimaryButton.vue';
|
|
|
|
const props = defineProps({
|
|
user: Object,
|
|
isEdit: Boolean,
|
|
});
|
|
|
|
const form = useForm({
|
|
name: props.user?.name || '',
|
|
email: props.user?.email || '',
|
|
password: '',
|
|
role: props.user?.role || 'admin_reseau',
|
|
});
|
|
|
|
const submit = () => {
|
|
if (props.isEdit) {
|
|
form.put(route('users.update', props.user.id));
|
|
} else {
|
|
form.post(route('users.store'));
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<Head :title="isEdit ? `Modifier l'Utilisateur ${user.name}` : 'Nouvel Utilisateur'" />
|
|
|
|
<AuthenticatedLayout>
|
|
<template #header>
|
|
<div class="flex items-center justify-between">
|
|
<h2 class="text-xl font-bold leading-tight text-slate-800 dark:text-slate-200">
|
|
{{ isEdit ? `Modifier l'Utilisateur` : 'Créer un Utilisateur' }}
|
|
</h2>
|
|
<Link
|
|
:href="route('users.index')"
|
|
class="inline-flex items-center px-4 py-2 text-sm font-semibold text-slate-700 bg-white border border-slate-300 rounded-lg hover:bg-slate-50 dark:bg-slate-900 dark:text-slate-300 dark:border-slate-850 dark:hover:bg-slate-800 transition-colors"
|
|
>
|
|
Retour
|
|
</Link>
|
|
</div>
|
|
</template>
|
|
|
|
<div class="py-6">
|
|
<div class="max-w-xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div class="bg-white dark:bg-slate-900 border border-slate-200 dark:border-slate-800 rounded-xl shadow-sm overflow-hidden p-6">
|
|
<form @submit.prevent="submit" class="space-y-6">
|
|
<!-- Nom -->
|
|
<div>
|
|
<InputLabel for="name" value="Nom complet" class="font-bold" />
|
|
<TextInput
|
|
id="name"
|
|
type="text"
|
|
class="mt-1 block w-full"
|
|
v-model="form.name"
|
|
required
|
|
placeholder="Ex: Sylvain Martin"
|
|
/>
|
|
<InputError class="mt-2" :message="form.errors.name" />
|
|
</div>
|
|
|
|
<!-- Email -->
|
|
<div>
|
|
<InputLabel for="email" value="Adresse email" class="font-bold" />
|
|
<TextInput
|
|
id="email"
|
|
type="email"
|
|
class="mt-1 block w-full"
|
|
v-model="form.email"
|
|
required
|
|
placeholder="Ex: s.martin@beziers-mediterranee.fr"
|
|
/>
|
|
<InputError class="mt-2" :message="form.errors.email" />
|
|
</div>
|
|
|
|
<!-- Mot de passe -->
|
|
<div>
|
|
<InputLabel
|
|
for="password"
|
|
:value="isEdit ? 'Nouveau mot de passe (laisser vide pour conserver)' : 'Mot de passe'"
|
|
class="font-bold"
|
|
/>
|
|
<TextInput
|
|
id="password"
|
|
type="password"
|
|
class="mt-1 block w-full"
|
|
v-model="form.password"
|
|
:required="!isEdit"
|
|
placeholder="••••••••"
|
|
/>
|
|
<InputError class="mt-2" :message="form.errors.password" />
|
|
</div>
|
|
|
|
<!-- Rôle -->
|
|
<div>
|
|
<InputLabel for="role" value="Rôle d'accès" class="font-bold" />
|
|
<select
|
|
id="role"
|
|
v-model="form.role"
|
|
class="mt-1 block w-full text-sm rounded-lg border-slate-300 shadow-sm focus:border-sky-500 focus:ring-sky-500 dark:bg-slate-950 dark:border-slate-800 dark:text-slate-200"
|
|
required
|
|
>
|
|
<option value="admin_reseau">Admin Réseau (accès standard)</option>
|
|
<option value="chef_service">Chef de Service (accès administrateur)</option>
|
|
</select>
|
|
<InputError class="mt-2" :message="form.errors.role" />
|
|
</div>
|
|
|
|
<!-- Boutons -->
|
|
<div class="flex items-center justify-end gap-3 pt-6 border-t border-slate-100 dark:border-slate-850">
|
|
<Link
|
|
:href="route('users.index')"
|
|
class="inline-flex items-center px-4 py-2 border border-slate-300 text-sm font-semibold rounded-lg text-slate-700 bg-white hover:bg-slate-50 dark:bg-slate-900 dark:text-slate-300 dark:border-slate-850 dark:hover:bg-slate-800 transition-colors shadow-sm"
|
|
>
|
|
Annuler
|
|
</Link>
|
|
|
|
<PrimaryButton
|
|
type="submit"
|
|
:disabled="form.processing"
|
|
class="inline-flex items-center px-4 py-2 text-sm font-semibold text-white bg-sky-600 hover:bg-sky-500 rounded-lg shadow-sm focus:outline-none focus:ring-2 focus:ring-sky-500 transition-colors disabled:opacity-50"
|
|
>
|
|
<svg v-if="form.processing" class="animate-spin -ml-1 mr-3 h-4 w-4 text-white" fill="none" viewBox="0 0 24 24">
|
|
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
|
|
<path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
|
|
</svg>
|
|
{{ isEdit ? 'Enregistrer les modifications' : 'Créer l\'utilisateur' }}
|
|
</PrimaryButton>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</AuthenticatedLayout>
|
|
</template>
|