mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-24 17:36:21 +00:00
fix: mostrar la relación deshabilitada #17616
This commit is contained in:
parent
d5ce99deee
commit
c82203a9f6
6 changed files with 22 additions and 12 deletions
|
@ -9,18 +9,22 @@ module Metadata
|
|||
extend ActiveSupport::Concern
|
||||
|
||||
included do
|
||||
# Genera un Hash de { title | slug => uuid }, excluyendo el Post
|
||||
# actual y todos los que ya tengan una relación inversa, para no
|
||||
# romperla.
|
||||
# Excluye el Post actual y todos los que ya tengan una relación
|
||||
# inversa, para no romperla.
|
||||
#
|
||||
# @return [Hash]
|
||||
# @return [Array]
|
||||
def values
|
||||
@values ||= posts.map do |p|
|
||||
next if p.uuid.value == post.uuid.value
|
||||
next unless inverse? && (p[inverse].empty? || [p[inverse].value].flatten.include?(post.uuid.value))
|
||||
|
||||
[title(p), p.uuid.value]
|
||||
end.compact.to_h
|
||||
disabled = false
|
||||
|
||||
if inverse?
|
||||
disabled = p[inverse].empty? || ![p[inverse].value].flatten.include?(post.uuid.value)
|
||||
end
|
||||
|
||||
[title(p), p.uuid.value, disabled]
|
||||
end.compact
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
:ruby
|
||||
help_id = "#{id}_help"
|
||||
checkbox_attributes = local_assigns.slice(:id, :type, :name, :value, :required, :checked, :data)
|
||||
checkbox_attributes = local_assigns.slice(:id, :type, :name, :value, :required, :checked, :data, :disabled)
|
||||
checkbox_attributes[:type] ||= 'checkbox'
|
||||
|
||||
.custom-control{ class: "custom-#{checkbox_attributes[:type]}" }
|
||||
|
|
|
@ -56,9 +56,10 @@
|
|||
|
||||
- content_for :"#{id}_body" do
|
||||
.form-group.mb-0{ id: value_list_id }
|
||||
- metadata.values.each_pair do |value, uuid|
|
||||
- metadata.values.each do |(value, uuid, disabled)|
|
||||
= render 'targets/array/item', value: uuid, 'send-value': uuid, 'human-value': value, class: 'mb-2' do
|
||||
= render 'bootstrap/custom_checkbox', name: name, id: random_id, value: uuid, checked: metadata.value.include?(uuid), content: value, type: 'radio'
|
||||
= render 'bootstrap/custom_checkbox', name: name, id: random_id, value: uuid, checked: metadata.value.include?(uuid), content: value, type: 'radio', disabled: disabled do
|
||||
= t('posts.attributes.new_belongs_to.disabled') if disabled
|
||||
|
||||
-#
|
||||
Según la definición del campo, si hay un filtro, tenemos que poder
|
||||
|
|
|
@ -57,9 +57,10 @@
|
|||
|
||||
- content_for :"#{id}_body" do
|
||||
.form-group.mb-0{ id: value_list_id }
|
||||
- metadata.values.each_pair do |value, uuid|
|
||||
- metadata.values.each do |(value, uuid, disabled)|
|
||||
= render 'targets/array/item', value: uuid, 'send-value': uuid, 'human-value': value, class: 'mb-2' do
|
||||
= render 'bootstrap/custom_checkbox', name: name, id: random_id, value: uuid, checked: metadata.value.include?(uuid), content: value, data: { action: 'required-checkbox#change', 'required-checkbox-target': 'checkbox' }
|
||||
= render 'bootstrap/custom_checkbox', name: name, id: random_id, value: uuid, checked: metadata.value.include?(uuid), content: value, data: { action: 'required-checkbox#change', 'required-checkbox-target': 'checkbox' }, disabled: disabled do
|
||||
= t('posts.attributes.new_has_many.disabled') if disabled
|
||||
|
||||
-#
|
||||
Según la definición del campo, si hay un filtro, tenemos que poder
|
||||
|
|
|
@ -757,6 +757,7 @@ en:
|
|||
label: Draft
|
||||
new_has_many:
|
||||
edit: "Edit"
|
||||
disabled: "It's already associated to an article."
|
||||
new_has_and_belongs_to_many:
|
||||
edit: "Edit"
|
||||
new_predefined_array:
|
||||
|
@ -769,6 +770,7 @@ en:
|
|||
edit: "Edit"
|
||||
new_belongs_to:
|
||||
edit: "Edit"
|
||||
disabled: "It's already associated to an article."
|
||||
required_checkbox:
|
||||
required: "Please select at least one option."
|
||||
reorder:
|
||||
|
|
|
@ -765,6 +765,7 @@ es:
|
|||
label: Borrador
|
||||
new_has_many:
|
||||
edit: "Editar"
|
||||
disabled: "Ya está relacionado con otro artículo."
|
||||
new_has_and_belongs_to_many:
|
||||
edit: "Editar"
|
||||
new_predefined_array:
|
||||
|
@ -779,6 +780,7 @@ es:
|
|||
edit: "Editar"
|
||||
new_belongs_to:
|
||||
edit: "Editar"
|
||||
disabled: "Ya está relacionado con otro artículo."
|
||||
required_checkbox:
|
||||
required: "Seleccioná al menos una opción."
|
||||
reorder:
|
||||
|
|
Loading…
Reference in a new issue