mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 22:06:22 +00:00
Merge branch 'issue-15068' into production.panel.sutty.nl
This commit is contained in:
commit
27a4233390
7 changed files with 13 additions and 13 deletions
1
Gemfile
1
Gemfile
|
@ -87,7 +87,6 @@ gem 'after_commit_everywhere', '~> 1.0'
|
||||||
gem 'aasm'
|
gem 'aasm'
|
||||||
gem 'que-web'
|
gem 'que-web'
|
||||||
gem 'nanoid'
|
gem 'nanoid'
|
||||||
gem 'nice_partials'
|
|
||||||
|
|
||||||
# database
|
# database
|
||||||
gem 'hairtrigger'
|
gem 'hairtrigger'
|
||||||
|
|
|
@ -389,8 +389,6 @@ GEM
|
||||||
net-protocol
|
net-protocol
|
||||||
net-ssh (7.2.1)
|
net-ssh (7.2.1)
|
||||||
netaddr (2.0.6)
|
netaddr (2.0.6)
|
||||||
nice_partials (0.10.0)
|
|
||||||
actionview (>= 4.2.6)
|
|
||||||
nio4r (2.7.0-x86_64-linux-musl)
|
nio4r (2.7.0-x86_64-linux-musl)
|
||||||
nokogiri (1.16.4-x86_64-linux-musl)
|
nokogiri (1.16.4-x86_64-linux-musl)
|
||||||
mini_portile2 (~> 2.8.2)
|
mini_portile2 (~> 2.8.2)
|
||||||
|
@ -687,7 +685,6 @@ DEPENDENCIES
|
||||||
mobility
|
mobility
|
||||||
nanoid
|
nanoid
|
||||||
net-ssh
|
net-ssh
|
||||||
nice_partials
|
|
||||||
nokogiri
|
nokogiri
|
||||||
pg
|
pg
|
||||||
pg_search
|
pg_search
|
||||||
|
|
|
@ -20,11 +20,11 @@ PostService = Struct.new(:site, :usuarie, :post, :params, keyword_init: true) do
|
||||||
end
|
end
|
||||||
|
|
||||||
# Crea los posts anidados
|
# Crea los posts anidados
|
||||||
create_nested_posts! post, params[:post]
|
create_nested_posts! post, params[base]
|
||||||
post.save
|
post.save
|
||||||
update_related_posts
|
update_related_posts
|
||||||
|
|
||||||
commit(action: :created, add: files)
|
commit(action: :created, add: files) if post.valid?
|
||||||
|
|
||||||
update_site_license!
|
update_site_license!
|
||||||
|
|
||||||
|
@ -50,14 +50,14 @@ PostService = Struct.new(:site, :usuarie, :post, :params, keyword_init: true) do
|
||||||
|
|
||||||
def update
|
def update
|
||||||
post.usuaries << usuarie
|
post.usuaries << usuarie
|
||||||
params[:post][:draft] = true if site.invitade? usuarie
|
params[base][:draft] = true if site.invitade? usuarie
|
||||||
|
|
||||||
# Eliminar ("mover") el archivo si cambió de ubicación.
|
# Eliminar ("mover") el archivo si cambió de ubicación.
|
||||||
if post.update(post_params)
|
if post.update(post_params)
|
||||||
rm = []
|
rm = []
|
||||||
rm << post.path.value_was if post.path.changed?
|
rm << post.path.value_was if post.path.changed?
|
||||||
|
|
||||||
create_nested_posts! post, params[:post]
|
create_nested_posts! post, params[base]
|
||||||
update_related_posts
|
update_related_posts
|
||||||
|
|
||||||
# Es importante que el artículo se guarde primero y luego los
|
# Es importante que el artículo se guarde primero y luego los
|
||||||
|
@ -149,11 +149,11 @@ PostService = Struct.new(:site, :usuarie, :post, :params, keyword_init: true) do
|
||||||
end
|
end
|
||||||
|
|
||||||
def locale
|
def locale
|
||||||
params.dig(:post, :lang)&.to_sym || I18n.locale
|
params.dig(base, :lang)&.to_sym || I18n.locale
|
||||||
end
|
end
|
||||||
|
|
||||||
def layout
|
def layout
|
||||||
params.dig(:post, :layout) || params[:layout]
|
params.dig(base, :layout) || params[:layout]
|
||||||
end
|
end
|
||||||
|
|
||||||
# Actualiza los artículos relacionados según los métodos que los
|
# Actualiza los artículos relacionados según los métodos que los
|
||||||
|
|
|
@ -23,6 +23,9 @@
|
||||||
local_assigns[:hide_actions] << 'click->modal#hide'
|
local_assigns[:hide_actions] << 'click->modal#hide'
|
||||||
local_assigns[:modal_content_attributes] ||= {}
|
local_assigns[:modal_content_attributes] ||= {}
|
||||||
|
|
||||||
|
-# XXX: Necesario para poder generar todas las demás
|
||||||
|
= yield
|
||||||
|
|
||||||
.modal.fade{ tabindex: -1, aria: { hidden: 'true' }, data: { target: 'modal.modal' } }
|
.modal.fade{ tabindex: -1, aria: { hidden: 'true' }, data: { target: 'modal.modal' } }
|
||||||
.modal-backdrop.fade{ data: { target: 'modal.backdrop', action: local_assigns[:hide_actions].join(' ') } }
|
.modal-backdrop.fade{ data: { target: 'modal.backdrop', action: local_assigns[:hide_actions].join(' ') } }
|
||||||
.modal-dialog.modal-dialog-scrollable.modal-dialog-centered
|
.modal-dialog.modal-dialog-scrollable.modal-dialog-centered
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
-#
|
-#
|
||||||
Genera un listado de checkboxes entre los que se puede elegir para guardar
|
Genera un listado de checkboxes entre los que se puede elegir para guardar
|
||||||
:ruby
|
:ruby
|
||||||
id = "#{base}_#{attribute}"
|
id = "#{base.gsub(/[\[\]]/, '_')}_#{attribute}".squeeze('_')
|
||||||
name = "#{base}[#{attribute}][]"
|
name = "#{base}[#{attribute}][]"
|
||||||
form_id = "form-#{Nanoid.generate}"
|
form_id = "form-#{Nanoid.generate}"
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
del formulario principal porque no se pueden anidar.
|
del formulario principal porque no se pueden anidar.
|
||||||
|
|
||||||
:ruby
|
:ruby
|
||||||
id = "#{base}_#{attribute}"
|
id = "#{base.gsub(/[\[\]]/, '_')}_#{attribute}".squeeze('_')
|
||||||
name = "#{base}[#{attribute}][]"
|
name = "#{base}[#{attribute}][]"
|
||||||
form_id = "form-#{Nanoid.generate}"
|
form_id = "form-#{Nanoid.generate}"
|
||||||
modal_id = "modal-#{Nanoid.generate}"
|
modal_id = "modal-#{Nanoid.generate}"
|
||||||
|
|
|
@ -3,7 +3,8 @@
|
||||||
guardar, pero no se pueden agregar nuevos.
|
guardar, pero no se pueden agregar nuevos.
|
||||||
|
|
||||||
:ruby
|
:ruby
|
||||||
id = "#{base}_#{attribute}"
|
# @todo Convertir en un helper
|
||||||
|
id = "#{base.gsub(/[\[\]]/, '_')}_#{attribute}".squeeze('_')
|
||||||
name = "#{base}[#{attribute}][]"
|
name = "#{base}[#{attribute}][]"
|
||||||
form_id = "form-#{Nanoid.generate}"
|
form_id = "form-#{Nanoid.generate}"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue