mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-21 21:56:22 +00:00
reimplementar borradores
This commit is contained in:
parent
0369716c59
commit
80457588dd
11 changed files with 92 additions and 24 deletions
13
app/models/metadata_boolean.rb
Normal file
13
app/models/metadata_boolean.rb
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
# Implementa valores por sí o por no
|
||||||
|
class MetadataBoolean < MetadataTemplate
|
||||||
|
def default_value
|
||||||
|
false
|
||||||
|
end
|
||||||
|
|
||||||
|
# Convertir el valor que pasemos a boolean
|
||||||
|
def value
|
||||||
|
self[:value].present? || document.data.fetch('draft', default_value)
|
||||||
|
end
|
||||||
|
end
|
|
@ -21,15 +21,21 @@
|
||||||
= form_tag url, method: method, class: 'form post', multipart: true do
|
= form_tag url, method: method, class: 'form post', multipart: true do
|
||||||
|
|
||||||
-# Botones de guardado
|
-# Botones de guardado
|
||||||
= render 'posts/submit', site: site
|
= render 'posts/submit', site: site, post: post
|
||||||
|
|
||||||
-# Dibuja cada atributo
|
-# Dibuja cada atributo
|
||||||
- post.attributes.each do |attribute|
|
:ruby
|
||||||
- metadata = post.send(attribute)
|
post.attributes.each do |attribute|
|
||||||
- type = metadata.type
|
# El borrador se muestra distinto
|
||||||
= render "posts/attributes/#{type}",
|
next if attribute == :draft
|
||||||
post: post, attribute: attribute,
|
|
||||||
metadata: metadata, site: site
|
metadata = post.send(attribute)
|
||||||
|
type = metadata.type
|
||||||
|
|
||||||
|
haml_io.write render("posts/attributes/#{type}",
|
||||||
|
post: post, attribute: attribute,
|
||||||
|
metadata: metadata, site: site)
|
||||||
|
end
|
||||||
|
|
||||||
-# Botones de guardado
|
-# Botones de guardado
|
||||||
= render 'posts/submit', site: site
|
= render 'posts/submit', site: site, post: post
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
.form-group
|
.form-group
|
||||||
= submit_tag t('.save'), class: 'btn btn-success submit-post'
|
= submit_tag t('.save'), class: 'btn btn-success submit-post'
|
||||||
= submit_tag t('.save_incomplete'),
|
-# Permitir guardar como borrador
|
||||||
class: 'btn btn-info submit-post-incomplete',
|
- if post.attributes.include? :draft
|
||||||
name: 'commit_incomplete'
|
= submit_tag t('.save_draft'),
|
||||||
|
class: 'btn btn-info submit-post-draft',
|
||||||
|
name: 'post[draft]'
|
||||||
.invalid_help.alert.alert-danger.d-none
|
.invalid_help.alert.alert-danger.d-none
|
||||||
= site.config.fetch('invalid_help', t('.invalid_help'))
|
= site.config.fetch('invalid_help', t('.invalid_help'))
|
||||||
.sending_help.alert.alert-success.d-none
|
.sending_help.alert.alert-success.d-none
|
||||||
|
|
3
app/views/posts/attribute_ro/_boolean.haml
Normal file
3
app/views/posts/attribute_ro/_boolean.haml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
%tr{ id: attribute }
|
||||||
|
%th= post_label_t(attribute, post: post)
|
||||||
|
%td= t "_#{post.send(attribute).value}"
|
9
app/views/posts/attributes/_boolean.haml
Normal file
9
app/views/posts/attributes/_boolean.haml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
.form-check{ class: invalid(post, attribute) }
|
||||||
|
= check_box_tag "post[#{attribute}", metadata.value, metadata.value,
|
||||||
|
class: 'form-check-input',
|
||||||
|
aria: { describedby: id_for_help(attribute) }
|
||||||
|
= label_tag "post_#{attribute}", post_label_t(attribute, post: post),
|
||||||
|
class: 'form-check-label'
|
||||||
|
|
||||||
|
= render 'posts/attribute_feedback',
|
||||||
|
post: post, attribute: attribute, metadata: metadata
|
|
@ -35,6 +35,10 @@
|
||||||
%td
|
%td
|
||||||
= link_to post.title.value,
|
= link_to post.title.value,
|
||||||
site_post_path(@site, post.id)
|
site_post_path(@site, post.id)
|
||||||
|
- if post.attributes.include? :draft
|
||||||
|
- if post.draft.value
|
||||||
|
%span.badge.badge-primary
|
||||||
|
= post_label_t(:draft, post: post)
|
||||||
- if post.attributes.include? :categories
|
- if post.attributes.include? :categories
|
||||||
- unless post.categories.value.empty?
|
- unless post.categories.value.empty?
|
||||||
%br
|
%br
|
||||||
|
|
|
@ -21,18 +21,19 @@
|
||||||
-#
|
-#
|
||||||
TODO: Cambiar por un método que nos deje interactuar
|
TODO: Cambiar por un método que nos deje interactuar
|
||||||
directamente con los metadatos
|
directamente con los metadatos
|
||||||
- @post.attributes.each do |attr|
|
:ruby
|
||||||
:ruby
|
@post.attributes.each do |attr|
|
||||||
metadata = @post.send(attr)
|
metadata = @post.send(attr)
|
||||||
|
|
||||||
next unless metadata.front_matter?
|
next unless metadata.front_matter?
|
||||||
|
|
||||||
= render "posts/attribute_ro/#{metadata.type}", post: @post,
|
haml_io.write render("posts/attribute_ro/#{metadata.type}",
|
||||||
attribute: attr, metadata: metadata, tags: all_html_tags
|
post: @post, attribute: attr,
|
||||||
|
metadata: metadata,
|
||||||
|
tags: all_html_tags)
|
||||||
|
end
|
||||||
|
|
||||||
-# Mostrar todo lo que no va en el front_matter (el contenido)
|
-# Mostrar todo lo que no va en el front_matter (el contenido)
|
||||||
- @post.attributes.each do |attr|
|
- @post.attributes.each do |attr|
|
||||||
|
|
||||||
- next if @post.send(attr).front_matter?
|
- next if @post.send(attr).front_matter?
|
||||||
|
|
||||||
%section{ id: attr }
|
%section{ id: attr }
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
en:
|
en:
|
||||||
|
_true: Yes
|
||||||
|
_false: No
|
||||||
dir: ltr
|
dir: ltr
|
||||||
site_service:
|
site_service:
|
||||||
create: 'Created %{name}'
|
create: 'Created %{name}'
|
||||||
|
@ -305,7 +307,7 @@ en:
|
||||||
front_matter: Post metadata
|
front_matter: Post metadata
|
||||||
submit:
|
submit:
|
||||||
save: 'Save'
|
save: 'Save'
|
||||||
save_incomplete: 'Save as draft'
|
save_draft: 'Save as draft'
|
||||||
invalid_help: 'Some fields need attention! Please search for the fields marked as invalid.'
|
invalid_help: 'Some fields need attention! Please search for the fields marked as invalid.'
|
||||||
attributes:
|
attributes:
|
||||||
date:
|
date:
|
||||||
|
@ -327,8 +329,6 @@ en:
|
||||||
categories: 'Everything'
|
categories: 'Everything'
|
||||||
index: 'Posts'
|
index: 'Posts'
|
||||||
edit: 'Edit'
|
edit: 'Edit'
|
||||||
draft: revision
|
|
||||||
incomplete: draft
|
|
||||||
open: 'Tip: You can add new options by typing them and pressing Enter'
|
open: 'Tip: You can add new options by typing them and pressing Enter'
|
||||||
private: '🔒 The values of this field will remain private'
|
private: '🔒 The values of this field will remain private'
|
||||||
select:
|
select:
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
es:
|
es:
|
||||||
|
_true: Sí
|
||||||
|
_false: No
|
||||||
dir: ltr
|
dir: ltr
|
||||||
site_service:
|
site_service:
|
||||||
create: 'Creado %{name}'
|
create: 'Creado %{name}'
|
||||||
|
@ -316,7 +318,7 @@ es:
|
||||||
front_matter: Metadatos del artículo
|
front_matter: Metadatos del artículo
|
||||||
submit:
|
submit:
|
||||||
save: 'Guardar'
|
save: 'Guardar'
|
||||||
save_incomplete: 'Guardar como borrador'
|
save_draft: 'Guardar como borrador'
|
||||||
invalid_help: '¡Te faltan completar algunos campos! Busca los que estén marcados como inválidos'
|
invalid_help: '¡Te faltan completar algunos campos! Busca los que estén marcados como inválidos'
|
||||||
attributes:
|
attributes:
|
||||||
date:
|
date:
|
||||||
|
@ -338,8 +340,6 @@ es:
|
||||||
new_with_template: 'Comenzar %{template}'
|
new_with_template: 'Comenzar %{template}'
|
||||||
index: 'Artículos'
|
index: 'Artículos'
|
||||||
edit: 'Editar'
|
edit: 'Editar'
|
||||||
draft: en revisión
|
|
||||||
incomplete: borrador
|
|
||||||
open: 'Nota: Puedes agregar más opciones a medida que las escribes y presionas Entrar'
|
open: 'Nota: Puedes agregar más opciones a medida que las escribes y presionas Entrar'
|
||||||
private: '🔒 Los valores de este campo serán privados'
|
private: '🔒 Los valores de este campo serán privados'
|
||||||
select:
|
select:
|
||||||
|
|
27
doc/borradores.md
Normal file
27
doc/borradores.md
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
# Borradores
|
||||||
|
|
||||||
|
En Jekyll, los borradores se encuentran en el directorio `_drafts`.
|
||||||
|
|
||||||
|
En Sutty, para traducir a distintos idiomas, utilizamos "colecciones"
|
||||||
|
con el nombre del idioma. Nuestra extensión de traducciones reemplaza
|
||||||
|
el directorio `_posts` por cada uno de estos y genera un sitio por cada
|
||||||
|
idioma. De esta forma no tenemos que hacer adaptaciones más profundas a
|
||||||
|
las plantillas.
|
||||||
|
|
||||||
|
Hasta ahora lo que hacíamos es agregar un metadata `draft: true` a los
|
||||||
|
artículos y luego los filtrábamos con una extensión. Creemos que esta
|
||||||
|
opción es mínima y suficiente para lo que queremos lograr (excluir
|
||||||
|
algunos artículos de la compilación).
|
||||||
|
|
||||||
|
De lo contrario, tendríamos que implementar lo siguiente, que no es
|
||||||
|
trivial:
|
||||||
|
|
||||||
|
* Mover artículos de lugar entre `_lang/` y `_lang/_drafts`, utilizando
|
||||||
|
`mv` y `rugged`.
|
||||||
|
|
||||||
|
* Implementar acceso a borradores por colección. Jekyll carga los
|
||||||
|
borradores solo desde `_drafts`, con lo que no podríamos saber a qué
|
||||||
|
idioma pertenece a menos que ignoremos ese dato o lo guardemos como
|
||||||
|
metadato...
|
||||||
|
|
||||||
|
En este momento es más simple para Sutty mantener el `draft: true`.
|
|
@ -93,8 +93,8 @@ Al instanciar un `Post`, se pasan el sitio y la plantilla por defecto.
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
* Reimplementar draft e incomplete (por qué eran distintos?)
|
|
||||||
* Reimplementar subida de imagenes/archivos
|
* Reimplementar subida de imagenes/archivos
|
||||||
|
* Implementar TUI-Editor, ACE y otros editores de texto
|
||||||
* Leer artículos a medida que se los necesita en lugar de todos juntos.
|
* Leer artículos a medida que se los necesita en lugar de todos juntos.
|
||||||
* Reimplementar glosario (se crea un artículo por cada categoría
|
* Reimplementar glosario (se crea un artículo por cada categoría
|
||||||
utilizada)
|
utilizada)
|
||||||
|
@ -102,3 +102,6 @@ Al instanciar un `Post`, se pasan el sitio y la plantilla por defecto.
|
||||||
* Reimplementar campo 'pre' y 'post' en los layouts.yml
|
* Reimplementar campo 'pre' y 'post' en los layouts.yml
|
||||||
* Convertir idiomas disponibles a pestañas?
|
* Convertir idiomas disponibles a pestañas?
|
||||||
* Implementar traducciones sin adivinar. Vincular artículos entre sí
|
* Implementar traducciones sin adivinar. Vincular artículos entre sí
|
||||||
|
* Renombrar Metadata* a Metadata::* para poder organizarlas en
|
||||||
|
subdirectorios
|
||||||
|
* Implementar edición de layouts de metadatos
|
||||||
|
|
Loading…
Reference in a new issue