5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-24 18:06:21 +00:00

fix: lints

This commit is contained in:
maki 2024-06-04 12:49:37 -03:00
parent 8992ff4dfe
commit 70528aa602
50 changed files with 492 additions and 371 deletions

View file

@ -670,3 +670,16 @@ a.black {
}
}
.break-all {
word-break: break-all;
}
.details-agregar {
@extend .d-flex;
@extend .border;
@extend .border-magenta;
@extend .justify-content-between;
@extend .align-items-center;
@extend .w-100;
@extend .mb-3;
}

View file

@ -86,9 +86,7 @@ class ApplicationController < ActionController::Base
end
def site
@site ||= find_site.tap do |s|
s.reindex_changes!
end
@site ||= find_site.tap(&:reindex_changes!)
end
protected

View file

@ -175,7 +175,7 @@ class StatsController < ApplicationController
locale: I18n.locale,
empty: I18n.t('stats.index.empty', **please_return_at),
loading: I18n.t('stats.index.loading'),
html: %(<div id="%{id}" class="d-flex align-items-center justify-content-center" style="height: %{height}; width: %{width};">%{loading}</div>)
html: %(<div id="%<id>s" class="d-flex align-items-center justify-content-center" style="height: %<height>s; width: %<width>s;">%<loading>s</div>)
}
end

View file

@ -30,10 +30,9 @@ module ApplicationHelper
if k == key
case v
when Array then [k, v - [value]]
else nil
end
else
[ k, v ]
[k, v]
end
end.compact.to_h
end

View file

@ -17,7 +17,7 @@ class DeployDistributedPress < Deploy
before_create :create_remote_site!
before_destroy :delete_remote_site!
DEPENDENCIES = %i[deploy_local]
DEPENDENCIES = %i[deploy_local].freeze
# Actualiza la información y luego envía los cambios
#
@ -32,9 +32,7 @@ class DeployDistributedPress < Deploy
create_remote_site! if remote_site_id.blank?
save
if remote_site_id.blank?
raise DeployJob::DeployException, 'El sitio no se creó en Distributed Press'
end
raise DeployJob::DeployException, 'El sitio no se creó en Distributed Press' if remote_site_id.blank?
site_client.tap do |c|
stdout = Thread.new(publisher.logger_out) do |io|
@ -54,7 +52,7 @@ class DeployDistributedPress < Deploy
end
if status
self.remote_info[:distributed_press] = c.show(publishing_site).to_h
remote_info[:distributed_press] = c.show(publishing_site).to_h
save
end
@ -123,7 +121,10 @@ class DeployDistributedPress < Deploy
#
# @return [DistributedPressPublisher::V1::Schemas::NewSite]
def create_site
DistributedPress::V1::Schemas::NewSite.new.call(domain: hostname, protocols: { http: true, ipfs: true, hyper: true })
DistributedPress::V1::Schemas::NewSite.new.call(domain: hostname,
protocols: {
http: true, ipfs: true, hyper: true
})
end
# Crea el sitio en la instancia con el hostname especificado
@ -149,7 +150,7 @@ class DeployDistributedPress < Deploy
# @param log [String]
# @return [nil]
def create_stat!(status, log)
build_stats.create action: publisher.to_s,log: log, seconds: time_spent_in_seconds, bytes: size, status: status
build_stats.create action: publisher.to_s, log: log, seconds: time_spent_in_seconds, bytes: size, status: status
nil
end

View file

@ -86,7 +86,7 @@ class DeployLocal < Deploy
'AIRBRAKE_PROJECT_ID' => site.id.to_s,
'AIRBRAKE_PROJECT_KEY' => site.airbrake_api_key,
'YARN_CACHE_FOLDER' => yarn_cache_dir,
'GEMS_SOURCE' => ENV['GEMS_SOURCE']
'GEMS_SOURCE' => ENV.fetch('GEMS_SOURCE', nil)
}
end

View file

