module Maglev::GetPageSections::TransformCollectionItemConcern
def transform_collection_item_content_setting(content, setting)
def transform_collection_item_content_setting(content, setting) # the content might come from the default value of the collection_item setting # rubocop:disable Style/StringHashKeys content['value'] = { 'id' => 'any' } if content&.dig('value') == 'any' # rubocop:enable Style/StringHashKeys item_id = content&.dig('value', 'id') return if item_id.blank? item = fetch_collection_items.call( collection_id: setting.options[:collection_id], id: item_id ) return unless item content['value']['label'] = item.label content['value']['item'] = item.source end