Paul Robert Lloyd
3 years ago
committed by
GitHub
44 changed files with 344 additions and 306 deletions
@ -0,0 +1,24 @@ |
|||||||
|
--- |
||||||
|
EnableDefaultLinters: true |
||||||
|
linters: |
||||||
|
Rubocop: |
||||||
|
enabled: true |
||||||
|
rubocop_config: |
||||||
|
inherit_from: |
||||||
|
- .rubocop.yml |
||||||
|
Layout/ArgumentAlignment: |
||||||
|
Enabled: false |
||||||
|
Layout/CommentIndentation: |
||||||
|
Enabled: false |
||||||
|
Layout/FirstArgumentIndentation: |
||||||
|
Enabled: false |
||||||
|
Layout/FirstArrayElementIndentation: |
||||||
|
Enabled: false |
||||||
|
Layout/FirstHashElementIndentation: |
||||||
|
Enabled: false |
||||||
|
Layout/InitialIndentation: |
||||||
|
Enabled: false |
||||||
|
Layout/TrailingEmptyLines: |
||||||
|
Enabled: false |
||||||
|
Lint/UselessAssignment: |
||||||
|
Enabled: false |
@ -1,25 +1,25 @@ |
|||||||
<%- if controller_name != 'sessions' %> |
<%- if controller_name != 'sessions' %> |
||||||
<p class="govuk-body">Already have an account? <%= govuk_link_to "Sign in", new_session_path(resource_name) %>.</p><br /> |
<p class="govuk-body">Already have an account? <%= govuk_link_to "Sign in", new_session_path(resource_name) %>.</p> |
||||||
<% end %> |
<% end %> |
||||||
|
|
||||||
<%- if devise_mapping.registerable? && controller_name != 'registrations' %> |
<%- if devise_mapping.registerable? && controller_name != 'registrations' %> |
||||||
<%= govuk_link_to "Sign up", new_registration_path(resource_name) %><br /> |
<%= govuk_link_to "Sign up", new_registration_path(resource_name) %><br> |
||||||
<% end %> |
<% end %> |
||||||
|
|
||||||
<%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %> |
<%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %> |
||||||
<p class="govuk-body"> You can <%= govuk_link_to "reset your password", new_password_path(resource_name) %> if you’ve forgotten it.<p><br /> |
<p class="govuk-body">You can <%= govuk_link_to "reset your password", new_password_path(resource_name) %> if you’ve forgotten it.</p> |
||||||
<% end %> |
<% end %> |
||||||
|
|
||||||
<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %> |
<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %> |
||||||
<%= govuk_link_to "Didn’t receive confirmation instructions?", new_confirmation_path(resource_name) %><br /> |
<%= govuk_link_to "Didn’t receive confirmation instructions?", new_confirmation_path(resource_name) %><br> |
||||||
<% end %> |
<% end %> |
||||||
|
|
||||||
<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %> |
<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %> |
||||||
<%= govuk_link_to "Didn’t receive unlock instructions?", new_unlock_path(resource_name) %><br /> |
<%= govuk_link_to "Didn’t receive unlock instructions?", new_unlock_path(resource_name) %><br> |
||||||
<% end %> |
<% end %> |
||||||
|
|
||||||
<%- if devise_mapping.omniauthable? %> |
<%- if devise_mapping.omniauthable? %> |
||||||
<%- resource_class.omniauth_providers.each do |provider| %> |
<%- resource_class.omniauth_providers.each do |provider| %> |
||||||
<%= govuk_link_to "Sign in with #{OmniAuth::Utils.camelize(provider)}", omniauth_authorize_path(resource_name, provider), method: :post %><br /> |
<%= govuk_link_to "Sign in with #{OmniAuth::Utils.camelize(provider)}", omniauth_authorize_path(resource_name, provider), method: :post %><br> |
||||||
<% end %> |
<% end %> |
||||||
<% end %> |
<% end %> |
||||||
|
@ -1,9 +1,8 @@ |
|||||||
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
||||||
|
|
||||||
<%= f.govuk_date_field question.id.to_sym, |
<%= f.govuk_date_field question.id.to_sym, |
||||||
caption: caption(caption_text, page_header, conditional), |
caption: caption(caption_text, page_header, conditional), |
||||||
legend: legend(question, page_header, conditional), |
legend: legend(question, page_header, conditional), |
||||||
hint: { text: question.hint_text&.html_safe }, |
hint: { text: question.hint_text&.html_safe }, |
||||||
width: 20, |
width: 20, |
||||||
**stimulus_html_attributes(question) |
**stimulus_html_attributes(question) %> |
||||||
%> |
|
||||||
|
@ -1,12 +1,12 @@ |
|||||||
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
||||||
|
|
||||||
<%= f.govuk_number_field question.id.to_sym, |
<%= f.govuk_number_field question.id.to_sym, |
||||||
caption: caption(caption_text, page_header, conditional), |
caption: caption(caption_text, page_header, conditional), |
||||||
label: legend(question, page_header, conditional), |
label: legend(question, page_header, conditional), |
||||||
hint: { text: question.hint_text&.html_safe }, |
hint: { text: question.hint_text&.html_safe }, |
||||||
min: question.min, max: question.max, step: question.step, |
min: question.min, max: question.max, step: question.step, |
||||||
width: question.width, :readonly => question.read_only?, |
width: question.width, |
||||||
prefix_text: question.prefix.to_s, |
readonly: question.read_only?, |
||||||
suffix_text: question.suffix.is_a?(String) ? question.suffix : nil, |
prefix_text: question.prefix.to_s, |
||||||
**stimulus_html_attributes(question) |
suffix_text: question.suffix.is_a?(String) ? question.suffix : nil, |
||||||
%> |
**stimulus_html_attributes(question) %> |
||||||
|
@ -1,37 +1,36 @@ |
|||||||
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
||||||
|
|
||||||
<%= f.govuk_radio_buttons_fieldset question.id.to_sym, |
<%= f.govuk_radio_buttons_fieldset question.id.to_sym, |
||||||
caption: caption(caption_text, page_header, conditional), |
caption: caption(caption_text, page_header, conditional), |
||||||
legend: legend(question, page_header, conditional), |
legend: legend(question, page_header, conditional), |
||||||
hint: { text: question.hint_text&.html_safe } do %> |
hint: { text: question.hint_text&.html_safe } do %> |
||||||
|
|
||||||
<% question.displayed_answer_options.map do |key, options| %> |
<% question.displayed_answer_options.map do |key, options| %> |
||||||
<% if key.starts_with?("divider") %> |
<% if key.starts_with?("divider") %> |
||||||
<%= f.govuk_radio_divider %> |
<%= f.govuk_radio_divider %> |
||||||
|
<% else %> |
||||||
|
<% conditional_question = find_conditional_question(@page, question, key) %> |
||||||
|
<% if conditional_question.nil? %> |
||||||
|
<%= f.govuk_radio_button question.id, |
||||||
|
key, |
||||||
|
label: { text: options["value"] }, |
||||||
|
hint: { text: options["hint"] }, |
||||||
|
**stimulus_html_attributes(question) %> |
||||||
<% else %> |
<% else %> |
||||||
<% conditional_question = find_conditional_question(@page, question, key) %> |
<%= f.govuk_radio_button question.id, |
||||||
<% if conditional_question.nil? %> |
key, |
||||||
<%= f.govuk_radio_button question.id, |
label: { text: options["value"] }, |
||||||
key, |
hint: { text: options["hint"] }, |
||||||
label: { text: options['value'] }, |
**stimulus_html_attributes(question) do %> |
||||||
hint: { text: options['hint'] }, |
<%= render partial: "#{conditional_question.type}_question", locals: { |
||||||
**stimulus_html_attributes(question) |
question: conditional_question, |
||||||
%> |
caption_text:, |
||||||
<% else %> |
page_header:, |
||||||
<%= f.govuk_radio_button question.id, |
f:, |
||||||
key, |
conditional: true, |
||||||
label: { text: options['value'] }, |
} %> |
||||||
hint: { text: options['hint'] }, |
|
||||||
**stimulus_html_attributes(question) do %> |
|
||||||
<%= render partial: "#{conditional_question.type}_question", locals: { |
|
||||||
question: conditional_question, |
|
||||||
caption_text: caption_text, |
|
||||||
page_header: page_header, |
|
||||||
f: f, |
|
||||||
conditional: true |
|
||||||
} %> |
|
||||||
<% end %> |
|
||||||
<% end %> |
<% end %> |
||||||
<% end %> |
<% end %> |
||||||
<% end %> |
<% end %> |
||||||
|
<% end %> |
||||||
<% end %> |
<% end %> |
||||||
|
@ -1,14 +1,13 @@ |
|||||||
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
||||||
|
|
||||||
<% selected = @case_log.public_send(question.id) || "" %> |
<% selected = @case_log.public_send(question.id) || "" %> |
||||||
<%= answers = question.displayed_answer_options.map { |key, value| OpenStruct.new(id: key, name: value) } |
<%= answers = question.displayed_answer_options.map { |key, value| OpenStruct.new(id: key, name: value) } %> |
||||||
f.govuk_collection_select question.id.to_sym, |
<%= f.govuk_collection_select question.id.to_sym, |
||||||
answers, |
answers, |
||||||
:id, |
:id, |
||||||
:name, |
:name, |
||||||
caption: caption(caption_text, page_header, conditional), |
caption: caption(caption_text, page_header, conditional), |
||||||
label: legend(question, page_header, conditional), |
label: legend(question, page_header, conditional), |
||||||
hint: { text: question.hint_text&.html_safe }, |
hint: { text: question.hint_text&.html_safe }, |
||||||
options: { disabled: [""], selected: selected }, |
options: { disabled: [""], selected: }, |
||||||
"data-controller": "accessible-autocomplete" |
"data-controller": "accessible-autocomplete" %> |
||||||
%> |
|
||||||
|
@ -1,9 +1,8 @@ |
|||||||
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
||||||
|
|
||||||
<%= f.govuk_text_field question.id.to_sym, |
<%= f.govuk_text_field question.id.to_sym, |
||||||
caption: caption(caption_text, page_header, conditional), |
caption: caption(caption_text, page_header, conditional), |
||||||
label: legend(question, page_header, conditional), |
label: legend(question, page_header, conditional), |
||||||
hint: { text: question.hint_text&.html_safe }, |
hint: { text: question.hint_text&.html_safe }, |
||||||
width: question.width ? question.width : nil, |
width: question.width || nil, |
||||||
**stimulus_html_attributes(question) |
**stimulus_html_attributes(question) %> |
||||||
%> |
|
||||||
|
@ -1,9 +1,8 @@ |
|||||||
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
||||||
|
|
||||||
<%= f.govuk_text_area question.id.to_sym, |
<%= f.govuk_text_area question.id.to_sym, |
||||||
caption: caption(caption_text, page_header, conditional), |
caption: caption(caption_text, page_header, conditional), |
||||||
label: legend(question, page_header, conditional), |
label: legend(question, page_header, conditional), |
||||||
hint: { text: question.hint_text&.html_safe }, |
hint: { text: question.hint_text&.html_safe }, |
||||||
width: question.width ? question.width : nil, |
width: question.width || nil, |
||||||
**stimulus_html_attributes(question) |
**stimulus_html_attributes(question) %> |
||||||
%> |
|
||||||
|
@ -1,13 +1,16 @@ |
|||||||
<div class="app-card"> |
<div class="app-card"> |
||||||
<h2 class="govuk-heading-s">Collection resources</h2> |
<h2 class="govuk-heading-s">Collection resources</h2> |
||||||
|
|
||||||
<%= render DocumentListComponent.new(items: [{ |
<%= render DocumentListComponent.new(items: [ |
||||||
name: "Lettings log for tenants (2022/23)", |
{ |
||||||
href: "https://core.communities.gov.uk/public/download/guides-and-manuals/2022-23%20Lettings%20paper%20form.pdf?download-format=pdf", |
name: "Lettings log for tenants (2022/23)", |
||||||
metadata: "PDF, 654 KB, 4 pages" |
href: "https://core.communities.gov.uk/public/download/guides-and-manuals/2022-23%20Lettings%20paper%20form.pdf?download-format=pdf", |
||||||
}, { |
metadata: "PDF, 654 KB, 4 pages", |
||||||
name: "Lettings log for tenants (2021/22)", |
}, |
||||||
href: "https://core.communities.gov.uk/public/download/guides-and-manuals/2021_22%20Lettings%20Log.pdf?download-format=pdf", |
{ |
||||||
metadata: "PDF, 302 KB, 3 pages" |
name: "Lettings log for tenants (2021/22)", |
||||||
}]) %> |
href: "https://core.communities.gov.uk/public/download/guides-and-manuals/2021_22%20Lettings%20Log.pdf?download-format=pdf", |
||||||
|
metadata: "PDF, 302 KB, 3 pages", |
||||||
|
}, |
||||||
|
]) %> |
||||||
</div> |
</div> |
||||||
|
Loading…
Reference in new issue