@ -5,7 +5,7 @@
class DeployRsync < Deploy
store :values, accessors: %i[hostname destination host_keys], coder: JSON
DEPENDENCIES = %i[deploy_local deploy_zip]
DEPENDENCIES = %i[deploy_local deploy_zip].freeze
def deploy(output: false)
ssh? && rsync(output: output)
@ -39,6 +39,7 @@ class DeployRsync < Deploy
# @return [Boolean]
def ssh?
return true if destination.start_with? 'rsync://'
user, host = user_host
ssh_available = false
@ -66,7 +67,7 @@ class DeployRsync < Deploy
{
'HOME' => home_dir,
'PATH' => '/usr/bin',
'LANG' => ENV['LANG']
'LANG' => ENV.fetch('LANG', nil)
}
end
@ -92,7 +93,8 @@ class DeployRsync < Deploy
#
# @return [Boolean]
def rsync(output: false)
run %(rsync -aviH --delete-after --timeout=5 #{Shellwords.escape source}/ #{Shellwords.escape destination}/), output: output
run %(rsync -aviH --delete-after --timeout=5 #{Shellwords.escape source}/ #{Shellwords.escape destination}/),
output: output
end
# El origen es el destino de la compilación

View file

@ -38,15 +38,15 @@ class IndexedPost < ApplicationRecord
#
# @param :attribute [String,Symbol]
# @return [Array]
scope :everything_of, ->(attribute) do
scope :everything_of, lambda { |attribute|
where('front_matter ? :attribute', attribute: attribute)
.pluck(
Arel.sql(
ActiveRecord::Base::sanitize_sql(['front_matter -> :attribute', attribute: attribute])
ActiveRecord::Base.sanitize_sql(['front_matter -> :attribute', { attribute: attribute }])
)
)
.flatten.uniq
end
.flatten.uniq
}
validates_presence_of :layout, :path, :locale

View file

@ -29,6 +29,6 @@ class MetadataBelongsTo < MetadataRelatedPosts
private
def sanitize(uuid)
uuid.to_s.gsub(/[^a-f0-9\-]/i, '')
uuid.to_s.gsub(/[^a-f0-9-]/i, '')
end
end

View file

@ -53,25 +53,21 @@ class MetadataContent < MetadataTemplate
# Eliminar elementos sin src y comprobar su origen
html.css(elements).each do |element|
begin
raise URI::Error unless element['src'].present?
raise URI::Error unless element['src'].present?
uri = URI element['src']
uri = URI element['src']
# No permitimos recursos externos, solo si sabemos cuales son
# los recursos locales
if Rails.application.config.hosts.present?
unless Rails.application.config.hosts.include?(uri.hostname)
raise URI::Error
end
end
element['src'] = convert_src_to_internal_path uri
raise URI::Error if element['src'].blank?
rescue URI::Error
element.remove
# No permitimos recursos externos, solo si sabemos cuales son
# los recursos locales
if Rails.application.config.hosts.present? && !Rails.application.config.hosts.include?(uri.hostname)
raise URI::Error
end
element['src'] = convert_src_to_internal_path uri
raise URI::Error if element['src'].blank?
rescue URI::Error
element.remove
end
# Eliminar figure sin contenido
@ -101,11 +97,10 @@ class MetadataContent < MetadataTemplate
# @param style [String]
# @return [String]
def sanitize_style(style)
style.split(';').reduce({}) do |style_hash, style_string|
style.split(';').each_with_object({}) do |style_string, style_hash|
key, value = style_string.split(':', 2)
style_hash[key] ||= value
style_hash
end.slice(*allowed_styles).map do |style_pair|
style_pair.join(':')
end.join(';')
@ -121,7 +116,7 @@ class MetadataContent < MetadataTemplate
# Convierte una ubicación local al sitio en una URL de ActiveStorage
#
# XXX: Por qué son tan díficiles de encontrar las rutas de AS
#
#
# @param path [String]
# @return [String]
def convert_internal_path_to_src(path)

View file

@ -10,7 +10,8 @@ class MetadataRelatedPosts < MetadataArray
def values
@values ||= posts.pluck(:title, :created_at, :layout, :post_id).to_h do |row|
row.tap do |value|
value[0] = "#{value[0]} #{value.delete_at(1).strftime('%F')} (#{site.layouts[value.delete_at(1)].humanized_name})"
value[0] =
"#{value[0]} #{value.delete_at(1).strftime('%F')} (#{site.layouts[value.delete_at(1)].humanized_name})"
end
end
end
@ -46,7 +47,7 @@ class MetadataRelatedPosts < MetadataArray
def sanitize(uuid)
super(uuid.map do |u|
u.to_s.gsub(/[^a-f0-9\-]/i, '')
u.to_s.gsub(/[^a-f0-9-]/i, '')
end)
end
end

View file

@ -132,6 +132,7 @@ class Post
src = element.attributes['src']
next unless src&.value&.start_with? 'public/'
file = MetadataFile.new(site: site, post: self, document: document, layout: layout)
file.value['path'] = src.value
@ -250,7 +251,8 @@ class Post
# La fecha de creación inmodificable del post
def created_at
@metadata[:created_at] ||= MetadataCreatedAt.new(document: document, site: site, layout: layout, name: :created_at, type: :created_at, post: self, required: true)
@metadata[:created_at] ||= MetadataCreatedAt.new(document: document, site: site, layout: layout, name: :created_at,
type: :created_at, post: self, required: true)
end
# Detecta si es un atributo válido o no, a partir de la tabla de la

View file

@ -6,7 +6,6 @@ class Post
extend ActiveSupport::Concern
included do
# @return [IndexedPost,nil]
def indexed_post
site.indexed_posts.find_by_post_id(uuid.value)

View file

@ -419,7 +419,6 @@ class Site < ApplicationRecord
FileUtils.rm_rf path
end
# Sincroniza algunos atributos del sitio con su configuración y
# guarda los cambios
#

View file

@ -104,8 +104,8 @@ class Site
indexable_posts.select do |delta|
MODIFIED_STATUSES.include? delta.status
end.each do |delta|
locale, _ = locale_and_path_from(delta.new_file[:path])
full_path = File.join(self.path, delta.new_file[:path])
locale, = locale_and_path_from(delta.new_file[:path])
full_path = File.join(path, delta.new_file[:path])
Post.build(path: full_path, site: self, layout: Post.find_layout(full_path), locale: locale).index!
end

View file

@ -148,7 +148,7 @@ class Site
# @param :rm [Array] Archivos a eliminar
# @param :usuarie [Usuarie] Quién hace el commit
# @param :message [String] Mensaje
def commit(add: [], rm: [], usuarie:, message:)
def commit(usuarie:, message:, add: [], rm: [])
# Cargar el árbol actual
rugged.index.read_tree rugged.head.target.tree
@ -182,7 +182,7 @@ class Site
#
# @return [Boolean]
def gc
git_sh("git", "gc")
git_sh('git', 'gc')
end
# Pushea cambios al repositorio remoto
@ -196,8 +196,8 @@ class Site
# Hace limpieza de LFS
def lfs_cleanup
git_sh("git", "lfs", "prune")
git_sh("git", "lfs", "dedup")
git_sh('git', 'lfs', 'prune')
git_sh('git', 'lfs', 'dedup')
end
private
@ -257,7 +257,7 @@ class Site
# @param :args [Array]
# @return [Boolean]
def git_sh(*args)
env = { 'PATH' => '/usr/bin', 'LANG' => ENV['LANG'], 'HOME' => path }
env = { 'PATH' => '/usr/bin', 'LANG' => ENV.fetch('LANG', nil), 'HOME' => path }
r = nil
Open3.popen2e(env, *args, unsetenv_others: true, chdir: path) do |_, _, t|

View file

@ -145,9 +145,9 @@ PostService = Struct.new(:site, :usuarie, :post, :params, keyword_init: true) do
# Si les usuaries modifican o crean una licencia, considerarla
# personalizada en el panel.
def update_site_license!
if site.usuarie?(usuarie) && post.layout.name == :license && !site.licencia.custom?
site.update licencia: Licencia.find_by_icons('custom')
end
return unless site.usuarie?(usuarie) && post.layout.name == :license && !site.licencia.custom?
site.update licencia: Licencia.find_by_icons('custom')
end
# @return [Set<String>]

View file

@ -2,5 +2,5 @@
- id = "#{field.object_name}_#{name}"
- name = "#{field.object_name}[#{name}]"
= render 'bootstrap/custom_checkbox', id: id, name: name, content: content, required: local_assigns[:required], value: "1" do
= render 'bootstrap/custom_checkbox', id: id, name: name, content: content, required: local_assigns[:required], value: '1' do
= yield

View file

@ -1,28 +1,28 @@
.row.align-items-center.justify-content-center.full-height
.col-12.col-lg-10.align-self-center
- welcome = @site.config.dig('welcome', 'message') || t('.welcome',
site: @site.hostname)
site: @site.hostname)
= sanitize_markdown welcome
.col-12.col-lg-6.align-self-center
-# Copiado y pegado de app/views/devise/registrations/new.haml
- resource = resource_name = @invitade
= form_for(resource, as: resource_name,
url: site_collaborate_path(@site),
method: :post) do |f|
url: site_collaborate_path(@site),
method: :post) do |f|
- unless current_usuarie
.form-group
= f.label :email
= f.email_field :email, autofocus: true, autocomplete: 'email',
class: 'form-control'
class: 'form-control'
.form-group
= f.label :password
- if @minimum_password_length
%em
= t('devise.shared.minimum_password_length',
count: @minimum_password_length)
count: @minimum_password_length)
= f.password_field :password, autocomplete: 'new-password',
class: 'form-control'
class: 'form-control'
.form-group
= f.submit t('.submit'), class: 'btn btn-secondary btn-lg btn-block'

View file

@ -9,26 +9,25 @@
%h2= t('.resend_confirmation_instructions')
= form_for(resource,
as: resource_name,
url: confirmation_path(resource_name),
html: { method: :post }) do |f|
as: resource_name,
url: confirmation_path(resource_name),
html: { method: :post }) do |f|
:ruby
value = if resource.pending_reconfirmation?
resource.unconfirmed_email
else
resource.email
end
resource.unconfirmed_email
else
resource.email
end
.form-group
= f.label :email, class: 'sr-only'
= f.email_field :email,
autofocus: true,
autocomplete: 'email',
class: 'form-control',
value: value,
placeholder: t('activerecord.attributes.usuarie.email')
autofocus: true,
autocomplete: 'email',
class: 'form-control',
value: value,
placeholder: t('activerecord.attributes.usuarie.email')
.actions
= f.submit t('.resend_confirmation_instructions'),
class: 'btn btn-secondary btn-lg btn-block'
class: 'btn btn-secondary btn-lg btn-block'
= render 'devise/shared/links'

View file

@ -7,29 +7,29 @@
.col-12.col-lg-5.align-self-center
%h2= t 'devise.invitations.edit.header'
= form_for(resource,
as: resource_name,
url: invitation_path(resource_name),
html: { method: :put }) do |f|
as: resource_name,
url: invitation_path(resource_name),
html: { method: :put }) do |f|
= f.hidden_field :invitation_token, readonly: true
- if f.object.class.require_password_on_accepting
.form-group
= f.label :password, class: 'sr-only'
= f.password_field :password, class: 'form-control',
min: @minimum_password_length,
aria: { describedby: 'minimum-password-length' },
placeholder: t('activerecord.attributes.usuarie.password')
min: @minimum_password_length,
aria: { describedby: 'minimum-password-length' },
placeholder: t('activerecord.attributes.usuarie.password')
- if @minimum_password_length
%small.text-muted.form-text#minimum-password-length
= t('devise.shared.minimum_password_length',
count: @minimum_password_length)
count: @minimum_password_length)
.form-group
= f.label :password_confirmation, class: 'sr-only'
= f.password_field :password_confirmation,
class: 'form-control',
min: @minimum_password_length,
aria: { describedby: 'minimum-password-length' },
placeholder: t('activerecord.attributes.usuarie.password')
class: 'form-control',
min: @minimum_password_length,
aria: { describedby: 'minimum-password-length' },
placeholder: t('activerecord.attributes.usuarie.password')
.actions
= f.submit t('devise.invitations.edit.submit_button'),
class: 'btn btn-secondary btn-lg btn-block'
class: 'btn btn-secondary btn-lg btn-block'

