govuk_publishing_components 21.55.3 → 21.57.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/govuk_publishing_components/components/print-link.js +14 -0
- data/app/assets/stylesheets/govuk_publishing_components/_all_components.scss +1 -0
- data/app/assets/stylesheets/govuk_publishing_components/component_support.scss +1 -0
- data/app/assets/stylesheets/govuk_publishing_components/components/_action-link.scss +11 -5
- data/app/assets/stylesheets/govuk_publishing_components/components/_cookie-banner.scss +4 -0
- data/app/assets/stylesheets/govuk_publishing_components/components/_feedback.scss +1 -4
- data/app/assets/stylesheets/govuk_publishing_components/components/_input.scss +9 -5
- data/app/assets/stylesheets/govuk_publishing_components/components/_print-link.scss +52 -0
- data/app/assets/stylesheets/govuk_publishing_components/components/_summary-list.scss +18 -5
- data/app/assets/stylesheets/govuk_publishing_components/components/helpers/_link.scss +17 -0
- data/app/assets/stylesheets/govuk_publishing_components/components/print/_govspeak.scss +5 -1
- data/app/controllers/govuk_publishing_components/component_guide_controller.rb +26 -16
- data/app/views/govuk_publishing_components/components/_action_link.html.erb +2 -0
- data/app/views/govuk_publishing_components/components/_contextual_breadcrumbs.html.erb +11 -7
- data/app/views/govuk_publishing_components/components/_cookie_banner.html.erb +3 -1
- data/app/views/govuk_publishing_components/components/_input.html.erb +3 -4
- data/app/views/govuk_publishing_components/components/_print_link.html.erb +27 -0
- data/app/views/govuk_publishing_components/components/_summary_list.html.erb +34 -14
- data/app/views/govuk_publishing_components/components/docs/action_link.yml +5 -0
- data/app/views/govuk_publishing_components/components/docs/input.yml +9 -1
- data/app/views/govuk_publishing_components/components/docs/print_link.yml +24 -0
- data/app/views/govuk_publishing_components/components/docs/summary_list.yml +27 -0
- data/config/locales/en.yml +5 -0
- data/lib/govuk_publishing_components.rb +2 -1
- data/lib/govuk_publishing_components/presenters/breadcrumb_selector.rb +50 -42
- data/lib/govuk_publishing_components/presenters/content_breadcrumbs_based_on_ancestors.rb +41 -0
- data/lib/govuk_publishing_components/presenters/content_breadcrumbs_based_on_priority.rb +1 -0
- data/lib/govuk_publishing_components/presenters/content_breadcrumbs_based_on_taxons.rb +4 -0
- data/lib/govuk_publishing_components/presenters/content_breadcrumbs_based_on_topic.rb +38 -0
- data/lib/govuk_publishing_components/presenters/contextual_navigation.rb +15 -4
- data/lib/govuk_publishing_components/presenters/page_with_step_by_step_navigation.rb +3 -1
- data/lib/govuk_publishing_components/presenters/related_navigation_helper.rb +18 -17
- data/lib/govuk_publishing_components/version.rb +1 -1
- data/node_modules/axe-core/CHANGELOG.md +11 -0
- data/node_modules/axe-core/axe.js +36 -9
- data/node_modules/axe-core/axe.min.js +2 -2
- data/node_modules/axe-core/bower.json +1 -1
- data/node_modules/axe-core/lib/checks/color/color-contrast.js +2 -2
- data/node_modules/axe-core/lib/checks/lists/listitem.js +1 -1
- data/node_modules/axe-core/lib/checks/mobile/meta-viewport-scale.js +3 -0
- data/node_modules/axe-core/lib/commons/dom/is-visible.js +37 -19
- data/node_modules/axe-core/lib/core/public/configure.js +26 -0
- data/node_modules/axe-core/lib/rules/aria-input-field-name.json +1 -1
- data/node_modules/axe-core/package.json +12 -12
- data/node_modules/axe-core/sri-history.json +4 -0
- metadata +9 -3
- data/lib/govuk_publishing_components/presenters/content_breadcrumbs_based_on_parent.rb +0 -39
@@ -1,23 +1,42 @@
|
|
1
1
|
<%
|
2
|
+
local_assigns[:heading_level] ||= 3
|
3
|
+
heading_size = 'm' unless ['s', 'm', 'l', 'xl'].include?(heading_size)
|
4
|
+
shared_helper = GovukPublishingComponents::Presenters::SharedHelper.new(local_assigns)
|
5
|
+
|
2
6
|
id ||= nil
|
3
7
|
title ||= nil
|
4
8
|
borderless ||= false
|
5
9
|
edit ||= {}
|
10
|
+
delete ||= {}
|
6
11
|
items ||= []
|
7
12
|
block ||= yield
|
8
13
|
%>
|
9
14
|
<% if title || items.any? %>
|
10
15
|
<%= tag.div class: "gem-c-summary-list #{"govuk-summary-list--no-border" if borderless}", id: id do %>
|
11
16
|
<% if title %>
|
12
|
-
<%=
|
13
|
-
<% if edit.any? %>
|
14
|
-
<%= tag.ul class: "govuk-summary-list__actions-list" do %>
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
17
|
+
<%= content_tag(shared_helper.get_heading_level, title, class: "govuk-heading-#{heading_size} gem-c-summary-list__group-title") %>
|
18
|
+
<% if edit.any? || delete.any? %>
|
19
|
+
<%= tag.ul class: "govuk-summary-list__actions-list gem-c-summary-list__group-actions-list" do %>
|
20
|
+
<%- if edit.any? %>
|
21
|
+
<% edit_section_link_text = edit[:link_text] || t("components.summary_list.edit") %>
|
22
|
+
<%= tag.li class: "govuk-summary-list__actions-list-item" do -%>
|
23
|
+
<%= link_to edit.fetch(:href),
|
24
|
+
class: "govuk-link",
|
25
|
+
title: "#{edit_section_link_text} #{title}",
|
26
|
+
data: edit.fetch(:data_attributes, {}) do %>
|
27
|
+
<%= edit_section_link_text %><%= tag.span " #{title}", class: "govuk-visually-hidden" -%>
|
28
|
+
<% end %>
|
29
|
+
<% end %>
|
30
|
+
<% end %>
|
31
|
+
<% if delete.any? %>
|
32
|
+
<% delete_section_link_text = delete[:link_text] || t("components.summary_list.delete") %>
|
33
|
+
<%= tag.li class: "govuk-summary-list__actions-list-item" do -%>
|
34
|
+
<%= link_to delete.fetch(:href),
|
35
|
+
class: "govuk-link gem-link--destructive",
|
36
|
+
title: "#{delete_section_link_text} #{title}",
|
37
|
+
data: delete.fetch(:data_attributes, {}) do %>
|
38
|
+
<%= delete_section_link_text %><%= tag.span " #{title}", class: "govuk-visually-hidden" -%>
|
39
|
+
<% end %>
|
21
40
|
<% end %>
|
22
41
|
<% end %>
|
23
42
|
<% end %>
|
@@ -37,22 +56,23 @@
|
|
37
56
|
<%= tag.ul class: "govuk-summary-list__actions-list" do %>
|
38
57
|
<% if item.fetch(:edit, {}).any? %>
|
39
58
|
<%= tag.li class: "govuk-summary-list__actions-list-item" do %>
|
40
|
-
<% edit_link_text = item[:edit][:link_text] || "
|
59
|
+
<% edit_link_text = item[:edit][:link_text] || t("components.summary_list.edit") %>
|
41
60
|
<%= link_to item[:edit].fetch(:href),
|
42
61
|
class: "govuk-link",
|
43
62
|
title: "#{edit_link_text} #{item[:field]}",
|
44
63
|
data: item[:edit].fetch(:data_attributes, {}) do %>
|
45
|
-
<%= edit_link_text %><%= tag.span " #{item[:field]}", class: "govuk-visually-hidden"
|
64
|
+
<%= edit_link_text %><%= tag.span " #{item[:field]}", class: "govuk-visually-hidden" -%>
|
65
|
+
<% end %>
|
46
66
|
<% end %>
|
47
67
|
<% end %>
|
48
68
|
<% if item.fetch(:delete, {}).any? %>
|
49
69
|
<%= tag.li class: "govuk-summary-list__actions-list-item" do %>
|
50
|
-
<% delete_link_text = item[:delete][:link_text] || "
|
70
|
+
<% delete_link_text = item[:delete][:link_text] || t("components.summary_list.delete") %>
|
51
71
|
<%= link_to item[:delete].fetch(:href),
|
52
|
-
class: "govuk-link",
|
72
|
+
class: "govuk-link gem-link--destructive",
|
53
73
|
title: "#{delete_link_text} #{item[:field]}",
|
54
74
|
data: item[:delete].fetch(:data_attributes, {}) do %>
|
55
|
-
<%= delete_link_text %><%= tag.span " #{item[:field]}", class: "govuk-visually-hidden"
|
75
|
+
<%= delete_link_text %><%= tag.span " #{item[:field]}", class: "govuk-visually-hidden" -%>
|
56
76
|
<% end %>
|
57
77
|
<% end %>
|
58
78
|
<% end %>
|
@@ -75,6 +75,11 @@ examples:
|
|
75
75
|
text: Getting financial help and keeping your business safe
|
76
76
|
href: "/financial-help"
|
77
77
|
simple: true
|
78
|
+
with_small_icon:
|
79
|
+
data:
|
80
|
+
text: Coronavirus (COVID-19)
|
81
|
+
href: "/my-test-page"
|
82
|
+
small_icon: true
|
78
83
|
with_dark_icon:
|
79
84
|
data:
|
80
85
|
text: Coronavirus (COVID-19)
|
@@ -132,6 +132,14 @@ examples:
|
|
132
132
|
text: "What is your name?"
|
133
133
|
name: "name"
|
134
134
|
heading_size: "l"
|
135
|
+
with_prefix:
|
136
|
+
description: To help users understand how the input should look like. Often used for units of measurement.
|
137
|
+
data:
|
138
|
+
label:
|
139
|
+
text: "Cost, in pounds"
|
140
|
+
name: "cost"
|
141
|
+
width: 10
|
142
|
+
prefix: "£"
|
135
143
|
with_suffix:
|
136
144
|
description: To help users understand how the input should look like. Often used for units of measurement.
|
137
145
|
data:
|
@@ -145,7 +153,7 @@ examples:
|
|
145
153
|
data:
|
146
154
|
label:
|
147
155
|
text: "Cost per item, in pounds"
|
148
|
-
name: "
|
156
|
+
name: "cost-per-item"
|
149
157
|
width: 10
|
150
158
|
prefix: "£"
|
151
159
|
suffix: "per item"
|
@@ -0,0 +1,24 @@
|
|
1
|
+
name: Print link
|
2
|
+
description: A link with a print icon to help users print the current page
|
3
|
+
body: |
|
4
|
+
This component renders two different outputs depending on whether a `href` is specified. By default, when no `href` is given, the component renders as a button and triggers a print action via JavaScript. In this case the component is hidden in environments where JavaScript is disabled and can be used as a progressive enhancement. When a `href` is specified the component renders as an anchor tag and navigates to that `href` without JavaScript, suitable for applications which have paths that trigger a print event on load.
|
5
|
+
accessibility_criteria: |
|
6
|
+
- The print icon must be presentational and ignored by screen readers.
|
7
|
+
shared_accessibility_criteria:
|
8
|
+
- link
|
9
|
+
examples:
|
10
|
+
default:
|
11
|
+
description: This component calls `print()` via the browser's DOM API. By default it relies on JavaScript and is not shown in environments where JavaScript is disabled. The \"link\" here is actually a button tag because this is not a navigation event.
|
12
|
+
with_different_text:
|
13
|
+
data:
|
14
|
+
text: "Print this manual"
|
15
|
+
with_different_href:
|
16
|
+
description: You can specify a alternative `href` URL that will override the default behaviour. When a `href` is specified the print link will render as an anchor tag and be displayed even when JavaScript is disabled.
|
17
|
+
data:
|
18
|
+
href: "/print"
|
19
|
+
with_data_attributes:
|
20
|
+
data:
|
21
|
+
data_attributes:
|
22
|
+
track-category: "printButton"
|
23
|
+
track-action: "clicked"
|
24
|
+
track-label: "Print this page"
|
@@ -1,5 +1,6 @@
|
|
1
1
|
name: Summary list
|
2
2
|
description: Use the summary list to summarise information, for example, a user’s responses at the end of a form.
|
3
|
+
body: This component extends the [Summary list component in the Design System](https://design-system.service.gov.uk/components/summary-list/) allowing the rendering of multiple groups of lists, and actions at the group level.
|
3
4
|
accessibility_criteria: |
|
4
5
|
Action links in the component must:
|
5
6
|
|
@@ -41,6 +42,32 @@ examples:
|
|
41
42
|
data_attributes:
|
42
43
|
gtm: "edit-title-summary-body"
|
43
44
|
|
45
|
+
with_delete_on_section:
|
46
|
+
data:
|
47
|
+
<<: *default-example-data
|
48
|
+
delete:
|
49
|
+
href: "delete-title-summary-body"
|
50
|
+
data_attributes:
|
51
|
+
gtm: "delete-title-summary-body"
|
52
|
+
|
53
|
+
with_edit_and_delete_on_section:
|
54
|
+
data:
|
55
|
+
<<: *default-example-data
|
56
|
+
edit:
|
57
|
+
href: "edit-title-summary-body"
|
58
|
+
data_attributes:
|
59
|
+
gtm: "edit-title-summary-body"
|
60
|
+
delete:
|
61
|
+
href: "delete-title-summary-body"
|
62
|
+
data_attributes:
|
63
|
+
gtm: "delete-title-summary-body"
|
64
|
+
|
65
|
+
with_custom_section_heading:
|
66
|
+
data:
|
67
|
+
<<: *default-example-data
|
68
|
+
heading_level: 2
|
69
|
+
heading_size: l
|
70
|
+
|
44
71
|
with_custom_link_on_section:
|
45
72
|
description: |
|
46
73
|
Take care that the provided `link_text` still makes sense to screen readers when combined with the title.
|
data/config/locales/en.yml
CHANGED
@@ -58,6 +58,8 @@ en:
|
|
58
58
|
policies: "Policies"
|
59
59
|
statistical_data_sets: "Statistical data sets"
|
60
60
|
topical_events: "Topical events"
|
61
|
+
print_link:
|
62
|
+
text: "Print this page"
|
61
63
|
skip_link:
|
62
64
|
text: "Skip to main content"
|
63
65
|
step_by_step_nav:
|
@@ -71,3 +73,6 @@ en:
|
|
71
73
|
email_signup_link_text: "Get email alerts"
|
72
74
|
feed_link_text: "Subscribe to feed"
|
73
75
|
subscriptions: "Subscriptions"
|
76
|
+
summary_list:
|
77
|
+
edit: "Change"
|
78
|
+
delete: "Delete"
|
@@ -12,9 +12,10 @@ require "govuk_publishing_components/presenters/contextual_navigation"
|
|
12
12
|
require "govuk_publishing_components/presenters/related_navigation_helper"
|
13
13
|
require "govuk_publishing_components/presenters/step_by_step_nav_helper"
|
14
14
|
require "govuk_publishing_components/presenters/page_with_step_by_step_navigation"
|
15
|
-
require "govuk_publishing_components/presenters/
|
15
|
+
require "govuk_publishing_components/presenters/content_breadcrumbs_based_on_ancestors"
|
16
16
|
require "govuk_publishing_components/presenters/content_breadcrumbs_based_on_priority"
|
17
17
|
require "govuk_publishing_components/presenters/content_breadcrumbs_based_on_taxons"
|
18
|
+
require "govuk_publishing_components/presenters/content_breadcrumbs_based_on_topic"
|
18
19
|
require "govuk_publishing_components/presenters/checkboxes_helper"
|
19
20
|
require "govuk_publishing_components/presenters/select"
|
20
21
|
require "govuk_publishing_components/presenters/meta_tags"
|
@@ -1,10 +1,6 @@
|
|
1
1
|
module GovukPublishingComponents
|
2
2
|
module Presenters
|
3
3
|
class BreadcrumbSelector
|
4
|
-
def self.call(*args)
|
5
|
-
new(*args).output
|
6
|
-
end
|
7
|
-
|
8
4
|
attr_reader :content_item, :request, :prioritise_taxon_breadcrumbs
|
9
5
|
|
10
6
|
def initialize(content_item, request, prioritise_taxon_breadcrumbs)
|
@@ -13,47 +9,28 @@ module GovukPublishingComponents
|
|
13
9
|
@prioritise_taxon_breadcrumbs = prioritise_taxon_breadcrumbs
|
14
10
|
end
|
15
11
|
|
16
|
-
def
|
17
|
-
|
12
|
+
def breadcrumbs
|
13
|
+
best_match_option[:breadcrumbs]
|
18
14
|
end
|
19
15
|
|
20
|
-
def
|
21
|
-
|
16
|
+
def step_by_step
|
17
|
+
best_match_option[:step_by_step]
|
22
18
|
end
|
23
19
|
|
24
|
-
def
|
25
|
-
|
26
|
-
rescue GdsApi::ContentStore::ItemNotFound
|
27
|
-
# Do nothing
|
28
|
-
end
|
20
|
+
def priority_breadcrumbs
|
21
|
+
return parent_item_navigation.priority_breadcrumbs if content_item_navigation.html_publication_with_parent?
|
29
22
|
|
30
|
-
|
31
|
-
@parent_item_options ||= options(parent_item_navigation)
|
23
|
+
content_item_navigation.priority_breadcrumbs
|
32
24
|
end
|
33
25
|
|
34
|
-
|
35
|
-
@content_item_options ||= options(content_item_navigation)
|
36
|
-
end
|
26
|
+
private
|
37
27
|
|
38
|
-
def
|
39
|
-
breadcrumbs = [parent_item_options[:breadcrumbs]].flatten # to ensure breadcrumbs always an array
|
40
|
-
breadcrumbs.last[:is_page_parent] = false
|
41
|
-
breadcrumbs << {
|
42
|
-
title: parent_item["title"],
|
43
|
-
url: parent_item["base_path"],
|
44
|
-
is_page_parent: true,
|
45
|
-
}
|
46
|
-
end
|
47
|
-
|
48
|
-
def output
|
28
|
+
def best_match_option
|
49
29
|
return content_item_options unless content_item_navigation.html_publication_with_parent?
|
50
|
-
return parent_item_options if parent_item_navigation.priority_breadcrumbs
|
51
|
-
|
52
|
-
step_by_step_header = parent_item_options[:step_by_step]
|
53
30
|
|
54
31
|
{
|
55
|
-
step_by_step:
|
56
|
-
breadcrumbs:
|
32
|
+
step_by_step: parent_is_step_by_step?,
|
33
|
+
breadcrumbs: parent_is_step_by_step? ? parent_breadcrumbs.first : parent_breadcrumbs,
|
57
34
|
}
|
58
35
|
end
|
59
36
|
|
@@ -61,18 +38,13 @@ module GovukPublishingComponents
|
|
61
38
|
if navigation.content_tagged_to_a_finder?
|
62
39
|
{
|
63
40
|
step_by_step: false,
|
64
|
-
breadcrumbs: navigation.
|
41
|
+
breadcrumbs: navigation.finder_breadcrumbs,
|
65
42
|
}
|
66
43
|
elsif navigation.content_tagged_to_current_step_by_step?
|
67
44
|
{
|
68
45
|
step_by_step: true,
|
69
46
|
breadcrumbs: navigation.step_nav_helper.header,
|
70
47
|
}
|
71
|
-
elsif navigation.priority_breadcrumbs
|
72
|
-
{
|
73
|
-
step_by_step: true,
|
74
|
-
breadcrumbs: navigation.priority_breadcrumbs,
|
75
|
-
}
|
76
48
|
elsif navigation.content_is_tagged_to_a_live_taxon? && prioritise_taxon_breadcrumbs
|
77
49
|
{
|
78
50
|
step_by_step: false,
|
@@ -83,10 +55,10 @@ module GovukPublishingComponents
|
|
83
55
|
step_by_step: false,
|
84
56
|
breadcrumbs: navigation.breadcrumbs,
|
85
57
|
}
|
86
|
-
elsif navigation.
|
58
|
+
elsif navigation.content_has_a_topic?
|
87
59
|
{
|
88
60
|
step_by_step: false,
|
89
|
-
breadcrumbs: navigation.
|
61
|
+
breadcrumbs: navigation.topic_breadcrumbs,
|
90
62
|
}
|
91
63
|
elsif navigation.use_taxon_breadcrumbs?
|
92
64
|
{
|
@@ -102,6 +74,42 @@ module GovukPublishingComponents
|
|
102
74
|
{}
|
103
75
|
end
|
104
76
|
end
|
77
|
+
|
78
|
+
def content_item_navigation
|
79
|
+
@content_item_navigation ||= ContextualNavigation.new(content_item, request)
|
80
|
+
end
|
81
|
+
|
82
|
+
def parent_item_navigation
|
83
|
+
@parent_item_navigation ||= ContextualNavigation.new(parent_item, request)
|
84
|
+
end
|
85
|
+
|
86
|
+
def parent_item
|
87
|
+
@parent_item ||= Services.content_store.content_item(content_item_navigation.parent_api_path)
|
88
|
+
rescue GdsApi::ContentStore::ItemNotFound
|
89
|
+
# Do nothing
|
90
|
+
end
|
91
|
+
|
92
|
+
def parent_item_options
|
93
|
+
@parent_item_options ||= options(parent_item_navigation)
|
94
|
+
end
|
95
|
+
|
96
|
+
def content_item_options
|
97
|
+
@content_item_options ||= options(content_item_navigation)
|
98
|
+
end
|
99
|
+
|
100
|
+
def parent_breadcrumbs
|
101
|
+
breadcrumbs = [parent_item_options[:breadcrumbs]].flatten # to ensure breadcrumbs always an array
|
102
|
+
breadcrumbs.last[:is_page_parent] = false
|
103
|
+
breadcrumbs << {
|
104
|
+
title: parent_item["title"],
|
105
|
+
url: parent_item["base_path"],
|
106
|
+
is_page_parent: true,
|
107
|
+
}
|
108
|
+
end
|
109
|
+
|
110
|
+
def parent_is_step_by_step?
|
111
|
+
parent_item_options[:step_by_step]
|
112
|
+
end
|
105
113
|
end
|
106
114
|
end
|
107
115
|
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
module GovukPublishingComponents
|
2
|
+
module Presenters
|
3
|
+
# @private
|
4
|
+
class ContentBreadcrumbsBasedOnAncestors
|
5
|
+
def self.call(content_item)
|
6
|
+
new(content_item).breadcrumbs
|
7
|
+
end
|
8
|
+
|
9
|
+
def initialize(content_item)
|
10
|
+
@content_item = ContentItem.new(content_item)
|
11
|
+
end
|
12
|
+
|
13
|
+
def breadcrumbs
|
14
|
+
ordered_ancestors = all_ancestors.map do |ancestor|
|
15
|
+
{ title: ancestor.title, url: ancestor.base_path }
|
16
|
+
end
|
17
|
+
|
18
|
+
ordered_ancestors << { title: "Home", url: "/" }
|
19
|
+
ordered_ancestors.reverse!
|
20
|
+
ordered_ancestors
|
21
|
+
end
|
22
|
+
|
23
|
+
private
|
24
|
+
|
25
|
+
attr_reader :content_item
|
26
|
+
|
27
|
+
def all_ancestors
|
28
|
+
ancestors = []
|
29
|
+
|
30
|
+
parent = content_item.parent
|
31
|
+
while parent
|
32
|
+
ancestors << parent
|
33
|
+
|
34
|
+
parent = parent.parent
|
35
|
+
end
|
36
|
+
|
37
|
+
ancestors
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -6,6 +6,7 @@ module GovukPublishingComponents
|
|
6
6
|
# and the bottom one the lowest priority
|
7
7
|
PRIORITY_TAXONS = {
|
8
8
|
education_coronavirus: "272308f4-05c8-4d0d-abc7-b7c2e3ccd249",
|
9
|
+
worker_coronavirus: "b7f57213-4b16-446d-8ded-81955d782680",
|
9
10
|
business_coronavirus: "65666cdf-b177-4d79-9687-b9c32805e450",
|
10
11
|
}.freeze
|
11
12
|
|
@@ -0,0 +1,38 @@
|
|
1
|
+
module GovukPublishingComponents
|
2
|
+
module Presenters
|
3
|
+
class ContentBreadcrumbsBasedOnTopic
|
4
|
+
def self.call(content_item)
|
5
|
+
new(content_item).breadcrumbs
|
6
|
+
end
|
7
|
+
|
8
|
+
attr_reader :content_item
|
9
|
+
|
10
|
+
def initialize(content_item)
|
11
|
+
@content_item = content_item
|
12
|
+
end
|
13
|
+
|
14
|
+
def breadcrumbs
|
15
|
+
breadcrumbs = [{ title: "Home", url: "/" }]
|
16
|
+
return breadcrumbs unless topics.present?
|
17
|
+
|
18
|
+
breadcrumbs << topic_breadcrumb
|
19
|
+
breadcrumbs
|
20
|
+
end
|
21
|
+
|
22
|
+
def topic_breadcrumb
|
23
|
+
{
|
24
|
+
title: first_topic["title"],
|
25
|
+
url: first_topic["base_path"],
|
26
|
+
}
|
27
|
+
end
|
28
|
+
|
29
|
+
def first_topic
|
30
|
+
topics.first
|
31
|
+
end
|
32
|
+
|
33
|
+
def topics
|
34
|
+
@topics ||= content_item.dig("links", "topics")
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|