Sha256: 436f1f854966511ab570e9898318ef97af4b83e98a400283cc35754829bf295c

Contents?: true

Size: 981 Bytes

Versions: 55

Compression:

Stored size: 981 Bytes

Contents

module ContentProviders
  # Provides a form for a Participant to schedule new Activities that have
  # been fun in the past.
  class FunActivityChecklist < BitCore::ContentProvider
    def render_current(options)
      options.view_context.render(
        template: "think_feel_do_engine/activities/fun_activity_checklist",
        locals: {
          past_activities: activities(options.participant),
          create_path: options.view_context.participant_data_path
        }
      )
    end

    def data_attributes
      [
        :activity_type_title,
        :activity_type_new_title,
        :predicted_pleasure_intensity,
        :predicted_accomplishment_intensity,
        :start_time
      ]
    end

    def data_class_name
      "PlannedActivity"
    end

    def show_nav_link?
      false
    end

    private

    def activities(participant)
      participant.activities
        .pleasurable
        .random
        .in_the_past
        .first(5)
    end
  end
end

Version data entries

55 entries across 55 versions & 1 rubygems

Version Path
think_feel_do_engine-3.19.9 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.19.8 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.19.7 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.19.6 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.19.5 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.19.4 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.19.3 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.19.2 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.19.1 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.19.0 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.18.0 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.17.2 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.17.1 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.17.0 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.16.3 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.16.2 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.16.1 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.15.7 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.16.0 app/models/content_providers/fun_activity_checklist.rb
think_feel_do_engine-3.15.6 app/models/content_providers/fun_activity_checklist.rb