Sha256: afe383802a3f182d538e8268ae368092266529261d629dc1327a17a87c06ac23

Contents?: true

Size: 729 Bytes

Versions: 13

Compression:

Stored size: 729 Bytes

Contents

# frozen_string_literal: true
module ContentProviders
  # Provides a form for a Participant to identify harmful Thoughts by their
  # ThoughtPatterns.
  class HarmfulThoughtsEditFormProvider < BitCore::ContentProvider
    def render_current(options)
      thoughts = options.participant.thoughts.harmful.no_pattern

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

    def data_class_name
      "Thought"
    end

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