mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 04:11:41 +00:00
mostrar un mensaje mientras se envía el form
This commit is contained in:
parent
af512e788d
commit
8c2928e833
4 changed files with 8 additions and 0 deletions
|
@ -9,13 +9,17 @@ $(document).on('turbolinks:load', function() {
|
|||
$('.submit-post').click(function(e) {
|
||||
var form = $(this).parents('form.form');
|
||||
var invalid_help = $('.invalid_help');
|
||||
var sending_help = $('.sending_help');
|
||||
|
||||
invalid_help.addClass('d-none');
|
||||
sending_help.addClass('d-none');
|
||||
|
||||
if (form[0].checkValidity() === false) {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
invalid_help.removeClass('d-none');
|
||||
} else {
|
||||
sending_help.removeClass('d-none');
|
||||
}
|
||||
|
||||
form.addClass('was-validated');
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
.form-group
|
||||
= submit_tag t('posts.save'), class: 'btn btn-success submit-post'
|
||||
.invalid_help.alert.alert-danger.d-none= @site.config.dig('invalid_help') || t('posts.invalid_help')
|
||||
.sending_help.alert.alert-success.d-none= @site.config.dig('sending_help') || t('posts.sending_help')
|
||||
- if current_user.is_a? Usuaria
|
||||
.form-group
|
||||
= label_tag 'post_author', t('posts.author')
|
||||
|
@ -127,5 +128,6 @@
|
|||
.form-group
|
||||
= submit_tag t('posts.save'), class: 'btn btn-success submit-post'
|
||||
.invalid_help.alert.alert-danger.d-none= @site.config.dig('invalid_help') || t('posts.invalid_help')
|
||||
.sending_help.alert.alert-success.d-none= @site.config.dig('sending_help') || t('posts.sending_help')
|
||||
- if post = @post.template.get_front_matter('post')
|
||||
= render 'layouts/help', help: CommonMarker.render_doc(post).to_html
|
||||
|
|
|
@ -242,3 +242,4 @@ en:
|
|||
multiple: 'You can select several images'
|
||||
url: 'The address must start with http:// or https://'
|
||||
invalid_help: It looks like the form is incomplete. Check the red-colored fields to complete it.
|
||||
sending_help: Saving, please wait...
|
||||
|
|
|
@ -249,3 +249,4 @@ es:
|
|||
multiple: 'Puedes seleccionar varias imágenes'
|
||||
url: 'La dirección debe comenzar con http:// o https://'
|
||||
invalid_help: Parece que el formulario no está completo. Verifica los campos marcados en rojo para completarlo.
|
||||
sending_help: Guardando, por favor espera...
|
||||
|
|
Loading…
Reference in a new issue