mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 06:41:42 +00:00
guardar fechas
This commit is contained in:
parent
3f19e79366
commit
c338cb87de
3 changed files with 63 additions and 3 deletions
|
@ -5,13 +5,16 @@ class MetadataDate < MetadataTemplate
|
|||
Date.today
|
||||
end
|
||||
|
||||
# Ver MetadataDocumentDate
|
||||
# Devuelve una fecha, si no hay ninguna es la fecha de hoy.
|
||||
#
|
||||
# @return [Date]
|
||||
def value
|
||||
return self[:value] if self[:value].is_a? Date
|
||||
return self[:value] if self[:value].is_a? Time
|
||||
return document_value || default_value unless self[:value]
|
||||
|
||||
begin
|
||||
self[:value] = Date.parse(self[:value] || document.data[name.to_s])
|
||||
self[:value] = Date.parse self[:value]
|
||||
rescue ArgumentError, TypeError
|
||||
default_value
|
||||
end
|
||||
|
|
|
@ -34,6 +34,11 @@ MetadataTemplate = Struct.new(:site, :document, :name, :label, :type,
|
|||
!value_was.nil? && value_was != value
|
||||
end
|
||||
|
||||
# Obtiene el valor del JekyllDocument
|
||||
def document_value
|
||||
document.data[name.to_s]
|
||||
end
|
||||
|
||||
# Trae el idioma actual del sitio o del panel
|
||||
# @return [String]
|
||||
def lang
|
||||
|
@ -154,7 +159,8 @@ MetadataTemplate = Struct.new(:site, :document, :name, :label, :type,
|
|||
end
|
||||
|
||||
def allowed_tags
|
||||
@allowed_tags ||= %w[strong em del u mark p h1 h2 h3 h4 h5 h6 ul ol li img iframe audio video div figure figcaption a].freeze
|
||||
@allowed_tags ||= %w[strong em del u mark p h1 h2 h3 h4 h5 h6 ul ol li img iframe audio video div figure
|
||||
figcaption a].freeze
|
||||
end
|
||||
|
||||
# Decifra el valor
|
||||
|
|
51
test/models/metadata/date_test.rb
Normal file
51
test/models/metadata/date_test.rb
Normal file
|
@ -0,0 +1,51 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'test_helper'
|
||||
|
||||
module Metadata
|
||||
class DateTest < ActiveSupport::TestCase
|
||||
DocumentStub = Struct.new(:data, keyword_init: true)
|
||||
|
||||
attr_reader :document, :metadata
|
||||
|
||||
setup do
|
||||
@layout = { 'field' => { 'type' => 'date' } }
|
||||
@document = DocumentStub.new(data: { 'field' => random_date })
|
||||
@metadata = MetadataDate.new(document: @document, name: :field)
|
||||
end
|
||||
|
||||
test 'la fecha por defecto es hoy' do
|
||||
assert_equal Date.today, metadata.default_value
|
||||
end
|
||||
|
||||
test 'si el documento tiene un valor usamos ese' do
|
||||
assert_equal document.data['field'], metadata.value
|
||||
end
|
||||
|
||||
test 'si el documento no tiene un valor usamos la fecha por defecto' do
|
||||
document.data.delete 'field'
|
||||
|
||||
assert_equal Date.today, metadata.value
|
||||
end
|
||||
|
||||
test 'si le damos un fecha mantenemos esa' do
|
||||
date = random_date
|
||||
metadata.value = date
|
||||
|
||||
assert_equal date, metadata.value
|
||||
end
|
||||
|
||||
test 'si le damos un texto obtenemos una fecha' do
|
||||
date = random_date.to_date
|
||||
metadata.value = date.strftime('%F')
|
||||
|
||||
assert_equal date, metadata.value
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def random_date
|
||||
(SecureRandom.random_number * 100).to_i.months.ago
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue