Sha256: 017c6a7265a29ab63881711532a838f7d3c8286cbecec29d71da95e371cd8f76

Contents?: true

Size: 673 Bytes

Versions: 55

Compression:

Stored size: 673 Bytes

Contents

module ContentProviders
  # Provides a set of forms to update a Participant's unhelpful Thoughts.
  class UnhelpfulThoughtsReflectionProvider < BitCore::ContentProvider
    def show_nav_link?
      false
    end

    def render_current(options)
      options.view_context.render(
        template: "think_feel_do_engine/thoughts/unhelpful_thoughts_form",
        locals: {
          thoughts: options.participant.thoughts.unreflected.last(3),
          update_path: options.view_context.participant_data_path
        }
      )
    end

    def data_attributes
      [:challenging_thought, :act_as_if, :id]
    end

    def data_class_name
      "Thought"
    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/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.19.8 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.19.7 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.19.6 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.19.5 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.19.4 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.19.3 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.19.2 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.19.1 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.19.0 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.18.0 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.17.2 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.17.1 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.17.0 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.16.3 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.16.2 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.16.1 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.15.7 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.16.0 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb
think_feel_do_engine-3.15.6 app/models/content_providers/unhelpful_thoughts_reflection_provider.rb