class Polls::Questions::QuestionComponent < ApplicationComponent attr_reader :question def initialize(question:) @question = question end def answers_read_more_links safe_join(question.options_with_read_more.map do |answer| link_to answer.title, "#answer_#{answer.id}" end, ", ") end end