Sha256: 11d50c3fc1b6ee51d28de0d7326e21680b4565af526ae3e31cd8e9f3b8dbad05

Contents?: true

Size: 845 Bytes

Versions: 55

Compression:

Stored size: 845 Bytes

Contents

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

      options.view_context.render(
        template: "think_feel_do_engine/activities/previously_planned_fullpage",
        locals: {
          activities_list: activities.order("start_time ASC"),
          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
      ]
    end

    def show_nav_link?
      false
    end
  end
end

Version data entries

55 entries across 55 versions & 1 rubygems

Version Path
think_feel_do_engine-3.15.5 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.15.4 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.15.3 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.15.2 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.15.1 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.15.0 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.14.9 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.14.8 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.14.7 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.14.6 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.14.5 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.14.4 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.14.3 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.14.2 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.14.1 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.14.0 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.13.1 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.13.0 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.12.9 app/models/content_providers/previous_planned_activities_provider.rb
think_feel_do_engine-3.12.8 app/models/content_providers/previous_planned_activities_provider.rb