Skip to content

Commit 2763d1b

Browse files
authored
Merge pull request #10122 from alphagov/add-index-section-client-side
Add JavaScript to populate `ga4-index-section` client-side
2 parents 99664bc + 6dbf128 commit 2763d1b

File tree

35 files changed

+65
-44
lines changed

35 files changed

+65
-44
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
'use strict'
2+
window.GOVUK = window.GOVUK || {}
3+
window.GOVUK.analyticsGa4 = window.GOVUK.analyticsGa4 || {}
4+
window.GOVUK.analyticsGa4.analyticsModules =
5+
window.GOVUK.analyticsGa4.analyticsModules || {}
6+
;(function (Modules) {
7+
Modules.Ga4IndexSectionSetup = {
8+
init: function () {
9+
const moduleElements = document.querySelectorAll(
10+
"[data-module~='ga4-index-section-setup']"
11+
)
12+
13+
moduleElements.forEach(function (moduleElement) {
14+
const indexedElements = moduleElement.querySelectorAll(
15+
'select, input:not([data-module~="select-with-search"] input)'
16+
)
17+
indexedElements.forEach((element, index) => {
18+
element.dataset.ga4IndexSection = index
19+
})
20+
})
21+
}
22+
}
23+
})(window.GOVUK.analyticsGa4.analyticsModules)

app/assets/javascripts/application.js

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
//= require components/miller-columns
1717
//= require components/select-with-search
1818

19+
//= require admin/analytics-modules/ga4-index-section-setup.js
1920
//= require admin/analytics-modules/ga4-button-setup.js
2021
//= require admin/analytics-modules/ga4-link-setup.js
2122
//= require admin/analytics-modules/ga4-visual-editor-event-handlers.js

app/views/admin/corporate_information_pages/_standard_fields.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
include_blank: true,
1313
ga_data: {
1414
document_type: "#{action_name}-#{controller_name}",
15-
index_section: 1,
1615
section: "Type",
1716
},
1817
options: corporate_information_page_types(@organisation).map do |type, value|

