Class: ContentProviders::NewHarmfulThoughtFormProvider

Inherits:
BitCore::ContentProvider
  • Object
show all
Defined in:
app/models/content_providers/new_harmful_thought_form_provider.rb

Overview

Provides a form for a Participant to enter a Thought.

Instance Method Summary collapse

Instance Method Details

#data_attributesObject



20
21
22
# File 'app/models/content_providers/new_harmful_thought_form_provider.rb', line 20

def data_attributes
  [:content, :effect, :pattern_id]
end

#data_class_nameObject



16
17
18
# File 'app/models/content_providers/new_harmful_thought_form_provider.rb', line 16

def data_class_name
  "Thought"
end

#render_current(options) ⇒ Object



5
6
7
8
9
10
11
12
13
14
# File 'app/models/content_providers/new_harmful_thought_form_provider.rb', line 5

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

#show_nav_link?Boolean

Returns:

  • (Boolean)


24
25
26
# File 'app/models/content_providers/new_harmful_thought_form_provider.rb', line 24

def show_nav_link?
  false
end