20 changed files with 81 additions and 78 deletions
@ -0,0 +1,15 @@
|
||||
class Form::Lettings::Questions::Age < ::Form::Question |
||||
def initialize(id, hsh, page, person_index:) |
||||
super(id, hsh, page) |
||||
@id = "age#{person_index}" |
||||
@check_answer_label = "Person #{person_index}’s age" |
||||
@header = "Age" |
||||
@type = "numeric" |
||||
@width = 2 |
||||
@inferred_check_answers_value = [{ "condition" => { "age#{person_index}_known" => 1 }, "value" => "Not known" }] |
||||
@check_answers_card_number = person_index |
||||
@max = 120 |
||||
@min = 0 |
||||
@step = 1 |
||||
end |
||||
end |
||||
@ -0,0 +1,16 @@
|
||||
class Form::Lettings::Questions::AgeKnown < ::Form::Question |
||||
def initialize(id, hsh, page, person_index:) |
||||
super(id, hsh, page) |
||||
@id = "age#{person_index}_known" |
||||
@check_answer_label = "" |
||||
@header = "Do you know person #{person_index}’s age?" |
||||
@type = "radio" |
||||
@check_answers_card_number = person_index |
||||
@hint_text = "" |
||||
@answer_options = ANSWER_OPTIONS |
||||
@conditional_for = { "age#{person_index}" => [0] } |
||||
@hidden_in_check_answers = { "depends_on" => [{ "age#{person_index}_known" => 0 }, { "age#{person_index}_known" => 1 }] } |
||||
end |
||||
|
||||
ANSWER_OPTIONS = { "0" => { "value" => "Yes" }, "1" => { "value" => "No" } }.freeze |
||||
end |
||||
Loading…
Reference in new issue