Sha256: 164e9c9033c60d9e26f51dbbd271dcf2553134e03c4be7853fd8fbf8f87c6b71

Contents?: true

Size: 811 Bytes

Versions: 13

Compression:

Stored size: 811 Bytes

Contents

# frozen_string_literal: true
module ContentProviders
  # Provides a list of a Participant"s helpful Thoughts.
  class HelpfulThoughtsIndexProvider < BitCore::ContentProvider
    def data_class_name
      "Thought"
    end

    def render_current(options)
      options.view_context.render(
        template: "think_feel_do_engine/thoughts/index",
        locals: {
          title: "Helpful Thoughts",
          introduction: introduction,
          thoughts: options.participant.thoughts.helpful
        }
      )
    end

    def show_nav_link?
      true
    end

    private

    def introduction
      "<p>Last time you were here...<br>" \
        "You noted that you've been thinking some things that are helpful." \
        "<p>Being aware of these thoughts can be helpful.".html_safe
    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/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.22.8 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.22.7 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.22.6 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.22.5 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.22.4 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.22.2 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.22.1 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.22.0 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.21.2 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.21.1 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.21.0 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.20.1 app/models/content_providers/helpful_thoughts_index_provider.rb