View file

@ -7,13 +7,13 @@
.col-12.col-lg-5.align-self-center
%h2= t 'devise.invitations.new.header'
= form_for(resource,
as: resource_name,
url: invitation_path(resource_name),
html: { method: :post }) do |f|
as: resource_name,
url: invitation_path(resource_name),
html: { method: :post }) do |f|
- resource.class.invite_key_fields.each do |field|
.form-group
= f.label field
= f.text_field field, class: 'form-control'
.actions
= f.submit t('devise.invitations.new.submit_button'),
class: 'btn btn-secondary btn-lg btn-block'
class: 'btn btn-secondary btn-lg btn-block'

View file

@ -10,35 +10,34 @@
%p= t('.help')
= form_for(resource, as: resource_name,
url: password_path(resource_name),
html: { method: :put }) do |f|
url: password_path(resource_name),
html: { method: :put }) do |f|
= f.hidden_field :reset_password_token
.form-group
= f.label :password, t('.new_password'), class: 'sr-only'
= f.password_field :password,
autofocus: true,
autocomplete: 'new-password',
class: 'form-control', min: @minimum_password_length,
aria: { describedby: 'minimum_password_length' },
placeholder: t('.new_password')
autofocus: true,
autocomplete: 'new-password',
class: 'form-control', min: @minimum_password_length,
aria: { describedby: 'minimum_password_length' },
placeholder: t('.new_password')
- if @minimum_password_length
%small.form-text.text-muted
= t('devise.shared.minimum_password_length',
count: @minimum_password_length)
count: @minimum_password_length)
.form-group
= f.label :password_confirmation, t('.confirm_new_password'),
class: 'sr-only'
class: 'sr-only'
= f.password_field :password_confirmation, autocomplete: 'off',
class: 'form-control',
min: @minimum_password_length,
aria: { describedby: 'minimum_password_length' },
placeholder: t('.confirm_new_password')
class: 'form-control',
min: @minimum_password_length,
aria: { describedby: 'minimum_password_length' },
placeholder: t('.confirm_new_password')
.actions
= f.submit t('.change_my_password'),
class: 'btn btn-secondary btn-lg btn-block'
class: 'btn btn-secondary btn-lg btn-block'
= render 'devise/shared/links'

View file

@ -10,15 +10,15 @@
%p= t('.help')
= form_for(resource,
as: resource_name,
url: password_path(resource_name),
html: { method: :post }) do |f|
as: resource_name,
url: password_path(resource_name),
html: { method: :post }) do |f|
.form-group
= f.label :email, class: 'sr-only'
= f.email_field :email, autofocus: true, autocomplete: 'email',
class: 'form-control',
placeholder: t('activerecord.attributes.usuarie.email')
class: 'form-control',
placeholder: t('activerecord.attributes.usuarie.email')
.actions
= f.submit t('.send_me_reset_password_instructions'),
class: 'btn btn-secondary btn-lg btn-block'
class: 'btn btn-secondary btn-lg btn-block'
= render 'devise/shared/links'

View file

@ -9,58 +9,57 @@
.col-12.col-lg-6.align-self-center
%h2= t('.title')
= form_for(resource,
as: resource_name,
url: registration_path(resource_name),
html: { method: :put }) do |f|
as: resource_name,
url: registration_path(resource_name),
html: { method: :put }) do |f|
.form-group
= f.label :email
= f.email_field :email, autofocus: true, autocomplete: 'email',
class: 'form-control'
class: 'form-control'
- if devise_mapping.confirmable? && resource.pending_reconfirmation?
%div
= t('.currently_waiting_confirmation_for_email',
email: resource.unconfirmed_email)
email: resource.unconfirmed_email)
.form-group
= f.label :lang
= f.select :lang,
I18n.available_locales.map { |lang| [t(lang), lang] }, {},
class: 'form-control'
I18n.available_locales.map { |lang| [t(lang), lang] }, {},
class: 'form-control'
.form-group
= f.label :password
= f.password_field :password, autocomplete: 'new-password',
class: 'form-control', aria: { describedby: 'password-help' }
class: 'form-control', aria: { describedby: 'password-help' }
%small.text-muted.form-text#password-help
= t('.leave_blank_if_you_don_t_want_to_change_it')
- if @minimum_password_length
= t('devise.shared.minimum_password_length',
count: @minimum_password_length)
count: @minimum_password_length)
.form-group
= f.label :password_confirmation
= f.password_field :password_confirmation,
autocomplete: 'new-password',
class: 'form-control'
autocomplete: 'new-password',
class: 'form-control'
.form-group
= f.label :current_password
= f.password_field :current_password,
autocomplete: 'current-password',
required: true,
class: 'form-control',
aria: { describedby: 'current-password-help' }
autocomplete: 'current-password',
required: true,
class: 'form-control',
aria: { describedby: 'current-password-help' }
%small.text-muted.form-text#current-password-help
= t('.we_need_your_current_password_to_confirm_your_changes')
.actions
= f.submit t('.update'),
class: 'btn btn-secondary btn-lg btn-block'
class: 'btn btn-secondary btn-lg btn-block'
%hr/
.sr-only
%h3= t('.cancel_my_account')
= button_to t('.cancel_my_account'),
registration_path(resource_name),
data: { confirm: t('.are_you_sure') },
method: :delete, class: 'btn btn-secondary btn-block'
registration_path(resource_name),
data: { confirm: t('.are_you_sure') },
method: :delete, class: 'btn btn-secondary btn-block'

View file

@ -9,36 +9,35 @@
%p= t('.help')
= form_for(resource,
as: resource_name,
url: registration_path(resource_name, params: { locale: params[:locale] })) do |f|
as: resource_name,
url: registration_path(resource_name, params: { locale: params[:locale] })) do |f|
.form-group
= f.label :email, class: 'sr-only'
= f.email_field :email, autofocus: true, autocomplete: 'email',
class: 'form-control',
placeholder: t('activerecord.attributes.usuarie.email')
class: 'form-control',
placeholder: t('activerecord.attributes.usuarie.email')
- password = 'activerecord.attributes.usuarie.password'
.form-group
= f.label :password, class: 'sr-only'
= f.password_field :password, autocomplete: 'new-password',
class: 'form-control', min: @minimum_password_length,
aria: { describedby: 'minimum-password-length' },
placeholder: t(password)
class: 'form-control', min: @minimum_password_length,
aria: { describedby: 'minimum-password-length' },
placeholder: t(password)
- if @minimum_password_length
%small.text-muted.form-text#minimum-password-length
= t('devise.shared.minimum_password_length',
count: @minimum_password_length)
count: @minimum_password_length)
.form-group
= f.label :password_confirmation, class: 'sr-only'
= f.password_field :password_confirmation,
autocomplete: 'new-password',
class: 'form-control',
min: @minimum_password_length,
aria: { describedby: 'minimum-password-length' },
placeholder: t("#{password}_confirmation")
autocomplete: 'new-password',
class: 'form-control',
min: @minimum_password_length,
aria: { describedby: 'minimum-password-length' },
placeholder: t("#{password}_confirmation")
.form-group
- Usuarie::CONSENT_FIELDS.each do |field|
@ -48,7 +47,7 @@
- content = t(".#{field}.label")
- href = t(".#{field}.href", default: '')
- help_content = t(".#{field}.help")
= render 'bootstrap/custom_checkbox', id: id, name: name, content: content, required: required, value: "1" do
= render 'bootstrap/custom_checkbox', id: id, name: name, content: content, required: required, value: '1' do
- if href.present?
= link_to help_content, href, target: '_blank', rel: 'noopener'
- else
@ -56,6 +55,6 @@
.actions
= f.submit t('.sign_up'),
class: 'btn btn-secondary btn-lg btn-block'
class: 'btn btn-secondary btn-lg btn-block'
= render 'devise/shared/links'

