Sha256: ede8c1713103f3cfb695be5ee702927679ba9df578d85e8f2c6c12b0e361d13b

Contents?: true

Size: 723 Bytes

Versions: 55

Compression:

Stored size: 723 Bytes

Contents

module ContentProviders
  # Participant rates their current mood
  class NewCurrentEmotionProvider < BitCore::ContentProvider
    def render_current(options)
      options.view_context.render(
        template: "think_feel_do_engine/emotions/new_current",
        locals: {
          emotional_rating: options
            .view_context
            .current_participant
            .emotional_ratings
            .build,
          create_path: options.view_context.participant_data_path
        }
      )
    end

    def data_class_name
      "EmotionalRating"
    end

    def data_attributes
      [:emotion_id, :name, :participant_id, :rating, :is_positive]
    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.19.9 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.19.8 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.19.7 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.19.6 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.19.5 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.19.4 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.19.3 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.19.2 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.19.1 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.19.0 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.18.0 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.17.2 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.17.1 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.17.0 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.16.3 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.16.2 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.16.1 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.15.7 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.16.0 app/models/content_providers/new_current_emotion_provider.rb
think_feel_do_engine-3.15.6 app/models/content_providers/new_current_emotion_provider.rb