metadata_presenter 0.13.1 → 0.13.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/metadata_presenter/engine_controller.rb +3 -1
- data/app/presenters/metadata_presenter/page_answers_presenter.rb +1 -1
- data/app/validators/metadata_presenter/base_validator.rb +1 -6
- data/app/views/metadata_presenter/component/_checkboxes.html.erb +2 -1
- data/app/views/metadata_presenter/header/show.html.erb +1 -1
- data/app/views/metadata_presenter/page/start.html.erb +22 -12
- data/default_metadata/component/checkboxes.json +16 -1
- data/lib/metadata_presenter/version.rb +1 -1
- data/schemas/definition/checkbox.json +0 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 99966bf36bf6ab26561715bdaf04ebd5418fd384ee72c29e63a88a3d9ec66a3c
|
4
|
+
data.tar.gz: 17bb64ca45b15dc5744c668fcb8d24d8795876b1d97a6e111aae530a64a55cc1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 104d633d1375cdae3936efeed3c02cec7b7d82f293ad4e12d0e8ebb0ea94ffa3b3aa9776542839c590700bf88a23150433a6da9c0ff5b6c27e4206caa5de3e3a
|
7
|
+
data.tar.gz: c7c192e99dad1b1564790de8bc3a813880c3da0f1dd0eb87372109248f5f82b8de897f215d20f36b63b3774cc9b6e9fabbd40d2eaba0036bd8b3397d13c4c67f
|
@@ -8,7 +8,9 @@ module MetadataPresenter
|
|
8
8
|
def back_link
|
9
9
|
return if @page.blank?
|
10
10
|
|
11
|
-
|
11
|
+
previous_page = service.previous_page(current_page: @page)&.url
|
12
|
+
|
13
|
+
@back_link ||= File.join(request.script_name, previous_page) if previous_page
|
12
14
|
end
|
13
15
|
helper_method :back_link
|
14
16
|
|
@@ -63,12 +63,7 @@ module MetadataPresenter
|
|
63
63
|
# @return [String] user answer for the specific component
|
64
64
|
#
|
65
65
|
def user_answer
|
66
|
-
|
67
|
-
if component.type == 'checkboxes'
|
68
|
-
Array(value).reject(&:blank?)
|
69
|
-
else
|
70
|
-
value
|
71
|
-
end
|
66
|
+
page_answers.send(component.name)
|
72
67
|
end
|
73
68
|
|
74
69
|
# The default error message will be look using the schema key.
|
@@ -26,7 +26,7 @@
|
|
26
26
|
</div>
|
27
27
|
<% if service.service_name.present? %>
|
28
28
|
<div class="govuk-header__content">
|
29
|
-
<a href="
|
29
|
+
<a href="<%= root_path %>" class="govuk-header__link govuk-header__link--service-name">
|
30
30
|
<%= service.service_name %>
|
31
31
|
</a>
|
32
32
|
<% end %>
|
@@ -1,33 +1,41 @@
|
|
1
|
-
<div class="fb-main-grid-wrapper" data-
|
1
|
+
<div class="fb-main-grid-wrapper" data-fb-pagetype="<%= @page.type %>">
|
2
2
|
<div class="govuk-grid-row">
|
3
3
|
<div class="govuk-grid-column-two-thirds">
|
4
4
|
<% if @page.section_heading -%>
|
5
|
-
<p class="govuk-caption-l fb-section_heading"
|
5
|
+
<p class="fb-editable govuk-caption-l fb-section_heading"
|
6
|
+
data-fb-content-type="element"
|
7
|
+
data-fb-content-id="page[section_heading]">
|
6
8
|
<%= @page.section_heading.html_safe %>
|
7
9
|
</p>
|
8
10
|
<%- end %>
|
9
11
|
|
10
12
|
<% if @page.heading %>
|
11
|
-
<h1 class="<%= @page.heading_class %>"
|
13
|
+
<h1 class="fb-editable <%= @page.heading_class %>"
|
14
|
+
data-fb-content-id="page[heading]"
|
15
|
+
data-fb-content-type="element">
|
12
16
|
<%= @page.heading.html_safe %>
|
13
17
|
</h1>
|
14
18
|
<% end %>
|
15
19
|
|
16
20
|
<% if @page.lede %>
|
17
|
-
<
|
21
|
+
<div class="fb-editable"
|
22
|
+
data-fb-content-id="page[lede]"
|
23
|
+
data-fb-content-type="content">
|
18
24
|
<%= @page.lede.html_safe %>
|
19
|
-
</
|
25
|
+
</div>
|
20
26
|
<%- end %>
|
21
27
|
|
22
28
|
<% if @page.body %>
|
23
|
-
<
|
24
|
-
|
25
|
-
|
29
|
+
<div class="fb-editable"
|
30
|
+
data-fb-content-id="page[body]"
|
31
|
+
data-fb-content-type="content">
|
32
|
+
<%= to_markdown(@page.body) %>
|
33
|
+
</div>
|
26
34
|
<%- end %>
|
27
35
|
|
28
36
|
<%= form_tag(root_path, method: :post) do %>
|
29
37
|
<button <%= 'disabled' if editable? %> class='govuk-button govuk-button--start govuk-!-margin-top-2'>
|
30
|
-
|
38
|
+
Start now
|
31
39
|
<svg class="govuk-button__start-icon" xmlns="http://www.w3.org/2000/svg" width="17.5" height="19" viewBox="0 0 33 40" aria-hidden="true" focusable="false">
|
32
40
|
<path fill="currentColor" d="M0 0h13l20 20-20 20H0l20-20z" />
|
33
41
|
</svg>
|
@@ -35,9 +43,11 @@
|
|
35
43
|
<% end %>
|
36
44
|
|
37
45
|
<% if @page.before_you_start %>
|
38
|
-
<
|
39
|
-
|
40
|
-
|
46
|
+
<div class="fb-editable"
|
47
|
+
data-fb-content-id="page[before_you_start]"
|
48
|
+
data-fb-content-type="content">
|
49
|
+
<%= to_markdown(@page.before_you_start) %>
|
50
|
+
</div>
|
41
51
|
<%- end %>
|
42
52
|
</div>
|
43
53
|
</div>
|
@@ -3,7 +3,22 @@
|
|
3
3
|
"_type": "checkboxes",
|
4
4
|
"errors": {},
|
5
5
|
"hint": "[Hint text (optional)]",
|
6
|
-
"items": [
|
6
|
+
"items": [
|
7
|
+
{
|
8
|
+
"_id": "component_checkbox_1",
|
9
|
+
"_type": "checkbox",
|
10
|
+
"label": "Option",
|
11
|
+
"hint": "[Hint text (optional)]",
|
12
|
+
"value": "value-1"
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"_id": "component_checkbox_2",
|
16
|
+
"_type": "checkbox",
|
17
|
+
"label": "Option",
|
18
|
+
"hint": "[Hint text (optional)]",
|
19
|
+
"value": "value-2"
|
20
|
+
}
|
21
|
+
],
|
7
22
|
"name": "component-name",
|
8
23
|
"legend": "Question"
|
9
24
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metadata_presenter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.13.
|
4
|
+
version: 0.13.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MoJ Online
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-02-
|
11
|
+
date: 2021-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|