Sha256: 23ef840b477002d55033b2b073e9c7c04d6939473dea56390974663ba7228cb8
Contents?: true
Size: 1.64 KB
Versions: 8
Compression:
Stored size: 1.64 KB
Contents
module Mumuki::Laboratory::Controllers::ResultsRendering extend ActiveSupport::Concern included do include ProgressBarHelper before_action :set_guide_previously_done! end def render_results_json(assignment, results = {}) render json: results.merge( guide_finished_by_solution: guide_finished_by_solution?, class_for_progress_list_item: class_for_progress_list_item(@exercise, true), html: render_results_html(assignment), title_html: render_results_title_html(assignment), button_html: render_results_button_html(assignment), expectations_html: render_results_expectations_html(assignment)) end def render_results_html(assignment) render_to_string partial: results_partial, locals: {assignment: assignment} end def results_partial @exercise&.input_kids? ? 'exercise_solutions/kids_results' : 'exercise_solutions/results' end def render_results_title_html(assignment) render_to_string partial: 'exercise_solutions/results_title', locals: {contextualization: assignment} end def render_results_button_html(assignment) render_to_string partial: 'exercise_solutions/kids_results_button', locals: {assignment: assignment} end def render_results_expectations_html(assignment) render_to_string partial: 'exercise_solutions/expectations', locals: {assignment: assignment} end def guide_finished_by_solution? !@guide_previously_done && @exercise.guide_done_for?(current_user) end def set_guide_previously_done! @guide_previously_done = @exercise.guide_done_for?(current_user) end end
Version data entries
8 entries across 8 versions & 1 rubygems