View file

@ -8,29 +8,29 @@
%p= t('.help')
= form_for(resource,
as: resource_name,
url: session_path(resource_name)) do |f|
as: resource_name,
url: session_path(resource_name)) do |f|
- if @site
= hidden_field :referer, value: site_path(@site)
.form-group
= f.label :email, class: 'sr-only'
= f.email_field :email,
autofocus: true,
autocomplete: 'email',
class: 'form-control',
placeholder: t('login.email')
autofocus: true,
autocomplete: 'email',
class: 'form-control',
placeholder: t('login.email')
.form-group
= f.label :password, class: 'sr-only'
= f.password_field :password,
autocomplete: 'current-password',
class: 'form-control',
placeholder: t('login.password')
autocomplete: 'current-password',
class: 'form-control',
placeholder: t('login.password')
- if devise_mapping.rememberable?
.form-group
= render 'bootstrap/custom_checkbox_for_field', field: f, name: :remember_me do
= t('login.remember_me', remember_for: distance_of_time_in_words(Usuarie.remember_for))
.actions
= f.submit t('.sign_in'),
class: 'btn btn-secondary btn-lg btn-block'
class: 'btn btn-secondary btn-lg btn-block'
= render 'devise/shared/links'

View file

@ -10,15 +10,15 @@
%p= t('.help')
= form_for(resource,
as: resource_name,
url: unlock_path(resource_name),
html: { method: :post }) do |f|
as: resource_name,
url: unlock_path(resource_name),
html: { method: :post }) do |f|
.form-group
= f.label :email, class: 'sr-only'
= f.email_field :email, autofocus: true, autocomplete: 'email',
class: 'form-control',
placeholder: t('activerecord.attributes.usuarie.email')
class: 'form-control',
placeholder: t('activerecord.attributes.usuarie.email')
.actions
= f.submit t('.resend_unlock_instructions'),
class: 'btn btn-secondary btn-lg btn-block'
class: 'btn btn-secondary btn-lg btn-block'
= render 'devise/shared/links'

View file

@ -1,7 +1,7 @@
%nav.navbar.flex-md-nowrap.px-0
%a.navbar-brand.order-0{ href: '/' }
= inline_svg_tag 'sutty.svg', class: 'black', aria: true,
title: t('svg.sutty.title'), desc: t('svg.sutty.desc')
title: t('svg.sutty.title'), desc: t('svg.sutty.desc')
- if breadcrumbs?
%nav.flex-grow-1.order-2.order-md-1{ aria: { label: t('.title') } }
@ -18,18 +18,19 @@
- if @site&.tienda?
%li.nav-item
= link_to t('.tienda'), @site.tienda_url,
role: 'button', class: 'btn btn-secondary'
role: 'button', class: 'btn btn-secondary'
%li.nav-item
= link_to t('.contact_us'), t('.contact_us_href'),
class: 'btn btn-secondary', rel: 'me', target: '_blank'
class: 'btn btn-secondary', rel: 'me', target: '_blank'
%li.nav-item
= link_to t('.logout'), main_app.destroy_usuarie_session_path,
method: :delete, role: 'button', class: 'btn btn-secondary'
method: :delete, role: 'button', class: 'btn btn-secondary'
- else
- params.permit!
- I18n.available_locales.each do |locale|
- next if locale == I18n.locale
%li.nav-item
= link_to t("switch_locale.#{locale}"), params.to_h.merge(change_locale_to: locale)

View file

@ -7,9 +7,8 @@
@param :summary_class [String] Clases para el summary
- local_assigns[:summary_class] ||= 'h3'
- local_assigns[:closed] ||= '&#x25B6'.html_safe;
- local_assigns[:open] ||= '&#x25BC'.html_safe;
- local_assigns[:closed] ||= '&#x25B6'.html_safe
- local_assigns[:open] ||= '&#x25BC'.html_safe
%details.details.py-2{ id: local_assigns[:id], data: { controller: 'details', action: 'toggle->details#store' }, class: local_assigns[:details_class] }
%summary.d-flex.flex-row.align-items-center.justify-content-between{ class: local_assigns[:summary_class] }

View file

@ -7,4 +7,5 @@
XXX: Ignorar todos los posts no encontrados (ej: fueron
borrados o el uuid cambió)
- next unless p
%li= link_to p.title, site_post_path(site, p.path)

View file

@ -0,0 +1,13 @@
- if !@site.invitade?(cuenta) # esto ta mal
.form-check
= hidden_field_tag "#{base}[#{attribute}]", '0', id: ''
.custom-control.custom-switch
= check_box_tag "#{base}[#{attribute}]", '1', metadata.value,
class: "custom-control-input #{invalid(post, attribute)}",
aria: { describedby: id_for_help(attribute) },
autofocus: autofocus
= label_tag "#{base}_#{attribute}", post_label_t(attribute, post: post),
class: 'custom-control-label'
= render 'posts/attribute_feedback',
post: post, attribute: attribute, metadata: metadata

View file

@ -2,43 +2,53 @@
= label_tag "#{base}_#{attribute}", post_label_t(attribute, post: post)
- if metadata.static_file
- case metadata.static_file.blob.content_type
- when %r{\Avideo/}
= video_tag url_for(metadata.static_file),
controls: true, class: 'img-fluid',
data: { target: 'file-preview.preview' }
- when %r{\Aaudio/}
= audio_tag url_for(metadata.static_file),
controls: true, class: 'img-fluid',
data: { target: 'file-preview.preview' }
- when 'application/pdf'
%iframe{ src: url_for(metadata.static_file) }
- else
= link_to t('posts.attribute_ro.file.download'),
url_for(metadata.static_file)
- when %r{\Avideo/}
= video_tag url_for(metadata.static_file),
controls: true, class: 'img-fluid',
data: { target: 'file-preview.preview' }
- when %r{\Aaudio/}
= audio_tag url_for(metadata.static_file),
controls: true, class: 'img-fluid',
data: { target: 'file-preview.preview' }
- when 'application/pdf'
%iframe{ src: url_for(metadata.static_file) }
- else
= link_to t('posts.attribute_ro.file.download'),
url_for(metadata.static_file)
-# Mantener el valor si no enviamos ninguna imagen
= hidden_field_tag "#{base}[#{attribute}][path]", metadata.value['path']
-# Los archivos requeridos solo se pueden reemplazar
- unless metadata.required
.custom-control.custom-switch
= check_box_tag "#{base}[#{attribute}][path]", '', false, id: "#{base}_#{attribute}_destroy", class: 'custom-control-input'
= label_tag "#{base}_#{attribute}_destroy", t('posts.attributes.file.destroy'), class: 'custom-control-label'
= check_box_tag "#{base}[#{attribute}][path]",
'',
false,
id: "#{base}_#{attribute}_destroy",
class: 'custom-control-input'
= label_tag "#{base}_#{attribute}_destroy",
t('posts.attributes.file.destroy'),
class: 'custom-control-label'
.custom-file
= file_field(*field_name_for(base, attribute, :path),
**field_options(attribute, metadata, required: (metadata.required && !metadata.path?)),
class: "custom-file-input #{invalid(post, attribute)}",
data: { target: 'file-preview.input', action: 'file-preview#update' })
**field_options(attribute,
metadata,
required: (metadata.required && !metadata.path?)),
class: "custom-file-input #{invalid(post, attribute)}",
data: { target: 'file-preview.input',
action: 'file-preview#update' })
= label_tag "#{base}_#{attribute}_path",
post_label_t(attribute, :path, post: post), class: 'custom-file-label'
post_label_t(attribute, :path, post: post),
class: 'custom-file-label'
= render 'posts/attribute_feedback',
post: post, attribute: [attribute, :path], metadata: metadata
post: post, attribute: [attribute, :path], metadata: metadata
.form-group
= label_tag "#{base}_#{attribute}_description",
post_label_t(attribute, :description, post: post, required: false)
post_label_t(attribute, :description, post: post, required: false)
= text_field(*field_name_for(base, attribute, :description),
value: metadata.value['description'],
dir: dir, lang: locale,
**field_options(attribute, metadata, required: false))
value: metadata.value['description'],
dir: dir, lang: locale,
**field_options(attribute, metadata, required: false))
= render 'posts/attribute_feedback',
post: post, attribute: [attribute, :description], metadata: metadata
post: post, attribute: [attribute, :description], metadata: metadata

