27 lines
850 B
Ruby
27 lines
850 B
Ruby
module TurboChampsConcern
|
|
extend ActiveSupport::Concern
|
|
|
|
private
|
|
|
|
def champs_to_turbo_update(params, champs)
|
|
to_update = if params.values.filter { _1.key?(:with_public_id) }.empty?
|
|
champ_ids = params.values.map { _1[:id] }.compact.map(&:to_i)
|
|
champs.filter { _1.id.in?(champ_ids) }
|
|
else
|
|
champ_public_ids = params.keys
|
|
champs.filter { _1.public_id.in?(champ_public_ids) }
|
|
end.filter { _1.refresh_after_update? || _1.forked_with_changes? }
|
|
|
|
to_show, to_hide = champs.filter(&:conditional?)
|
|
.partition(&:visible?)
|
|
.map { champs_to_one_selector(_1 - to_update) }
|
|
|
|
return to_show, to_hide, to_update
|
|
end
|
|
|
|
def champs_to_one_selector(champs)
|
|
champs
|
|
.map { "##{_1.input_group_id}" }
|
|
.join(',')
|
|
end
|
|
end
|