56 lines
3.9 KiB
HTML
56 lines
3.9 KiB
HTML
{{ define "submit_with_sms" }}
|
|
{{ $dialog := (or .ComponentState.dialogVar "dialog") }}
|
|
{{ $fieldName := (or .ComponentState.fieldName "message") }}
|
|
{{ $submitText := (or .ComponentState.submitText "Valider") }}
|
|
{{ $headerText := (or .ComponentState.headerText "Envoyer un message") }}
|
|
{{ $cancelText := (or .ComponentState.cancelText "Annuler" )}}
|
|
{{ $validateText := (or .ComponentState.validateText "Envoyer" )}}
|
|
{{ $infoText := (or .ComponentState.infoText "Le message suivant sera envoyé. Vous pouvez le personnaliser." )}}
|
|
{{ $doNotSendText := (or .ComponentState.doNotSendText "Ne pas envoyer le message par SMS." )}}
|
|
{{ $doNotSendOption := eq .ComponentState.doNotSendOption true }}
|
|
<div x-data="{ {{ $dialog }}: false}" class="text-center">
|
|
<button @click="{{ $dialog }} = !{{ $dialog }}" type="button" class="bg-co-blue border-gray-300 border px-4 py-2 text-white items-center text-sm rounded-2xl focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-co-blue">
|
|
{{ .ComponentState.submitText }}
|
|
</button>
|
|
<div x-show="{{$dialog}}" class="relative z-10" aria-labelledby="modal-title" role="dialog" aria-modal="true">
|
|
<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/paper-airplane" "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">{{ $headerText }}</h3>
|
|
<div class="mt-2">
|
|
<p class="text-sm text-gray-500"></p>
|
|
</div>
|
|
<div>
|
|
<label for="message" class="block text-sm font-medium text-gray-700">{{$infoText}}</label>
|
|
<div class="mt-1">
|
|
<textarea rows="4" name="message" id="message" class="block w-full rounded-2xl border-gray-300 shadow-sm focus:border-co-blue focus:ring-co-blue sm:text-sm">{{template "sms_template" .SMSState }}</textarea>
|
|
</div>
|
|
</div>
|
|
{{ if $doNotSendOption}}
|
|
<div>
|
|
<div class="mt-1 flex flex-row justify-items-center items-center">
|
|
<div class="flex-none m-4"><input type="checkbox" name="do_not_send" id="do_not_send" class="block w-full rounded-2xl border-gray-300 shadow-sm focus:border-co-blue focus:ring-co-blue sm:text-sm" /></div>
|
|
<label for="do_not_send" class="flex text-sm text-gray-700 align-middle">{{$doNotSendText}}</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
<div class="mt-5 sm:mt-6 sm:grid sm:grid-flow-row-dense sm:grid-cols-2">
|
|
<button @click="{{$dialog}} = !{{$dialog}}" type="button" class="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">{{ $cancelText }}</button>
|
|
<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">{{ $validateText }}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|