View file

@ -1,7 +1,7 @@
.form-group
= label_tag "#{base}_#{attribute}", post_label_t(attribute, post: post)
= select_tag(plain_field_name_for(base, attribute),
options_for_select(metadata.values, metadata.value),
**field_options(attribute, metadata), include_blank: t('.empty'))
options_for_select(metadata.values, metadata.value),
**field_options(attribute, metadata), include_blank: t('.empty'))
= render 'posts/attribute_feedback',
post: post, attribute: attribute, metadata: metadata
post: post, attribute: attribute, metadata: metadata

View file

@ -2,40 +2,50 @@
= label_tag "#{base}_#{attribute}", post_label_t(attribute, post: post)
- if metadata.static_file
= image_tag url_for(metadata.static_file),
alt: metadata.value['description'],
class: 'img-fluid',
data: { target: 'file-preview.preview' }
alt: metadata.value['description'],
class: 'img-fluid',
data: { target: 'file-preview.preview' }
-# Mantener el valor si no enviamos ninguna imagen
= hidden_field_tag "#{base}[#{attribute}][path]", metadata.value['path']
-# Las imágenes requeridas solo se pueden reemplazar
- unless metadata.required
.custom-control.custom-switch
= check_box_tag "#{base}[#{attribute}][path]", '', false, id: "#{base}_#{attribute}_destroy", class: 'custom-control-input'
= label_tag "#{base}_#{attribute}_destroy", t('posts.attributes.image.destroy'), class: 'custom-control-label'
= check_box_tag "#{base}[#{attribute}][path]",
'',
false,
id: "#{base}_#{attribute}_destroy",
class: 'custom-control-input'
= label_tag "#{base}_#{attribute}_destroy",
t('posts.attributes.image.destroy'),
class: 'custom-control-label'
- else
= image_tag '',
alt: metadata.value['description'],
class: 'img-fluid',
data: { target: 'file-preview.preview' }
alt: metadata.value['description'],
class: 'img-fluid',
data: { target: 'file-preview.preview' }
.custom-file
= file_field(*field_name_for(base, attribute, :path),
**field_options(attribute, metadata, required: (metadata.required && !metadata.path?)),
class: "custom-file-input #{invalid(post, attribute)}",
accept: ActiveStorage.web_image_content_types.join(','),
data: { target: 'file-preview.input', action: 'file-preview#update' })
**field_options(attribute,
metadata,
required: (metadata.required && !metadata.path?)),
class: "custom-file-input #{invalid(post, attribute)}",
accept: ActiveStorage.web_image_content_types.join(','),
data: { target: 'file-preview.input',
action: 'file-preview#update' })
= label_tag "#{base}_#{attribute}_path",
post_label_t(attribute, :path, post: post), class: 'custom-file-label'
post_label_t(attribute, :path, post: post),
class: 'custom-file-label'
= render 'posts/attribute_feedback',
post: post, attribute: [attribute, :path], metadata: metadata
post: post, attribute: [attribute, :path], metadata: metadata
.form-group
= label_tag "#{base}_#{attribute}_description",
post_label_t(attribute, :description, post: post, required: false)
post_label_t(attribute, :description, post: post, required: false)
= text_field(*field_name_for(base, attribute, :description),
value: metadata.value['description'],
dir: dir, lang: locale,
**field_options(attribute, metadata, required: false))
value: metadata.value['description'],
dir: dir, lang: locale,
**field_options(attribute, metadata, required: false))
= render 'posts/attribute_feedback',
post: post, attribute: [attribute, :description], metadata: metadata
post: post, attribute: [attribute, :description], metadata: metadata

View file

@ -3,7 +3,7 @@
%legend= post_label_t(attribute, post: post)
= render 'posts/attribute_feedback',
post: post, attribute: attribute, metadata: metadata
post: post, attribute: attribute, metadata: metadata
- site.locales.each do |locale|
- locale_t = t("locales.#{locale}.name", default: locale.to_s.humanize)
@ -14,5 +14,6 @@
= label_tag "#{base}_#{attribute}_#{locale}", locale_t
= select_tag("#{plain_field_name_for(base, attribute)}[]",
options_for_select(metadata.values[locale], value),
**field_options(attribute, metadata), include_blank: t('.empty'))
options_for_select(metadata.values[locale], value),
**field_options(attribute, metadata),
include_blank: t('.empty'))

View file

