Sha256: f689af1c39bcbf3826701b2402b7fe8c1cd066e9bce1add024508bc3b0945252

Contents?: true

Size: 863 Bytes

Versions: 13

Compression:

Stored size: 863 Bytes

Contents

# frozen_string_literal: true
module ContentProviders
  # Provides a form for a Participant to update previously planned Activities.
  class PastActivityReviewForm < BitCore::ContentProvider
    def render_current(options)
      activities =
        options
        .participant
        .activities
        .in_the_past
        .planned

      options.view_context.render(
        template: "think_feel_do_engine/activities/past_activity_review",
        locals: {
          activities: activities,
          update_path: options.view_context.participant_data_path
        }
      )
    end

    def data_class_name
      "Activity"
    end

    def data_attributes
      [
        :id, :actual_pleasure_intensity, :actual_accomplishment_intensity,
        :noncompliance_reason, :is_reviewed
      ]
    end

    def show_nav_link?
      false
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
think_feel_do_engine-3.22.9 app/models/content_providers/past_activity_review_form.rb
think_feel_do_engine-3.22.8 app/models/content_providers/past_activity_review_form.rb
think_feel_do_engine-3.22.7 app/models/content_providers/past_activity_review_form.rb
think_feel_do_engine-3.22.6 app/models/content_providers/past_activity_review_form.rb
think_feel_do_engine-3.22.5 app/models/content_providers/past_activity_review_form.rb
think_feel_do_engine-3.22.4 app/models/content_providers/past_activity_review_form.rb
think_feel_do_engine-3.22.2 app/models/content_providers/past_activity_review_form.rb
think_feel_do_engine-3.22.1 app/models/content_providers/past_activity_review_form.rb
think_feel_do_engine-3.22.0 app/models/content_providers/past_activity_review_form.rb
think_feel_do_engine-3.21.2 app/models/content_providers/past_activity_review_form.rb
think_feel_do_engine-3.21.1 app/models/content_providers/past_activity_review_form.rb
think_feel_do_engine-3.21.0 app/models/content_providers/past_activity_review_form.rb
think_feel_do_engine-3.20.1 app/models/content_providers/past_activity_review_form.rb