|
|
|
class FormHandler
|
|
|
|
include Singleton
|
|
|
|
include CollectionTimeHelper
|
|
|
|
attr_reader :forms
|
|
|
|
|
|
|
|
SALES_SECTIONS = [
|
|
|
|
Form::Sales::Sections::PropertyInformation,
|
|
|
|
Form::Sales::Sections::Household,
|
|
|
|
Form::Sales::Sections::Finances,
|
|
|
|
Form::Sales::Sections::SaleInformation,
|
|
|
|
].freeze
|
|
|
|
|
|
|
|
LETTINGS_SECTIONS = [
|
|
|
|
Form::Lettings::Sections::TenancyAndProperty,
|
|
|
|
Form::Lettings::Sections::Household,
|
|
|
|
Form::Lettings::Sections::RentAndCharges,
|
|
|
|
].freeze
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
@forms = get_all_forms
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_form(form)
|
|
|
|
@forms[form]
|
|
|
|
end
|
|
|
|
|
|
|
|
def current_lettings_form
|
|
|
|
forms["current_lettings"]
|
|
|
|
end
|
|
|
|
|
CLDC-3116 Create homepage (#2113)
* feat: add blank homepage, update routing and tests
* feat: add welcome message and thoroughly test routing
* refactor: lint
* feat: update tests
* CLDC-3076: Make example dates consistent (#2107)
* CLDC-3076: Make example dates consistent
* Use example date even when some hint text provided already
* Temp remove some date restrictions
* Update to 2 line breaks
* Revert "Temp remove some date restrictions"
This reverts commit cd7f18f9f10957be0cbabee7665c0abe4239acb6.
* Fix lettings log accessor in date question (#2117)
* Fix lettings log accessor in date question
* Remove hardcoded date example from mrcdate question (#2118)
---------
Co-authored-by: Rachael Booth <Rachael.Booth@softwire.com>
* CLDC-3061 Add guidance page (#2121)
* Add guidance page
* Link to guidance from start page
* feat: test home/start paths explicitly
* CLDC-2253 Add collection resources (#2120)
* Update collection resources, add to homepage
* Add guidance link to an empty page
* Update headings
* Rebase fix
* Update title
* Update file names
* Add section break
* CLDC-2593 Add upcoming deadlines section (#2119)
* Add upcoming deadlines section
* Update the content to use the correct dates
* Update content
* lint
* typos
* CLDC-2252 Add homepage task section (#2115)
* feat: wip add lettings, sales and schemes sections with correct text, counts, links and colouring
* feat: add flex styling to match designs
* CLDC-3076: Make example dates consistent (#2107)
* CLDC-3076: Make example dates consistent
* Use example date even when some hint text provided already
* Temp remove some date restrictions
* Update to 2 line breaks
* Revert "Temp remove some date restrictions"
This reverts commit cd7f18f9f10957be0cbabee7665c0abe4239acb6.
* Fix lettings log accessor in date question (#2117)
* Fix lettings log accessor in date question
* Remove hardcoded date example from mrcdate question (#2118)
---------
Co-authored-by: Rachael Booth <Rachael.Booth@softwire.com>
* feat: update breakpoints for responsive layout changes
* lint: use hash lookup where possible
* lint: erblinting
* feat: improve formatting
* Reuse govuk grid
* Revert "Reuse govuk grid"
This reverts commit 8c71f5d9edf261802a8a86e07c13552f51283668.
* feat: test home page data boxes
* refactor: lint
* refactor: lint
* feat: test link behaviour is correct in all user scenarios
* refactor: lint
* feat: update tests
* feat: combine task, resources, deadlines sections
---------
Co-authored-by: Rachael Booth <Rachael.Booth@softwire.com>
Co-authored-by: kosiakkatrina <54268893+kosiakkatrina@users.noreply.github.com>
Co-authored-by: Kat <kosiak.katrina@gmail.com>
* CLDC-2255 Add homepage notifications (#2131)
* feat: add notification table
* feat: add notification banner, use unread gem for notification management
* feat: add notifications page and remove unread_notification.rb
* feat: add blank homepage, update routing and tests
* feat: add welcome message and thoroughly test routing
* refactor: lint
* feat: update tests
* CLDC-3061 Add guidance page (#2121)
* Add guidance page
* Link to guidance from start page
* feat: test home/start paths explicitly
* feat: add notification table
* feat: add notification banner, use unread gem for notification management
* feat: add notifications page and remove unread_notification.rb
* feat: default p tag around sanitized page content
* feat: add active scope
* feat: use newest active unread/unauthenticated notification and update start page
* feat: add tests of notification behaviour and routing and refactor
* refactor: lint
* feat: update Gemfile.lock
* feat: add timestamps to readmark table
* feat: update gemfile.lock
* refactor: lint
* feat: test notifications page doesn't show notifications and code simplification
* feat: move notification helper methods to notifications_helper.rb
---------
Co-authored-by: kosiakkatrina <54268893+kosiakkatrina@users.noreply.github.com>
* feat: clear all no-status filters on in progress links
* CLDC-2590 Add about this service section (#2124)
* Add about core section
* Move about core to the correct spot on start page
* Update content
* Add some margins
---------
Co-authored-by: Rachael Booth <Rachael.Booth@softwire.com>
Co-authored-by: kosiakkatrina <54268893+kosiakkatrina@users.noreply.github.com>
Co-authored-by: Kat <kosiak.katrina@gmail.com>
10 months ago
|
|
|
def previous_lettings_form
|
|
|
|
forms["previous_lettings"]
|
|
|
|
end
|
|
|
|
|
|
|
|
def current_sales_form
|
|
|
|
forms["current_sales"]
|
|
|
|
end
|
|
|
|
|
|
|
|
def sales_forms
|
|
|
|
@sales_forms ||= {
|
|
|
|
"current_sales" => Form.new(nil, current_collection_start_year, SALES_SECTIONS, "sales"),
|
|
|
|
"previous_sales" => Form.new(nil, previous_collection_start_year, SALES_SECTIONS, "sales"),
|
|
|
|
"next_sales" => Form.new(nil, next_collection_start_year, SALES_SECTIONS, "sales"),
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def ordered_sales_questions_for_all_years
|
|
|
|
sales_forms = forms.filter { |name, _form| name.end_with? "sales" }.values
|
|
|
|
ordered_questions = sales_forms.pop.questions.uniq(&:id)
|
|
|
|
question_ids = ordered_questions.map(&:id)
|
|
|
|
all_questions_from_previous_forms = sales_forms.flat_map(&:questions)
|
|
|
|
deprecated_questions_by_preceding_question_id(question_ids, all_questions_from_previous_forms).each do |preceding_question_id, deprecated_question|
|
|
|
|
index_of_preceding_question = ordered_questions.index { |q| q.id == preceding_question_id }
|
|
|
|
ordered_questions.insert(index_of_preceding_question + 1, deprecated_question)
|
|
|
|
end
|
|
|
|
ordered_questions
|
|
|
|
end
|
|
|
|
|
|
|
|
def ordered_lettings_questions_for_all_years
|
|
|
|
lettings_forms = forms.filter { |name, _form| name.end_with? "lettings" }.values
|
|
|
|
ordered_questions = lettings_forms.pop.questions.uniq(&:id)
|
|
|
|
question_ids = ordered_questions.map(&:id)
|
|
|
|
all_questions_from_previous_forms = lettings_forms.flat_map(&:questions)
|
|
|
|
deprecated_questions_by_preceding_question_id(question_ids, all_questions_from_previous_forms).each do |preceding_question_id, deprecated_question|
|
|
|
|
index_of_preceding_question = ordered_questions.index { |q| q.id == preceding_question_id }
|
|
|
|
ordered_questions.insert(index_of_preceding_question + 1, deprecated_question)
|
|
|
|
end
|
|
|
|
ordered_questions
|
|
|
|
end
|
|
|
|
|
|
|
|
def deprecated_questions_by_preceding_question_id(current_form_question_ids, all_questions_from_previous_forms)
|
|
|
|
deprecated_questions = {}
|
|
|
|
all_questions_from_previous_forms.each_cons(2) do |preceding_question, question|
|
|
|
|
next if current_form_question_ids.include?(question.id) || deprecated_questions.values.map(&:id).include?(question.id)
|
|
|
|
|
|
|
|
deprecated_questions[preceding_question.id] = question
|
|
|
|
end
|
|
|
|
deprecated_questions
|
|
|
|
end
|
|
|
|
|
|
|
|
def lettings_forms
|
|
|
|
@lettings_forms ||= get_lettings_forms
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_lettings_forms
|
|
|
|
forms = {}
|
|
|
|
directories.each do |directory|
|
|
|
|
Dir.glob("#{directory}/*.json").each do |form_path|
|
|
|
|
form = Form.new(form_path)
|
|
|
|
|
|
|
|
form_to_set = form_name_from_start_year(form.start_date.year, "lettings")
|
|
|
|
forms[form_to_set] = form if form_to_set && forms[form_to_set].blank?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if forms["previous_lettings"].blank? && current_collection_start_year >= 2022
|
|
|
|
forms["previous_lettings"] = Form.new(nil, previous_collection_start_year, LETTINGS_SECTIONS, "lettings")
|
|
|
|
end
|
|
|
|
forms["current_lettings"] = Form.new(nil, current_collection_start_year, LETTINGS_SECTIONS, "lettings") if forms["current_lettings"].blank?
|
|
|
|
forms["next_lettings"] = Form.new(nil, next_collection_start_year, LETTINGS_SECTIONS, "lettings") if forms["next_lettings"].blank?
|
|
|
|
|
|
|
|
if Rails.env.test?
|
|
|
|
forms.merge({ fake_lettings_2021: Form.new("spec/fixtures/forms/2021_2022.json"), real_lettings_2021: Form.new("config/forms/2021_2022.json") })
|
|
|
|
else
|
|
|
|
forms
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def lettings_form_for_start_year(year)
|
|
|
|
lettings_forms.values.find { |form| form.start_date.year == year }
|
|
|
|
end
|
|
|
|
|
|
|
|
def sales_form_for_start_year(year)
|
|
|
|
sales_forms.values.find { |form| form.start_date.year == year }
|
|
|
|
end
|
|
|
|
|
|
|
|
def form_name_from_start_year(year, type)
|
|
|
|
form_mappings = { 0 => "current_#{type}", 1 => "previous_#{type}", -1 => "next_#{type}" }
|
|
|
|
form_mappings[current_collection_start_year - year]
|
|
|
|
end
|
|
|
|
|
|
|
|
def start_date_of_earliest_open_collection_period
|
|
|
|
in_crossover_period? ? previous_collection_start_date : current_collection_start_date
|
|
|
|
end
|
|
|
|
|
|
|
|
def start_date_of_earliest_open_for_editing_collection_period
|
|
|
|
in_edit_crossover_period? ? previous_collection_start_date : current_collection_start_date
|
|
|
|
end
|
|
|
|
|
|
|
|
def in_crossover_period?(now: Time.zone.now)
|
|
|
|
lettings_in_crossover_period?(now:) || sales_in_crossover_period?(now:)
|
|
|
|
end
|
|
|
|
|
|
|
|
def in_edit_crossover_period?(now: Time.zone.now)
|
|
|
|
lettings_in_edit_crossover_period?(now:) || sales_in_edit_crossover_period?(now:)
|
|
|
|
end
|
|
|
|
|
|
|
|
def lettings_in_crossover_period?(now: Time.zone.now)
|
|
|
|
forms = lettings_forms.values
|
|
|
|
forms.count { |form| now.between?(form.start_date, form.new_logs_end_date) } > 1
|
|
|
|
end
|
|
|
|
|
|
|
|
def lettings_in_edit_crossover_period?(now: Time.zone.now)
|
|
|
|
forms = lettings_forms.values
|
|
|
|
forms.count { |form| now.between?(form.start_date, form.edit_end_date) } > 1
|
|
|
|
end
|
|
|
|
|
|
|
|
def sales_in_crossover_period?(now: Time.zone.now)
|
|
|
|
forms = sales_forms.values
|
|
|
|
forms.count { |form| now.between?(form.start_date, form.new_logs_end_date) } > 1
|
|
|
|
end
|
|
|
|
|
|
|
|
def sales_in_edit_crossover_period?(now: Time.zone.now)
|
|
|
|
forms = sales_forms.values
|
|
|
|
forms.count { |form| now.between?(form.start_date, form.edit_end_date) } > 1
|
|
|
|
end
|
|
|
|
|
|
|
|
def use_fake_forms!(fake_forms = nil)
|
|
|
|
@directories = ["spec/fixtures/forms"]
|
|
|
|
@forms = fake_forms || get_all_forms
|
|
|
|
end
|
|
|
|
|
|
|
|
def use_real_forms!
|
|
|
|
@directories = ["config/forms"]
|
|
|
|
@lettings_forms = get_lettings_forms
|
|
|
|
@forms = get_all_forms
|
|
|
|
end
|
|
|
|
|
|
|
|
def earliest_open_collection_start_date(now: Time.zone.now)
|
|
|
|
if in_crossover_period?(now:)
|
|
|
|
collection_start_date(now) - 1.year
|
|
|
|
else
|
|
|
|
collection_start_date(now)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def earliest_open_for_editing_collection_start_date(now: Time.zone.now)
|
|
|
|
if in_edit_crossover_period?(now:)
|
|
|
|
collection_start_date(now) - 1.year
|
|
|
|
else
|
|
|
|
collection_start_date(now)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def lettings_earliest_open_for_editing_collection_start_date(now: Time.zone.now)
|
|
|
|
if lettings_in_edit_crossover_period?(now:)
|
|
|
|
collection_start_date(now) - 1.year
|
|
|
|
else
|
|
|
|
collection_start_date(now)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def sales_earliest_open_for_editing_collection_start_date(now: Time.zone.now)
|
|
|
|
if sales_in_edit_crossover_period?(now:)
|
|
|
|
collection_start_date(now) - 1.year
|
|
|
|
else
|
|
|
|
collection_start_date(now)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def get_all_forms
|
|
|
|
lettings_forms.merge(sales_forms)
|
|
|
|
end
|
|
|
|
|
|
|
|
def directories
|
|
|
|
@directories ||= Rails.env.test? ? ["spec/fixtures/forms"] : ["config/forms"]
|
|
|
|
end
|
|
|
|
end
|