@ -14,56 +14,74 @@
= render 'sites/moderation_queue', site: @site, class: 'btn-block'
= render 'layouts/details', summary: t('posts.filters.title') do
%form{method: :get}
%form{ method: :get }
.border.border-magenta.p-1
- @filter_params.each do |param, values|
- next if param == :layout
- [values].flatten.each do |value|
%input{ type: 'hidden', name: values.is_a?(Array) ? "#{param}[]" : param, value: value }
%input{ type: 'hidden',
name: values.is_a?(Array) ? "#{param}[]" : param,
value: value }
%legend.font-weight-bold.m-0.h6= 'Tipo de contenido'
- @site.schema_organization.each do |key, _|
.custom-control.custom-checkbox
- schema = @site.layouts[key]
= render 'schemas/filter', site: @site, key: key, schema: schema, filter: @filter_params
= render 'schemas/filter', site: @site,
key: key,
schema: schema,
filter: @filter_params
%button.btn.btn-secondary.mt-3{ type: 'submit' }= t('posts.filters.submit')
= render 'layouts/details',
summary: t('posts.new'),
summary_class: "h4 magenta font-weight-bold m-0 px-2",
details_class: "d-flex border border-magenta justify-content-between align-items-center w-100 mb-3",
open: "+", closed: "+",
open_class: "h1 magenta font-weight-bold m-0",
closed_class: "h1 magenta font-weight-bold m-0" do
= render 'layouts/details',
summary: t('posts.new'),
summary_class: 'h4 magenta font-weight-bold m-0 px-2',
details_class: 'details-agregar',
open: '+', closed: '+',
open_class: 'h1 magenta font-weight-bold m-0',
closed_class: 'h1 magenta font-weight-bold m-0' do
%table.table-sm.w-100
%tbody
- @site.schema_organization.each do |schema, _|
- schema = @site.layouts[schema]
- next if schema.hidden?
= render 'schemas/row', site: @site, schema: schema, filter: @filter_params
= render 'schemas/row', site: @site,
schema: schema,
filter: @filter_params
- if policy(@site_stat).index?
= link_to t('stats.index.title'), site_stats_path(@site), class: 'btn btn-secondary'
= link_to t('stats.index.title'),
site_stats_path(@site),
class: 'btn btn-secondary'
- if policy(@site).edit?
= link_to t('sites.edit.btn', site: @site.title), edit_site_path(@site), class: 'btn btn-secondary'
= link_to t('sites.edit.btn', site: @site.title),
edit_site_path(@site),
class: 'btn btn-secondary'
- if policy(@site).private?
= link_to t('sites.private'), '../private/' + @site.name, class: 'btn btn-secondary', target: '_blank', rel: 'noopener'
= link_to t('sites.private'), "../private/#{@site.name}",
class: 'btn btn-secondary',
target: '_blank',
rel: 'noopener'
- if policy(SiteUsuarie.new(@site, current_usuarie)).index?
= render 'layouts/btn_with_tooltip',
tooltip: t('usuaries.index.help.self'),
text: t('usuaries.index.title'),
type: 'info',
link: site_usuaries_path(@site)
tooltip: t('usuaries.index.help.self'),
text: t('usuaries.index.title'),
type: 'info',
link: site_usuaries_path(@site)
- if @site.design.credits
= render 'bootstrap/alert' do
= sanitize_markdown @site.design.credits
= link_to t('sites.donations.text'), t('sites.donations.url'), class: 'btn btn-secondary'
= link_to t('sites.donations.text'),
t('sites.donations.url'),
class: 'btn btn-secondary'
- if @site.design.designer_url
= link_to t('sites.designer_url'), @site.design.designer_url, class: 'btn btn-secondary'
= link_to t('sites.designer_url'),
@site.design.designer_url,
class: 'btn btn-secondary'
%section.col
.d-flex.justify-content-between.align-items-center.pl-2-plus.pr-2-plus.mb-2
@ -72,7 +90,7 @@
%nav#locales
- @site.locales.each do |locale|
= link_to @site.data.dig(locale.to_s, 'locale') || locale, site_posts_path(@site, **@filter_params.merge(locale: locale)),
class: "mr-2 mt-2 mb-2 #{locale == @locale ? 'active font-weight-bold' : ''}"
class: "mr-2 mt-2 mb-2 #{locale == @locale ? 'active font-weight-bold' : ''}"
- if @posts.empty?
%h2= t('posts.empty')
@ -86,7 +104,8 @@
.d-flex.flex-row.justify-content-between
%div
- if reorder_allowed
= submit_tag t('posts.reorder.submit'), class: 'btn btn-secondary'
= submit_tag t('posts.reorder.submit'),
class: 'btn btn-secondary'
%button.btn.btn-secondary{ data: { action: 'reorder#unselect' } }
= t('posts.reorder.unselect')
%span.badge{ data: { target: 'reorder.counter' } } 0
@ -94,12 +113,18 @@
%button.btn.btn-secondary{ data: { action: 'reorder#down' } }= t('posts.reorder.down')
%button.btn.btn-secondary{ data: { action: 'reorder#top' } }= t('posts.reorder.top')
%button.btn.btn-secondary{ data: { action: 'reorder#bottom' } }= t('posts.reorder.bottom')
%input{ type: 'hidden', name: 'post[lang]', value: @locale }
%input{ type: 'hidden',
name: 'post[lang]',
value: @locale }
- if @site.pagination
%div
= link_to_prev_page @posts, t('posts.prev'), class: 'btn btn-secondary'
= link_to_next_page @posts, t('posts.next'), class: 'btn btn-secondary'
= link_to_prev_page @posts,
t('posts.prev'),
class: 'btn btn-secondary'
= link_to_next_page @posts,
t('posts.next'),
class: 'btn btn-secondary'
%tbody
- dir = @site.data.dig(params[:locale], 'dir')
- size = @posts.size
@ -107,48 +132,61 @@
-#
TODO: Solo les usuaries cachean porque tenemos que separar
les botones por permisos.
- begin
- cache_if @usuarie, [post, I18n.locale] do
- checkbox_id = "checkbox-#{post.post_id}"
%tr{ id: post.post_id, data: reorder_target }
- if reorder_allowed
%td
.custom-control.custom-checkbox
%input.custom-control-input{ id: checkbox_id, type: 'checkbox', autocomplete: 'off', data: { action: 'reorder#select' } }
%label.custom-control-label{ for: checkbox_id }
%span.sr-only= t('posts.reorder.select')
-# Orden más alto es mayor prioridad
= hidden_field 'post[reorder]', post.post_id,
value: size - i,
data: { reorder: true }
%td.w-100{ class: dir }
= link_to site_post_path(@site, post.path) do
%span{ lang: post.locale, dir: dir }= post.title
- if post.front_matter['draft'].present?
%span.badge.badge-primary= I18n.t('posts.attributes.draft.label')
%br
%small
= link_to @site.layouts[post.layout].humanized_name, site_posts_path(@site, **@filter_params.merge(layout: [post.layout]))
- post.front_matter['categories']&.each do |category|
= link_to site_posts_path(@site, **@filter_params.merge(category: category)) do
%span{ lang: post.locale, dir: dir }= category
= '/' unless post.front_matter['categories'].last == category
%td.text-nowrap
= post.created_at.strftime('%F')
%br/
= post.order
%td.text-nowrap
.d-flex.flex-row.align-items-start
- if @usuarie || policy(post).edit?
= link_to t('posts.edit_post'), edit_site_post_path(@site, post.path), class: 'btn btn-secondary'
- if @usuarie || policy(post).destroy?
= link_to t('posts.destroy'), site_post_path(@site, post.path), class: 'btn btn-secondary', method: :delete, data: { confirm: t('posts.confirm_destroy') }
-#
- cache_if @usuarie, [post, I18n.locale] do
- checkbox_id = "checkbox-#{post.post_id}"
%tr{ id: post.post_id, data: reorder_target }
- if reorder_allowed
%td
.custom-control.custom-checkbox
%input.custom-control-input{ id: checkbox_id,
type: 'checkbox',
autocomplete: 'off',
data: { action: 'reorder#select' } }
%label.custom-control-label{ for: checkbox_id }
%span.sr-only= t('posts.reorder.select')
-# Orden más alto es mayor prioridad
= hidden_field 'post[reorder]', post.post_id,
value: size - i,
data: { reorder: true }
%td.w-100{ class: dir }
= link_to site_post_path(@site, post.path) do
%span{ lang: post.locale, dir: dir }= post.title
- if post.front_matter['draft'].present?
%span.badge.badge-primary= I18n.t('posts.attributes.draft.label')
%br
%small
= link_to @site.layouts[post.layout].humanized_name,
site_posts_path(@site, **@filter_params.merge(layout: [post.layout]))
- post.front_matter['categories']&.each do |category|
= link_to site_posts_path(@site, **@filter_params.merge(category: category)) do
%span{ lang: post.locale, dir: dir }= category
= '/' unless post.front_matter['categories'].last == category
%td.text-nowrap
= post.created_at.strftime('%F')
%br/
= post.order
%td.text-nowrap
.d-flex.flex-row.align-items-start
- if @usuarie || policy(post).edit?
= link_to t('posts.edit_post'),
edit_site_post_path(@site, post.path),
class: 'btn btn-secondary'
- if @usuarie || policy(post).destroy?
= link_to t('posts.destroy'),
site_post_path(@site, post.path),
class: 'btn btn-secondary',
method: :delete,
data: { confirm: t('posts.confirm_destroy') }
-#
Rescatar cualquier error en un post, notificarlo e
ignorar su renderización.
- rescue ActionView::Template::Error => e
- ExceptionNotifier.notify_exception(e.cause, data: { site: @site.name, post: @post.path.absolute, usuarie: current_usuarie.id })
- ExceptionNotifier.notify_exception(e.cause,
data: { site: @site.name,
post: @post.path.absolute,
usuarie: current_usuarie.id })
#footnotes{ hidden: true }
- @filter_params.each do |param, value|

View file

@ -3,8 +3,8 @@
.col-12.col-lg-8
%article.content.table-responsive-md
= link_to t('posts.edit_post'),
edit_site_post_path(@site, @post.id),
class: 'btn btn-secondary btn-block'
edit_site_post_path(@site, @post.id),
class: 'btn btn-secondary btn-block'
%table.table.table-condensed
%thead

View file

@ -1 +1,3 @@
= link_to t(schema.humanized_name), new_site_post_path(site, layout: schema.value), class: 'stretched-link black text-decoration-none'
= link_to t(schema.humanized_name),
new_site_post_path(site, layout: schema.value),
class: 'stretched-link black text-decoration-none'

View file

@ -1,10 +1,18 @@
%div
%input.custom-control-input.magenta{ type: 'checkbox', id: schema, name: "layout[]", class: "", value: schema.name, checked: @filter_params[:layout]&.include?(key.to_s) }
%input.custom-control-input.magenta{ type: 'checkbox',
id: schema,
name: 'layout[]',
class: '',
value: schema.name,
checked: @filter_params[:layout]&.include?(key.to_s) }
%label.custom-control-label.font-weight-normal{ for: schema }= schema.humanized_name
-# XXX: Solo un nivel de recursividad
- unless local_assigns[:parent_schema]
- schema.schemas.each do |s|
- next if s.hidden?
= render 'schemas/filter', schema: s, key: s.name, site: site, filter: filter
= render 'schemas/filter', schema: s,
key: s.name,
site: site,
filter: filter

