Sha256: c0f9c6a14c0e9d4dca7346570a08e84acb8d9896fceeafb68428aaf68bfd8413

Contents?: true

Size: 781 Bytes

Versions: 55

Compression:

Stored size: 781 Bytes

Contents

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

55 entries across 55 versions & 1 rubygems

Version Path
think_feel_do_engine-3.19.9 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.19.8 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.19.7 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.19.6 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.19.5 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.19.4 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.19.3 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.19.2 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.19.1 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.19.0 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.18.0 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.17.2 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.17.1 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.17.0 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.16.3 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.16.2 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.16.1 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.15.7 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.16.0 app/models/content_providers/helpful_thoughts_index_provider.rb
think_feel_do_engine-3.15.6 app/models/content_providers/helpful_thoughts_index_provider.rb