Class: ContentProviders::NewCompleteThoughtFormProvider

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

Overview

Provides a form for a Participant to enter a Thought.

Instance Method Summary collapse

Instance Method Details

#data_attributesObject



19
20
21
# File 'app/models/content_providers/new_complete_thought_form_provider.rb', line 19

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

#data_class_nameObject



15
16
17
# File 'app/models/content_providers/new_complete_thought_form_provider.rb', line 15

def data_class_name
  "Thought"
end

#render_current(options) ⇒ Object



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

def render_current(options)
  options.view_context.render(
    template: "think_feel_do_engine/thoughts/new_complete",
    locals: {
      thought: options.participant.thoughts.build,
      create_path: options.view_context.participant_data_path
    }
  )
end

#show_nav_link?Boolean

Returns:

  • (Boolean)


23
24
25
# File 'app/models/content_providers/new_complete_thought_form_provider.rb', line 23

def show_nav_link?
  false
end