View file

@ -1,13 +1,15 @@
%tr.border-top.border-magenta
%th.font-weight-normal.w-100.position-relative{ scope: 'row' }
- if local_assigns[:parent_schema]
%span.text-muted &mdash;
= render 'schemas/add', schema: schema, **local_assigns
-# XXX: Solo un nivel de recursividad
- unless local_assigns[:parent_schema]
- schema.schemas.each do |s|
- next if s.hidden?
= render 'schemas/row', schema: s, site: site, filter: filter, parent_schema: schema
= render 'schemas/row', schema: s,
site: site,
filter: filter,
parent_schema: schema

View file

@ -8,7 +8,7 @@
- site.errors.messages.each_pair do |attr, error|
- attr = attr.to_s
- error.each do |e|
%li= link_to t('activerecord.attributes.site.' + attr) + ' ' + e, '#' + attr
%li= link_to "#{t("activerecord.attributes.site.#{attr}")} #{e}", "##{attr}"
= form_for site, html: { class: form_class(site) } do |f|
- unless site.persisted?
@ -21,11 +21,11 @@
No puede estar compuesto solo de números
= f.text_field :name,
class: form_control(site, :name),
required: true,
pattern: '^([a-z0-9][a-z0-9\-]*)?[a-z0-9\.]$',
minlength: 1,
maxlength: 63
class: form_control(site, :name),
required: true,
pattern: '^([a-z0-9][a-z0-9\-]*)?[a-z0-9\.]$',
minlength: 1,
maxlength: 63
- if invalid? site, :name
.invalid-feedback= site.errors.messages[:name].join(', ')
@ -33,7 +33,7 @@
%h2= f.label :title
%p.lead= t('.help.title')
= f.text_field :title, class: form_control(site, :title),
required: true
required: true
- if invalid? site, :title
.invalid-feedback= site.errors.messages[:title].join(', ')
@ -41,7 +41,7 @@
%h2= f.label :description
%p.lead= t('.help.description')
= f.text_area :description, class: form_control(site, :description),
maxlength: 160, minlength: 10, required: true
maxlength: 160, minlength: 10, required: true
- if invalid? site, :description
.invalid-feedback= site.errors.messages[:description].join(', ')
%hr/
@ -53,29 +53,29 @@
- if invalid? site, :design_id
= render 'bootstrap/alert' do
= t('activerecord.errors.models.site.attributes.design_id.layout_incompatible.help',
layouts: site.incompatible_layouts.to_sentence)
layouts: site.incompatible_layouts.to_sentence)
.row.row-cols-1.row-cols-md-2.designs
-# Demasiado complejo para un f.collection_radio_buttons
- Design.all.order(priority: :desc).each do |design|
.design.col.d-flex.flex-column
.custom-control.custom-radio
= f.radio_button :design_id, design.id,
checked: design.id == site.design_id,
disabled: design.disabled,
required: true, class: 'custom-control-input'
checked: design.id == site.design_id,
disabled: design.disabled,
required: true, class: 'custom-control-input'
= f.label "design_id_#{design.id}", design.name,
class: 'custom-control-label'
class: 'custom-control-label'
.flex-fill
= sanitize_markdown design.description,
tags: %w[p a strong em]
tags: %w[p a strong em]
.btn-group{ role: 'group', 'aria-label': t('.design.actions') }
- if design.url
= link_to t('.design.url'), design.url,
target: '_blank', class: 'btn btn-secondary'
target: '_blank', class: 'btn btn-secondary'
- if design.license
= link_to t('.design.license'), design.license,
target: '_blank', class: 'btn btn-secondary'
target: '_blank', class: 'btn btn-secondary'
%hr/
.form-group.licenses#license_id
@ -83,6 +83,7 @@
%p.lead= t('.help.licencia')
- Licencia.all.find_each do |licencia|
- next if licencia.custom? && site.licencia != licencia
.row.license
.col
.media.mt-1
@ -91,15 +92,19 @@
.media-body
.custom-control.custom-radio
= f.radio_button :licencia_id, licencia.id,
checked: licencia.id == site.licencia_id,
required: true, class: 'custom-control-input'
checked: licencia.id == site.licencia_id,
required: true, class: 'custom-control-input'
= f.label "licencia_id_#{licencia.id}", class: 'custom-control-label' do
= licencia.name
= sanitize_markdown licencia.description,
tags: %w[p a strong em ul ol li h1 h2 h3 h4 h5 h6]
tags: %w[p a strong em ul ol li h1 h2 h3 h4 h5 h6]
- unless licencia.custom?
= link_to t('.licencia.url'), licencia.url, target: '_blank', class: 'btn btn-secondary', rel: 'noopener'
= link_to t('.licencia.url'),
licencia.url,
target: '_blank',
class: 'btn btn-secondary',
rel: 'noopener'
%hr/
@ -161,7 +166,7 @@
- site.deployment_list.each do |deploy|
= f.fields_for :deploys, deploy do |deploy_fields|
= render "deploys/#{deploy.type.underscore}",
deploy: deploy_fields, site: site
deploy: deploy_fields, site: site
.form-group
= f.submit submit, class: 'btn btn-secondary btn-lg btn-block'

View file

@ -4,12 +4,17 @@
%form.mb-3{ action: site_posts_path }
- @filter_params.each do |param, values|
- next if param == :q
- [values].flatten.each do |value|
%input{ type: 'hidden', name: values.is_a?(Array) ? "#{param}[]" : param, value: value }
%input{ type: 'hidden',
name: values.is_a?(Array) ? "#{param}[]" : param,
value: value }
.form-group.flex-grow-0.m-0
%label.h3{for: 'q'}= t('posts.index.search')
%label.h3{ for: 'q' }= t('posts.index.search')
.input-group
%input#q.form-control.border.border-magenta.border-right-0{ type: 'search', name: 'q', value: @filter_params[:q] }
%input.form-control.border.border-magenta.border-right-0#q{ type: 'search',
name: 'q',
value: @filter_params[:q] }
.input-group-append
%span.input-group-text.background-white.magenta.border.border-magenta.border-top.border-left-0.border-right.border-bottom
%i.fa.fa-fw.fa-search
@ -17,9 +22,9 @@
- @filter_params.each do |param, values|
- [values].flatten.each do |value|
= link_to site_posts_path(@site, **filter_params_by(@filter_params, param, value)),
class: 'btn btn-secondary btn-sm',
title: t('posts.remove_filter_help', filter: value),
aria: { labelledby: "help-filter-#{param}" } do
class: 'btn btn-secondary btn-sm',
title: t('posts.remove_filter_help', filter: value),
aria: { labelledby: "help-filter-#{param}" } do
- if param == :layout
= @site.layouts[value.to_sym].humanized_name
- else

View file

@ -19,7 +19,7 @@
resumen, cortamos por el primer salto de línea doble y obtenemos
todo lo demás
= sanitize_markdown commit.message.split("\n\n", 2).last,
tags: %w[p a h1 h2 h3 h4 h5 h6 ol ul li strong em]
tags: %w[p a h1 h2 h3 h4 h5 h6 ol ul li strong em]
%hr
@ -27,4 +27,4 @@
.row.justify-content-center
.col-12.col-lg-8
= link_to t('.merge.request'), site_pull_path(@site),
method: 'post', class: 'btn btn-secondary btn-lg'
method: 'post', class: 'btn btn-secondary btn-lg'

View file

@ -15,6 +15,7 @@
%tbody
- @sites.each do |site|
- next unless site.jekyll?
%tr
%td
%h2

View file