app/views/admin/detailed_guides/_form.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
options: taggable_detailed_guides_container(edition.related_detailed_guide_ids),
2626
ga_data: {
2727
document_type: "#{action_name}-#{controller_name}",
28-
index_section: 3,
2928
section: "Related guides",
3029
},
3130
select: {

app/views/admin/editionable_social_media_accounts/_form.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
error_items: errors_for(social_media_account.errors, :social_media_service_id),
1111
ga_data: {
1212
document_type: "#{action_name}-#{controller_name}",
13-
index_section: 1,
1413
section: "Service (required)",
1514
},
1615
options: SocialMediaService.all.map do |service|

app/views/admin/editions/_appointment_fields.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
options: taggable_ministerial_role_appointments_container(edition.role_appointment_ids),
99
ga_data: {
1010
document_type: "#{action_name}-#{controller_name}",
11-
index_section: 14,
1211
section: "Ministers",
1312
},
1413
select: {

app/views/admin/editions/_filter_options.html.erb

-5
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
heading_size: "s",
3232
ga_data: {
3333
document_type: "#{action_name}-#{controller_name}",
34-
index_section: 2,
3534
section: "Author",
3635
},
3736
options: admin_author_filter_options(current_user).map do |name, id|
@@ -52,7 +51,6 @@
5251
heading_size: "s",
5352
ga_data: {
5453
document_type: "#{action_name}-#{controller_name}",
55-
index_section: 3,
5654
section: "Organisation",
5755
},
5856
grouped_options: admin_organisation_filter_options(@filter.options[:organisation]),
@@ -67,7 +65,6 @@
6765
heading_size: "s",
6866
ga_data: {
6967
document_type: "#{action_name}-#{controller_name}",
70-
index_section: 4,
7168
section: "World location",
7269
},
7370
options: admin_world_location_filter_options(current_user).map do |name, id|
@@ -88,7 +85,6 @@
8885
heading_size: "s",
8986
ga_data: {
9087
document_type: "#{action_name}-#{controller_name}",
91-
index_section: 5,
9288
section: "Document type",
9389
},
9490
grouped_options: filter_edition_type_opt_groups(current_user, @filter.options[:type]),
@@ -103,7 +99,6 @@
10399
heading_size: "s",
104100
ga_data: {
105101
document_type: "#{action_name}-#{controller_name}",
106-
index_section: 6,
107102
section: "State",
108103
},
109104
options: admin_state_filter_options.map do |text, value|

app/views/admin/editions/_locale_fields.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
include_blank: true,
2727
ga_data: {
2828
document_type: "#{action_name}-#{controller_name}",
29-
index_section: 2,
3029
section: "Document language",
3130
},
3231
errors: errors_for(edition.errors, :primary_locale),

app/views/admin/editions/_operational_field_fields.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
include_blank: true,
88
ga_data: {
99
document_type: "#{action_name}-#{controller_name}",
10-
index_section: 1,
1110
section: "Field of operation (required)",
1211
},
1312
options: OperationalField.all.map do |operation|

app/views/admin/editions/_organisation_fields.html.erb

-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
include_blank: true,
1919
ga_data: {
2020
document_type: "#{action_name}-#{controller_name}",
21-
index_section: "#{index + 17}",
2221
section: "Lead organisation #{index + 1}",
2322
},
2423
options: taggable_organisations_container([lead_organisation_id]),
@@ -34,7 +33,6 @@
3433
include_blank: true,
3534
ga_data: {
3635
document_type: "#{action_name}-#{controller_name}",
37-
index_section: 21,
3836
section: "Supporting organisations",
3937
},
4038
label: "Supporting organisations",

app/views/admin/editions/_role_fields.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
heading_size: "m",
1111
ga_data: {
1212
document_type: "#{action_name}-#{controller_name}",
13-
index_section: index,
1413
section: "Roles" + "#{' (required)' if required}",
1514
},
1615
options: taggable_roles_container(edition.role_ids),

app/views/admin/editions/_statistical_data_set_fields.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
options: taggable_statistical_data_sets_container(edition.statistical_data_set_document_ids),
99
ga_data: {
1010
document_type: "#{action_name}-#{controller_name}",
11-
index_section: 1,
1211
section: "Statistical data sets",
1312
},
1413
select: {

app/views/admin/editions/_topical_event_fields.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
heading_size: "m",
88
ga_data: {
99
document_type: "#{action_name}-#{controller_name}",
10-
index_section: 15,
1110
section: "Topical events",
1211
},
1312
options: TopicalEvent.order(:name).map do |topical_event|

app/views/admin/editions/_world_location_fields.html.erb

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<% required = false unless defined?(required) %>
2-
<% index = "1" unless defined?(index) %>
32

43
<% cache_if edition.world_location_ids.empty?, "#{taggable_world_locations_cache_digest}-design-system" do %>
54
<%= render "components/select_with_search", {
@@ -9,7 +8,6 @@
98
label: "World locations" + "#{' (required)' if required}",
109
ga_data: {
1110
document_type: "#{action_name}-#{controller_name}",
12-
index_section: index,
1311
section: "World locations" + "#{' (required)' if required}",
1412
},
1513
heading_size: "m",

app/views/admin/editions/_worldwide_organisation_fields.html.erb

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<% required = false unless defined?(required) %>
2-
<% index = "1" unless defined?(index) %>
32

43
<% cache_if edition.worldwide_organisation_document_ids.empty?, "#{taggable_worldwide_organisations_cache_digest}-design-system" do %>
54
<%= render "components/select_with_search", {
@@ -9,7 +8,6 @@
98
include_blank: true,
109
ga_data: {
1110
document_type: "#{action_name}-#{controller_name}",
12-
index_section: index,
1311
section: "Worldwide organisations" + "#{' (required)' if required}",
1412
},
1513
label: "Worldwide organisations" + "#{' (required)' if required}",

app/views/admin/historical_accounts/_form.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
heading_size: "l",
2525
ga_data: {
2626
document_type: "#{action_name}-#{controller_name}",
27-
index_section: 2,
2827
section: "Political parties (required)",
2928
},
3029
options: PoliticalParty.all.map do |party|

app/views/admin/needs/edit.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
heading_size: "l",
1414
ga_data: {
1515
document_type: "#{action_name}-#{controller_name}",
16-
index_section: 1,
1716
section: "Select associated user needs",
1817
},
1918
options: taggable_needs_container(@document.need_ids),

app/views/admin/news_articles/_news_article_type_fields.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
include_blank: true,
1010
ga_data: {
1111
document_type: "#{action_name}-#{controller_name}",
12-
index_section: 1,
1312
section: "News article type (required)",
1413
},
1514
options: NewsArticleType.all.map do |type|

app/views/admin/organisations/_closed_fields.html.erb

-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
include_blank: true,
88
ga_data: {
99
document_type: "#{action_name}-#{controller_name}",
10-
index_section: 1,
1110
section: "Reason for closure (required)",
1211
},
1312
options: [
@@ -57,7 +56,6 @@
5756
heading_size: "m",
5857
ga_data: {
5958
document_type: "#{action_name}-#{controller_name}",
60-
index_section: 2,
6159
section: "Superseding organisations",
6260
},
6361
options: (Organisation.with_translations(:en) - [organisation]).map do |org|

app/views/admin/organisations/_form.html.erb

-5
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
include_blank: true,
4747
ga_data: {
4848
document_type: "#{action_name}-#{controller_name}",
49-
index_section: 4,
5049
section: "Logo crest (required)",
5150
},
5251
options: OrganisationLogoType.all.map do |logo_type|
@@ -86,7 +85,6 @@
8685
include_blank: true,
8786
ga_data: {
8887
document_type: "#{action_name}-#{controller_name}",
89-
index_section: 6,
9088
section: "Brand colour",
9189
},
9290
options: OrganisationBrandColour.all.map do |brand_colour|
@@ -136,7 +134,6 @@
136134
include_blank: true,
137135
ga_data: {
138136
document_type: "#{action_name}-#{controller_name}",
139-
index_section: 7,
140137
section: "Organisation type (required)",
141138
},
142139
options: OrganisationType.in_listing_order.map do |type|
@@ -259,7 +256,6 @@
259256
label: "Sponsoring organisations",
260257
ga_data: {
261258
document_type: "#{action_name}-#{controller_name}",
262-
index_section: 15,
263259
section: "Sponsoring organisations",
264260
},
265261
heading_size: "m",
@@ -293,7 +289,6 @@
293289
include_blank: true,
294290
ga_data: {
295291
document_type: "#{action_name}-#{controller_name}",
296-
index_section: 1,
297292
section: "Topical Event #{topical_event_organisation.ordering + 1}",
298293
},
299294
options: TopicalEvent.all.map do |topical_event|

app/views/admin/publications/_publication_type_fields.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
include_blank: true,
1010
ga_data: {
1111
document_type: "#{action_name}-#{controller_name}",
12-
index_section: 1,
1312
section: "Publication type (required)",
1413
},
1514
grouped_options: [

app/views/admin/role_appointments/_form.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
name: "role_appointment[person_id]",
66
ga_data: {
77
document_type: "#{action_name}-#{controller_name}",
8-
index_section: 1,
98
section: "Person (required)",
109
},
1110
options:

app/views/admin/roles/_form.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
name: "role[organisation_ids][]",
3737
ga_data: {
3838
document_type: "#{action_name}-#{controller_name}",
39-
index_section: 3,
4039
section: "Organisations",
4140
},
4241
options: Organisation.with_translations(:en).map do |org|

app/views/admin/social_media_accounts/_form.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
include_blank: true,
1111
ga_data: {
1212
document_type: "#{action_name}-#{controller_name}",
13-
index_section: 1,
1413
section: "Service (required)",
1514
},
1615
error_items: errors_for(social_media_account.errors, :social_media_service_id),

app/views/admin/speeches/_speaker_select_field.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
label: "",
66
ga_data: {
77
document_type: "#{action_name}-#{controller_name}",
8-
index_section: 1,
98
section: "Edition role appointment ID",
109
},
1110
error_items: errors_for(edition.errors, :role_appointment_id),

app/views/admin/speeches/_speech_type_fields.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
include_blank: true,
1010
ga_data: {
1111
document_type: "#{action_name}-#{controller_name}",
12-
index_section: 1,
1312
section: "Speech type",
1413
},
1514
options: SpeechType.primary.map do |type|

app/views/admin/statistics_announcements/_filter_options.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
heading_size: "s",
2323
ga_data: {
2424
document_type: "#{action_name}-#{controller_name}",
25-
index_section: 1,
2625
section: "Organisation",
2726
},
2827
grouped_options: admin_organisation_filter_options(@filter.options[:organisation_id]),

app/views/admin/statistics_announcements/_form.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
name: "statistics_announcement[organisation_ids][]",
5959
ga_data: {
6060
document_type: "#{action_name}-#{controller_name}",
61-
index_section: 4,
6261
section: "Organisations (required)",
6362
},
6463
options: Organisation.with_translations.order("organisation_translations.name").map do |org|

app/views/admin/users/edit.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
heading_size: "l",
1414
ga_data: {
1515
document_type: "#{action_name}-#{controller_name}",
16-
index_section: 1,
1716
section: "Locations",
1817
},
1918
options: WorldLocation.all.map do |l|

app/views/admin/worldwide_organisation_pages/_form.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
include_blank: true,
1414
ga_data: {
1515
document_type: "#{action_name}-#{controller_name}",
16-
index_section: 1,
1716
section: "Type",
1817
},
1918
options: corporate_information_page_types(@worldwide_organisation).map do |type, value|

app/views/components/_select_with_search.html.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
<% if multiple %>
3232
<%= hidden_field_tag name, nil %>
3333
<% end %>
34-
<%= select_tag name, select_helper.options_html, id: id, class: select_helper.select_classes, multiple:, aria: select_helper.aria, "data-ga4-document-type": ga_data[:document_type], "data-ga4-index-section": ga_data[:index_section], "data-ga4-section": ga_data[:section] %>
34+
<%= select_tag name, select_helper.options_html, id: id, class: select_helper.select_classes, multiple:, aria: select_helper.aria, "data-ga4-document-type": ga_data[:document_type], "data-ga4-section": ga_data[:section] %>
3535

3636
<% end %>

app/views/layouts/design_system.html.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<%= render partial: "shared/header" %>
2424

25-
<div class="govuk-width-container" data-module="ga4-event-tracker ga4-paste-tracker ga4-link-setup ga4-link-tracker ga4-button-setup ga4-select-with-search-setup">
25+
<div class="govuk-width-container" data-module="ga4-event-tracker ga4-paste-tracker ga4-link-setup ga4-link-tracker ga4-button-setup ga4-select-with-search-setup ga4-index-section-setup">
2626
<%= render "shared/phase_banner", {
2727
show_feedback_banner: t("admin.feedback.show_banner"),
2828
} %>

lib/engines/content_block_manager/app/components/content_block_manager/content_block/document/index/filter_options_component.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
options: options_for_lead_organisation([@filters[:lead_organisation]]),
5454
ga_data: {
5555
document_type: "#{action_name}-#{controller_name}",
56-
index_section: 3,
5756
section: "Lead organisation",
5857
},
5958
}

lib/engines/content_block_manager/app/views/content_block_manager/content_block/shared/_form.html.erb

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
options: taggable_organisations_container([@form.content_block_edition.edition_organisation&.organisation_id]),
3636
ga_data: {
3737
document_type: "#{action_name}-#{controller_name}",
38-
index_section: 1,
3938
section: "Lead organisation",
4039
},
4140
select: {

0 commit comments

Comments
 (0)