2023-05-05 07:18:57 +00:00
|
|
|
{{define "content"}}
|
|
|
|
|
2023-05-05 08:22:42 +00:00
|
|
|
{{ if eq (index .ViewState.vehicle.Administrators 0) .Group.ID }}
|
2023-05-05 07:18:57 +00:00
|
|
|
|
|
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 md:px-8">
|
|
|
|
<h1 class="text-2xl font-semibold text-gray-900">Modifier un véhicule</h1>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 md:px-8 mt-8" x-data="{
|
|
|
|
fields: {
|
|
|
|
licence_plate: '{{ .ViewState.vehicle.Data.licence_plate }}',
|
|
|
|
name: '{{ .ViewState.vehicle.Data.name }}',
|
|
|
|
},
|
|
|
|
rules: {
|
|
|
|
licence_plate: ['required', 'regexMatch:^[A-Z]{1,2}-[0-9]{1,3}-[A-Z]{1,2}$'],
|
|
|
|
name: ['required'],
|
|
|
|
},
|
|
|
|
formValidation: {
|
|
|
|
valid: false,
|
|
|
|
fields: {
|
|
|
|
name: {valid: null},
|
|
|
|
licence_plate: {valid: null},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
isFormValid: true,
|
|
|
|
validate() {
|
|
|
|
this.formValidation = Iodine.assert(this.fields, this.rules)
|
|
|
|
},
|
|
|
|
validateField(field) {
|
|
|
|
this.formValidation.fields[field] = Iodine.assert(this.fields[field], this.rules[field])
|
|
|
|
},
|
|
|
|
submit(event) {
|
|
|
|
this.validate()
|
|
|
|
if(!this.formValidation.valid) {
|
|
|
|
this.isFormValid = false
|
|
|
|
event.preventDefault()
|
|
|
|
}
|
|
|
|
return this.formValidation.valid
|
|
|
|
}
|
|
|
|
}">
|
|
|
|
<form class="space-y-6" method="POST" @submit="submit">
|
|
|
|
<div class="bg-white shadow px-4 py-5 sm:rounded-lg sm:p-6">
|
|
|
|
<div class="md:grid md:grid-cols-3 md:gap-6">
|
|
|
|
<div class="md:col-span-1">
|
|
|
|
<h3 class="text-lg font-medium leading-6 text-gray-900">Identité du véhicule</h3>
|
|
|
|
<p class="mt-1 text-sm text-gray-500">Informations de base sur le véhicule</p>
|
|
|
|
</div>
|
|
|
|
<div class="mt-5 md:mt-0 md:col-span-2">
|
|
|
|
<div class="grid grid-cols-3 md:grid-cols-6 gap-6">
|
|
|
|
<div class="col-span-5">
|
|
|
|
<label for="name" class="block text-sm font-medium text-gray-700">Modèle (ou nom donné au
|
|
|
|
véhicule)</label>
|
|
|
|
<input type="text" name="name" id="name"
|
|
|
|
class="mt-1 focus:ring-co-blue focus:border-co-blue block w-full shadow-sm sm:text-sm rounded-2xl"
|
|
|
|
x-model="fields.name" @blur="validateField('name')"
|
|
|
|
:class="formValidation.fields.name.valid == false ? 'border-co-red border-2' : 'border-gray-300'">
|
|
|
|
</div>
|
|
|
|
<div class="col-span-3">
|
|
|
|
{{template "vehicle_type_select" .}}
|
|
|
|
</div>
|
|
|
|
<div class="col-span-3">
|
|
|
|
<label for="licence_plate"
|
|
|
|
class="block text-sm font-medium text-gray-700">Immatriculation</label>
|
|
|
|
<input type="text" name="licence_plate" id="licence_plate" placeholder="XX-123-YY"
|
|
|
|
class="mt-1 focus:ring-co-blue focus:border-co-blue block w-full shadow-sm sm:text-sm rounded-2xl"
|
|
|
|
x-model="fields.licence_plate"
|
|
|
|
@blur="fields.licence_plate = fields.licence_plate.toUpperCase(); validateField('licence_plate')"
|
|
|
|
:class="formValidation.fields.licence_plate.valid == false ? 'border-co-red border-2' : 'border-gray-300'">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="bg-white shadow px-4 py-5 sm:rounded-lg sm:p-6">
|
|
|
|
<div class="md:grid md:grid-cols-3 md:gap-6">
|
|
|
|
<div class="md:col-span-1">
|
|
|
|
<h3 class="text-lg font-medium leading-6 text-gray-900">Informations pratiques</h3>
|
|
|
|
<p class="mt-1 text-sm text-gray-500">Informations pratiques pour la réservation</p>
|
|
|
|
</div>
|
|
|
|
<div class="mt-5 md:mt-0 md:col-span-2">
|
|
|
|
{{ $fieldName := "address" }}
|
|
|
|
{{if .ViewState.vehicle.Data.address}}
|
|
|
|
{{$default := .ViewState.vehicle.Data.address}}
|
|
|
|
{{ template "address" dict "FieldName" $fieldName "Default" $default}}
|
|
|
|
{{else}}
|
|
|
|
{{ template "address_autocomplete" dict "FieldName" $fieldName}}
|
|
|
|
{{end}}
|
|
|
|
<div class="mt-5">
|
|
|
|
<label for="informations" class="block text-sm font-medium text-gray-700">Informations pratiques pour le bénéficiaire</label>
|
|
|
|
<div class="mt-1">
|
|
|
|
<textarea rows="4" name="informations" id="informations" value="{{.ViewState.vehicle.Data.informations}}"
|
|
|
|
class="shadow-sm focus:ring-co-blue focus:border-co-blue block w-full sm:text-sm border-gray-300 rounded-2xl">{{ if .ViewState.vehicle.Data.informations}} {{.ViewState.vehicle.Data.informations}} {{end}}</textarea>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex justify-end">
|
|
|
|
<p x-show="! isFormValid" class="px-4 py-2 text-sm text-co-red">Certains champs de sont pas valides.</p>
|
|
|
|
<a href="/app/vehicles-management/fleet/{{.ViewState.vehicle.ID}}">
|
|
|
|
<button type="button"
|
|
|
|
class="bg-white py-2 px-4 border border-gray-300 rounded-2xl shadow-sm text-sm font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-co-blue">Annuler</button>
|
|
|
|
</a>
|
|
|
|
<button type="submit"
|
|
|
|
class="ml-3 inline-flex justify-center py-2 px-4 border border-transparent shadow-sm text-sm font-medium rounded-2xl text-white bg-co-blue hover:bg-co-blue focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-co-blue">Modifier
|
|
|
|
le véhicule</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2023-05-05 08:22:42 +00:00
|
|
|
|
|
|
|
{{else}}
|
|
|
|
<div class="fixed inset-0 bg-gray-500 bg-opacity-75 transition-opacity"></div>
|
|
|
|
|
|
|
|
<div class="fixed inset-0 z-10 overflow-y-auto">
|
|
|
|
<div class="flex min-h-full items-end justify-center p-4 text-center sm:items-center sm:p-0">
|
|
|
|
|
|
|
|
<div class="relative transform overflow-hidden rounded-lg bg-white px-4 pt-5 pb-4 text-left shadow-xl transition-all sm:my-8 sm:w-full max-w-lg sm:p-6">
|
|
|
|
<div>
|
|
|
|
<div class="mx-auto flex h-12 w-12 items-center justify-center rounded-co bg-co-blue text-white">
|
|
|
|
{{.IconSet.Icon "hero:outline/information-circle" "h-6 w-6"}}
|
|
|
|
</div>
|
|
|
|
<div class="mt-3 text-center sm:mt-5">
|
|
|
|
<h3 class="text-lg font-medium leading-6 text-gray-900" id="modal-title">Vous n'avez pas le droit de modifier ce véhicule</h3>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="flex justify-center items-center mt-5 sm:mt-6 sm:grid sm:grid-flow-row-dense ">
|
|
|
|
<!-- class="flex justify-center items-center py-2 px-3 border-t dark:border-gray-600 -->
|
|
|
|
<a href="/app/vehicles-management/fleet/{{.ViewState.vehicle.ID}}" class="rounded-2xl mt-3 inline-flex w-full justify-center rounded-l-2xl border border-gray-300 bg-white px-4 py-2 text-base font-medium text-gray-700 shadow-sm hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-co-blue focus:ring-offset-2 sm:col-start-1 sm:mt-0 sm:text-sm">Annuler</a>
|
|
|
|
<!-- <button type="submit" class="inline-flex w-full justify-center rounded-r-2xl border border-transparent bg-co-blue px-4 py-2 text-base font-medium text-white shadow-sm hover:bg-co-blue focus:outline-none focus:ring-2 focus:ring-co-blue focus:ring-offset-2 sm:col-start-2 sm:text-sm">Confirmation</button> -->
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2023-05-05 07:18:57 +00:00
|
|
|
{{end}}
|