Class: SurveyorGui::QuestionGroupsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/surveyor_gui/question_groups_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'app/controllers/surveyor_gui/question_groups_controller.rb', line 33

def create
  @question_group = QuestionGroup.new(question_group_params)
  if @question_group.save
    #@question_group.questions.update_attributes(survey_section_id: question_group_params[])
    original_question = Question.find(question_group_params[:question_id]) if !question_group_params[:question_id].blank?
    original_question.destroy if original_question
    render :inline => '<div id="cboxQuestionId">'+@question_group.questions.first.id.to_s+'</div>', :layout => 'surveyor_gui/surveyor_gui_blank'
  else
    @title = "Add Question"
    survey_section_id = question_group_params[:survey_section_id]
    redirect_to :action => 'new', :controller => 'questions', :layout => 'surveyor_gui/surveyor_gui_blank', :survey_section_id => survey_section_id
  end
end

#editObject



25
26
27
28
29
30
31
# File 'app/controllers/surveyor_gui/question_groups_controller.rb', line 25

def edit
  @title = "Edit Question Group"
  @question_group = QuestionGroup.includes(:questions).find(params[:id])
  @question_group.question_type_id = params[:question_type_id]
  @survey_section_id = question_params[:survey_section_id]
  p "edit survey sect id #{@survey_section_id}"
end

#newObject



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'app/controllers/surveyor_gui/question_groups_controller.rb', line 4

def new
  @title = "Add Question"
  @survey_section_id = question_params[:survey_section_id]
  @question_group = QuestionGroup.new(
    text: params[:text], 
    question_type_id: params[:question_type_id])
  original_question = Question.find(params[:question_id]) if !params[:question_id].blank?
  if original_question
    @question_group.questions.build(
      display_order: params[:display_order], 
      id: params[:question_id], 
      question_type_id: original_question.question_type_id,
      pick: original_question.pick,
      display_type: original_question.display_type)
  else      
    @question_group.questions.build(
      display_order: params[:display_order])
  end
end

#render_group_inline_partialObject



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'app/controllers/surveyor_gui/question_groups_controller.rb', line 67

def render_group_inline_partial
  if params[:id].blank?
    @question_group = QuestionGroup.new
  else
    @question_group = QuestionGroup.find(params[:id])
  end
  if params[:add_row]
    
    @question_group = QuestionGroup.new
    @question_group.questions.build(display_order: params[:display_order])
    render :partial => 'group_inline_field'
  else
    render :partial => 'group_inline_fields'
  end
end

#updateObject



47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'app/controllers/surveyor_gui/question_groups_controller.rb', line 47

def update
  @title = "Update Question"
  @question_group = QuestionGroup.includes(:questions).find(params[:id])
  if @question_group.update_attributes(question_group_params)
    render :blank, :layout => 'surveyor_gui/surveyor_gui_blank'
    #If a nested question is destroyed, the Question model performs a cascade delete
    #on the parent QuestionGroup (stuck with this behaviour as it is a Surveyor default).
    #Need to check for this and restore question group.
    begin
      QuestionGroup.find(params[:id])
    rescue
      scrubbed_params = question_group_params.to_hash
      scrubbed_params.delete("questions_attributes")
      QuestionGroup.create!(scrubbed_params)
    end     
  else
    render :action => 'edit', :layout => 'surveyor_gui/surveyor_gui_blank'
  end
end