mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 04:16:21 +00:00
feat: mostrar que está cargando algo
This commit is contained in:
parent
23a9bbf8ca
commit
0d147c87bb
6 changed files with 61 additions and 8 deletions
|
@ -622,3 +622,33 @@ $bezier: cubic-bezier(0.75, 0, 0.25, 1);
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
// https://getbootstrap.com/docs/5.1/components/placeholders/
|
||||
.placeholder {
|
||||
display: inline-block;
|
||||
min-height: $spacer;
|
||||
cursor: wait;
|
||||
vertical-align: middle;
|
||||
opacity: .5;
|
||||
background-color: $grey;
|
||||
animation: placeholder-glow 2s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.placeholder-glow {
|
||||
.placeholder {
|
||||
-webkit-animation: placeholder-glow 2s ease-in-out infinite;
|
||||
animation: placeholder-glow 2s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@-webkit-keyframes placeholder-glow {
|
||||
50% {
|
||||
opacity: .2;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes placeholder-glow {
|
||||
50% {
|
||||
opacity: .2;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { Controller } from "stimulus";
|
||||
|
||||
export default class extends Controller {
|
||||
static targets = ["item", "search", "current"];
|
||||
static targets = ["item", "search", "current", "placeholder"];
|
||||
|
||||
connect() {
|
||||
// TODO: Stimulus >1
|
||||
|
@ -104,12 +104,19 @@ export default class extends Controller {
|
|||
this.originalValue.push(itemTarget.dataset.value);
|
||||
this.newArrayValueURL.searchParams.set("value", itemTarget.dataset.value);
|
||||
|
||||
const placeholder = this.placeholderTarget.content.firstElementChild.cloneNode(true);
|
||||
|
||||
this.currentTarget.appendChild(placeholder);
|
||||
|
||||
// TODO: Renderizarlas todas juntas
|
||||
fetch(this.newArrayValueURL)
|
||||
.then((response) => response.text())
|
||||
.then((body) =>
|
||||
this.currentTarget.insertAdjacentHTML("beforeend", body),
|
||||
);
|
||||
.then((body) => {
|
||||
const template = document.createElement("template");
|
||||
template.innerHTML = body;
|
||||
|
||||
placeholder.replaceWith(template.content.firstElementChild);
|
||||
});
|
||||
}
|
||||
|
||||
// TODO: Stimulus >1
|
||||
|
|
|
@ -6,12 +6,15 @@
|
|||
form_id = "form-#{Nanoid.generate}"
|
||||
|
||||
%div{ data: { controller: 'modal array enter', 'array-original-value': metadata.value.to_json, 'array-new-array-value': site_posts_new_array_value_path(site) } }
|
||||
%template{ data: { target: 'array.placeholder' } }
|
||||
.col.mb-3{ 'aria-hidden': 'true' }
|
||||
%span.placeholder.w-100
|
||||
|
||||
.form-group
|
||||
= hidden_field_tag name, ''
|
||||
.d-flex.align-items-center.justify-content-between
|
||||
= label_tag id, post_label_t(attribute, post: post)
|
||||
= render 'bootstrap/btn', content: t('.edit'), action: 'modal#show'
|
||||
.row.row-cols-1.row-cols-md-2{ data: { target: 'array.current' } }
|
||||
-# Mostramos la lista de valores actuales.
|
||||
|
||||
Al aceptar el modal, se vacía el listado y se completa en base a
|
||||
|
@ -23,6 +26,7 @@
|
|||
|
||||
Para poder cancelar, mantenemos el estado original y desactivamos
|
||||
o activamos los ítemes según estén incluidos en esa lista o no.
|
||||
.row.row-cols-1.row-cols-md-2.no-gutters.placeholder-glow{ data: { target: 'array.current' } }
|
||||
- metadata.value.sort_by(&:remove_diacritics).each do |value|
|
||||
= render 'posts/new_array_value', value: value
|
||||
|
||||
|
|
|
@ -19,6 +19,10 @@
|
|||
value_list_id = "#{id}_body"
|
||||
|
||||
%div{ id: modal_id, data: { controller: 'modal array', 'array-original-value': metadata.value.to_json, 'array-new-array-value': site_posts_new_related_post_path(site) } }
|
||||
%template{ data: { target: 'array.placeholder' } }
|
||||
.col.p-3{ 'aria-hidden': 'true' }
|
||||
%span.placeholder.w-100
|
||||
|
||||
.form-group
|
||||
= hidden_field_tag name, ''
|
||||
.d-flex.align-items-center.justify-content-between
|
||||
|
@ -36,7 +40,7 @@
|
|||
|
||||
Para poder cancelar, mantenemos el estado original y desactivamos
|
||||
o activamos los ítemes según estén incluidos en esa lista o no.
|
||||
.row.row-cols-3.row-cols-md-4{ data: { target: 'array.current' } }
|
||||
.row.row-cols-3.row-cols-md-4.no-gutters.placeholder-glow{ data: { target: 'array.current' } }
|
||||
- metadata.values.slice(*metadata.value).each do |value|
|
||||
= render 'posts/new_array_value', value: value
|
||||
|
||||
|
|
|
@ -19,6 +19,10 @@
|
|||
value_list_id = "#{id}_body"
|
||||
|
||||
%div{ id: modal_id, data: { controller: 'modal array', 'array-original-value': metadata.value.to_json, 'array-new-array-value': site_posts_new_related_post_path(site) } }
|
||||
%template{ data: { target: 'array.placeholder' } }
|
||||
.col.p-3{ 'aria-hidden': 'true' }
|
||||
%span.placeholder.w-100
|
||||
|
||||
.form-group
|
||||
= hidden_field_tag name, ''
|
||||
.d-flex.align-items-center.justify-content-between
|
||||
|
@ -35,7 +39,7 @@
|
|||
|
||||
Para poder cancelar, mantenemos el estado original y desactivamos
|
||||
o activamos los ítemes según estén incluidos en esa lista o no.
|
||||
.row.row-cols-3.row-cols-md-4{ data: { target: 'array.current' } }
|
||||
.row.row-cols-3.row-cols-md-4.no-gutters.placeholder-glow{ data: { target: 'array.current' } }
|
||||
- metadata.values.slice(*metadata.value).each do |value|
|
||||
= render 'posts/new_array_value', value: value
|
||||
|
||||
|
|
|
@ -8,6 +8,10 @@
|
|||
form_id = "form-#{Nanoid.generate}"
|
||||
|
||||
%div{ data: { controller: 'modal array', 'array-original-value': metadata.value.to_json, 'array-new-array-value': site_posts_new_array_value_path(site) } }
|
||||
%template{ data: { target: 'array.placeholder' } }
|
||||
.col.mb-3{ 'aria-hidden': 'true' }
|
||||
%span.placeholder.w-100
|
||||
|
||||
.form-group
|
||||
= hidden_field_tag name, ''
|
||||
.d-flex.align-items-center.justify-content-between
|
||||
|
@ -25,7 +29,7 @@
|
|||
|
||||
Para poder cancelar, mantenemos el estado original y desactivamos
|
||||
o activamos los ítemes según estén incluidos en esa lista o no.
|
||||
.row.row-cols-1.row-cols-md-2{ data: { target: 'array.current' } }
|
||||
.row.row-cols-1.row-cols-md-2.no-gutters.placeholder-glow{ data: { target: 'array.current' } }
|
||||
- metadata.values.slice(*metadata.value).each_key do |value|
|
||||
= render 'posts/new_array_value', value: value
|
||||
|
||||
|
|
Loading…
Reference in a new issue