Sha256: 0b10124303c9cd9aca72d8cc162e9e0ba16a5ad0a379083aec20f36dfa47b8f0

Contents?: true

Size: 703 Bytes

Versions: 13

Compression:

Stored size: 703 Bytes

Contents

# frozen_string_literal: true
module ContentProviders
  # Provides a form for a Participant to enter a Thought.
  class NewHarmfulThoughtFormProvider < BitCore::ContentProvider
    def render_current(options)
      options.view_context.render(
        template: "think_feel_do_engine/thoughts/new_harmful",
        locals: {
          thought: options.participant.thoughts
                   .build(effect: Thought::EFFECTS[:harmful]),
          create_path: options.view_context.participant_data_path
        }
      )
    end

    def data_class_name
      "Thought"
    end

    def data_attributes
      [:content, :effect, :pattern_id]
    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/new_harmful_thought_form_provider.rb
think_feel_do_engine-3.22.8 app/models/content_providers/new_harmful_thought_form_provider.rb
think_feel_do_engine-3.22.7 app/models/content_providers/new_harmful_thought_form_provider.rb
think_feel_do_engine-3.22.6 app/models/content_providers/new_harmful_thought_form_provider.rb
think_feel_do_engine-3.22.5 app/models/content_providers/new_harmful_thought_form_provider.rb
think_feel_do_engine-3.22.4 app/models/content_providers/new_harmful_thought_form_provider.rb
think_feel_do_engine-3.22.2 app/models/content_providers/new_harmful_thought_form_provider.rb
think_feel_do_engine-3.22.1 app/models/content_providers/new_harmful_thought_form_provider.rb
think_feel_do_engine-3.22.0 app/models/content_providers/new_harmful_thought_form_provider.rb
think_feel_do_engine-3.21.2 app/models/content_providers/new_harmful_thought_form_provider.rb
think_feel_do_engine-3.21.1 app/models/content_providers/new_harmful_thought_form_provider.rb
think_feel_do_engine-3.21.0 app/models/content_providers/new_harmful_thought_form_provider.rb
think_feel_do_engine-3.20.1 app/models/content_providers/new_harmful_thought_form_provider.rb