@ -11,10 +11,19 @@
%form.mb-5.form-inline{ method: 'get' }
- Stat::INTERVALS.each do |interval|
= link_to t(".#{interval}"), site_stats_path(interval: interval, urls: params[:urls], period_start: params[:period_start].to_date.try(:"beginning_of_#{interval}").to_date, period_end: params[:period_end]), class: "mb-0 btn #{@interval == interval ? 'btn-primary active' : 'btn-secondary' }"
= link_to t(".#{interval}"),
site_stats_path(interval: interval,
urls: params[:urls],
period_start: params[:period_start].to_date.try(:"beginning_of_#{interval}").to_date,
period_end: params[:period_end]),
class: "mb-0 btn #{@interval == interval ? 'btn-primary active' : 'btn-secondary'}"
%input.form-control{ type: 'date', name: :period_start, value: params[:period_start] }
%input.form-control{ type: 'date', name: :period_end, value: params[:period_end] }
%input.form-control{ type: 'date',
name: :period_start,
value: params[:period_start] }
%input.form-control{ type: 'date',
name: :period_end,
value: params[:period_end] }
%button.btn.btn-secondary.mb-0{ type: 'submit' }= t('.filter')
.mb-5
@ -22,17 +31,27 @@
%p.lead= t('.host.description')
= line_chart site_stats_host_path(@chart_params), **@chart_options
#custom-urls.mb-5
.mb-5#custom-urls
%h2= t('.urls.title')
%p.lead= t('.urls.description')
%form{ method: 'get', action: '#custom-urls' }
%input{ type: 'hidden', name: 'interval', value: @interval }
%input{ type: 'hidden', name: 'period_start', value: params[:period_start] }
%input{ type: 'hidden', name: 'period_end', value: params[:period_end] }
%input{ type: 'hidden',
name: 'interval',
value: @interval }
%input{ type: 'hidden',
name: 'period_start',
value: params[:period_start] }
%input{ type: 'hidden',
name: 'period_end',
value: params[:period_end] }
.form-group
%label{ for: 'urls' }= t('.urls.label')
%textarea#urls.form-control{ name: 'urls', autocomplete: 'on', required: true, rows: @normalized_urls.size + 1, aria_describedby: 'help-urls' }= @normalized_urls.join("\n")
%small#help-urls.feedback.form-text.text-muted= t('.urls.help')
%textarea.form-control#urls{ name: 'urls',
autocomplete: 'on',
required: true,
rows: @normalized_urls.size + 1,
aria_describedby: 'help-urls' }= @normalized_urls.join("\n")
%small.feedback.form-text.text-muted#help-urls= t('.urls.help')
.form-group
%button.btn.btn-secondary{ type: 'submit' }= t('.urls.submit')
- if @normalized_urls.present?
@ -41,6 +60,7 @@
.row.mb-5.row-cols-1.row-cols-lg-2
- @columns.each_pair do |column, values|
- next if values.blank?
.col.mb-5
%h2= t(".columns.#{column}.title")
%p.lead= t(".columns.#{column}.description")
@ -57,7 +77,8 @@
%tbody
- values.each_pair do |col, val|
%tr
%th{ scope: 'row', style: 'word-break: break-all' }= col.blank? ? t(".columns.#{column}.empty") : col
%th.break-all{ scope: 'row' }
= col.blank? ? t(".columns.#{column}.empty") : col
%td= val
.mb-5
%h2= t('.resources.title')
@ -67,4 +88,5 @@
.mb-5
%h3= t(".resources.#{resource}.title")
%p.lead= t(".resources.#{resource}.description")
= line_chart site_stats_resources_path(resource: resource, **@chart_params), **@chart_options.merge(StatsController::EXTRA_OPTIONS[resource])
= line_chart site_stats_resources_path(resource: resource, **@chart_params),
**@chart_options.merge(StatsController::EXTRA_OPTIONS[resource])

View file

@ -8,16 +8,16 @@
.btn-group{ role: 'group', 'aria-label': t('.actions') }
- if @policy.invite?
= link_to t('.invite'),
site_usuaries_invite_path(@site, invite_as: u.to_s),
class: 'btn btn-secondary',
data: { toggle: 'tooltip' },
title: t('.help.invite', invite_as: u.to_s)
site_usuaries_invite_path(@site, invite_as: u.to_s),
class: 'btn btn-secondary',
data: { toggle: 'tooltip' },
title: t('.help.invite', invite_as: u.to_s)
- if policy(Collaboration.new(@site)).collaborate?
= link_to t('.public_invite'),
site_collaborate_path(@site),
class: 'btn btn-secondary',
data: { toggle: 'tooltip' },
title: t('.help.public_invite')
site_collaborate_path(@site),
class: 'btn btn-secondary',
data: { toggle: 'tooltip' },
title: t('.help.public_invite')
%p.lead= t(".help.#{u}")
%table.table.table-condensed
%tbody
@ -34,28 +34,28 @@
%span.badge.badge-info= t('.invited')
%td
.btn-group{ role: 'group',
aria: { label: t('.individual_actions') } }
aria: { label: t('.individual_actions') } }
- if @policy.demote? && @site.usuarie?(cuenta)
= link_to t('.demote.text'),
site_usuarie_demote_path(@site, cuenta),
class: 'btn btn-secondary',
data: { toggle: 'tooltip',
confirm: t('.demote.confirm') },
title: t('.help.demote'),
method: :patch
site_usuarie_demote_path(@site, cuenta),
class: 'btn btn-secondary',
data: { toggle: 'tooltip',
confirm: t('.demote.confirm') },
title: t('.help.demote'),
method: :patch
- if @policy.promote? && @site.invitade?(cuenta)
= link_to t('.promote.text'),
site_usuarie_promote_path(@site, cuenta),
class: 'btn btn-secondary',
data: { toggle: 'tooltip',
confirm: t('.promote.confirm') },
title: t('.help.promote'),
method: :patch
site_usuarie_promote_path(@site, cuenta),
class: 'btn btn-secondary',
data: { toggle: 'tooltip',
confirm: t('.promote.confirm') },
title: t('.help.promote'),
method: :patch
- if @policy.destroy?
= link_to t('.destroy.text'),
site_usuarie_path(@site, cuenta),
class: 'btn btn-secondary',
data: { toggle: 'tooltip',
confirm: t('.destroy.confirm') },
title: t('.help.destroy'),
method: :delete
site_usuarie_path(@site, cuenta),
class: 'btn btn-secondary',
data: { toggle: 'tooltip',
confirm: t('.destroy.confirm') },
title: t('.help.destroy'),
method: :delete

View file

@ -9,8 +9,8 @@
.form-group
= f.label :invitaciones do
= t('.invitaciones')
%small.text-muted.form-text= t('.help.invitaciones',
invite_as: invite_as)
%small.text-muted.form-text
= t('.help.invitaciones', invite_as: invite_as)
= f.text_area :invitaciones, class: 'form-control'
.form-group
= f.submit t('.submit'), class: 'btn btn-secondary'

View file

@ -46,7 +46,7 @@ Rails.application.configure do
# The :test delivery method accumulates sent emails in the
# ActionMailer::Base.deliveries array.
config.action_mailer.delivery_method = :test
config.action_mailer.default_options = { from: ENV['DEFAULT_FROM'] }
config.action_mailer.default_options = { from: ENV.fetch('DEFAULT_FROM', nil) }
config.action_mailer.default_url_options = { host: 'localhost',
port: 3000 }
@ -54,8 +54,8 @@ Rails.application.configure do
error_grouping: true,
email: {
email_prefix: '',
sender_address: ENV['DEFAULT_FROM'],
exception_recipients: ENV['EXCEPTION_TO'],
sender_address: ENV.fetch('DEFAULT_FROM', nil),
exception_recipients: ENV.fetch('EXCEPTION_TO', nil),
normalize_subject: true
}

View file

@ -167,9 +167,7 @@ class PostsControllerTest < ActionDispatch::IntegrationTest
end
test 'si hay algún error se recupera' do
File.open(File.join(@site.path, '_es', "#{Date.today}-#{SecureRandom.hex}.markdown"), 'w') do |f|
f.write ''
end
File.write(File.join(@site.path, '_es', "#{Date.today}-#{SecureRandom.hex}.markdown"), '')
get site_posts_url(@site), headers: @authorization
end