The gem also includes some JavaScript which by itself will have no effect on a page. It can be included with the asset_pipeline by adding the line:
//=require govuk_toolkit
The toolkit comes with a module pattern that makes it easy to write re-usable modular components, without having to worry about where and when the module should be instantiated.
Javascript modules can be specified in markup using data-
attributes:
<div data-module="some-module">
<strong>Some other markup inside the module</strong>
</div>
Modules can be found and started by including govuk/modules.js
and running:
$(document).ready(function(){
GOVUK.modules.start()
});
This will attempt to find and start all modules in the page. For the example above it will look for a module at GOVUK.Modules.SomeModule
. Note the value of the data attribute has been converted to PascalCase.
The module will be instantiated and then its start
method called. The HTML element with the data-module
attribute is passed as the first argument to the module. This limits modules to acting only within their containing elements.
module = new GOVUK.Modules[type]()
module.start(element)
Running GOVUK.modules.start()
multiple times will have no additional affect. When a module is started a flag is set on the element using the data attribute module-started
. data-module-started
is a reserved attribute. It can however be called with an element as the first argument, to allow modules to be started in dynamically loaded content:
var $container = $('.dynamic-content')
GOVUK.modules.start($container)
A module must add its constructor to GOVUK.Modules
and it must have a start
method.
The simplest module looks like:
;(function(Modules) {
'use strict'
Modules.SomeModule = function() {
this.start = function($element) {
// module code
}
}
})(window.GOVUK.Modules)
Whilst this isn’t prescriptive, it helps if modules look and behave in a similar manner.
Make it clear where a javascript module will be applying behaviour:
<div data-module="toggle-thing">
<a href="/" class="js-toggle">Toggle</a>
<div class="js-toggle-target">Target</div>
</div>
Beginning with a set of event listeners clearly indicates the module’s intentions.
this.start = function($element) {
$element.on('click', '.js-toggle', toggle)
$element.on('click', '.js-cancel', cancel)
}
Where possible, assign listeners to the module element to minimise the number of listeners and to allow for flexible markup:
<div data-module="toggle-thing">
<a href="/" class="js-toggle">This toggles</a>
<div class="js-toggle-target">
<p>Some content</p>
<a href="/" class="js-toggle">This also toggles</a>
</div>
</div>
Keep modules flexible by moving configuration to data attributes on the module’s element:
<div
data-module="html-stream"
data-url="/some/endpoint"
data-refresh-ms="5000">
<!-- updates with content from end point -->
</div>
Modules should have their own tests, whether they’re being included with the toolkit or are app specific.
There is a forked version of the Nomensa video player included and custom GOV.UK styles to be used with it. To use it you will need to include the script on your page and include the styles nested under an appropriate selector. For example:
@import "design-patterns/media-player";
.media-player {
@include media-player;
}
You will also need to create your own initalizer to target the links you want to turn into videos. There are examples of how this works in the Nomensa Accesible Media Player repository.
GOVUK.MultiVariateTest
runs split tests to display different content, layouts etc to users.
It randomly assigns a user a cohort on first execution by setting a cookie, and on every execution sets a session level custom variable on Google Analytics to mark which cohort a user is in. This can be used to segment users in GA.
A simple content replacement test can be done by defining a set of cohorts with content. E.g.:
var test = new GOVUK.MultivariateTest({
el: '.car-tax-button',
name: 'car_tax_button_text',
cohorts: {
pay_your_car_tax: {html: "Pay Your Car Tax"},
give_us_money: {html: "Give Us Money Or We Will Crush Your Car"}
}
});
A more complex test can be done by defining callbacks for what to do when a user is in each cohort:
var test = new GOVUK.MultivariateTest({
name: 'car_tax_button_text',
cohorts: {
pay_your_car_tax: {callback: function() { ... }},
give_us_money: {callback: function() { ... }}
}
});
If you want one cohort to appear 25% of the time then you can optionally weight that cohort:
var test = new GOVUK.MultivariateTest({
name: 'car_tax_button_text',
cohorts: {
pay_your_car_tax: {weight: 25, callback: function() { ... }}, // 25%
give_us_money: {weight: 75, callback: function() { ... }} // 75%
}
});
If you want to set the cookie expiration then you can optionally set cookieDuration as follows:
var test = new GOVUK.MultivariateTest({
name: 'car_tax_button_text',
cookieDuration: 14,
cohorts: {
pay_your_car_tax: {weight: 25, callback: function() { ... }}, // 25%
give_us_money: {weight: 75, callback: function() { ... }} // 75%
}
});
Here, it is set to expire in 14 days time. if this option is not set the default cookie expiration (30 days) take effect.
If you have a complex test, it may be worth extending MultivariateTest with your own. Callbacks can be strings which will call a method of that name on the current object.
Takes these options:
el
: Element to run this test on (optional)name
: The name of the text (alphanumeric and underscores), which will be part of the cookie.defaultWeight
: Number of times each cohorts should appear in an array the random cohort is picked from, to be used in conjunction with weights on individual cohorts.cohorts
: An object that maps cohort name to an object that defines the cohort. Name must be same format as test name. Object contains keys (all optional):html
: HTML to fill element with when this cohort is picked.callback
: Function to call when this cohort is chosen. If it is a string, that method on the test object is called.weight
: Number of times this cohort should appear in an array the random cohort is picked from, defaults to thedefaultWeight
of the test.
Full documentation on how to design multivariate tests, use the data in GA and construct hypothesis tests is on its way soon.
The toolkit includes a library for multivariate testing that is capable of reporting data into Google Content Experiments.
-
Log in to Google Universal Analytics, select "UA - 1. GOV.UK(Entire Site - Filtered)".
-
In the left column, click on Behaviour, then Experiments and follow these instructions to set up your experiment; you will need to have edit permissions on the Universal Analytics profile. If you cannot see a "Create experiment" button, this means you don't have these permissions; you can ask someone from the Performance Analyst team to set the experiment up for you.
-
In step number 2, in our case the address of the web pages will purely be used as descriptions in reports, so we recommend you pick the addresses accordingly, ie: "www.gov.uk" and "www.gov.uk/?=variation1".
-
In step number 3, "Setting up your experiment code", select "Manually insert the code" and make a note of the Experiment ID number located under the script window.
-
Add the below code to the page you want to test.
- the contentExperimentId is the Experiment ID you retrieved in step 3.
- the variantId is 0 for the original variant, 1 for the first modified variant, 2 for the second modified variant, etc.
- see section above for other elements. This code requires analytics to be loaded in order to run; static is the app that would load the analytics by default, which automatically happens before experiments are run.
-
Check that it works: launch the app, open the page of your app, and check that there is a cookie with the name you had picked in your experiment. You can delete the cookie and refresh the page to check whether you can be assigned to another cohort. Then in your browser console, go to the Networks tab and search for xid and xvar. The values should correspond to your contentExperimentId and the cohort your cookie indicates you were assigned to.
-
If it works, in Google Universal Analytics, click on "Next Step" and then "Start Experiment". You can ignore the error messages relative to Experiment Code Validation as they don't concern us in our setup.
var test = new GOVUK.MultivariateTest({
name: 'car_tax_button_text',
contentExperimentId: "Your_Experiment_ID",
cohorts: {
pay_your_car_tax: {weight: 25, variantId: 0},
give_us_money: {weight: 25, variantId: 1}
}
});
It is possible to use Google custom dimensions for determining the results of the multivariate test (as an alternative to Google Content Experiments). This may be appropriate if you wish to build the statistical model yourself or you aren't able to use Content Experiments for some reason.
This requires setting the optional customDimensionIndex
variable:
var test = new GOVUK.MultivariateTest({
name: 'car_tax_button_text',
customDimensionIndex: 555,
cohorts: {
pay_your_car_tax: {weight: 25},
give_us_money: {weight: 50}
}
});
customDimensionIndex
is the index of the custom variable in Google Analytics. GA only gives 50 integer slots to each account, and it is important that a unique integer is assigned to each test. Current contact for assigning a custom var slot for GOV.UK is: Tim Leighton-Boyce tim.leighton-boyce@digital.cabinet-office.gov.uk
For certain types of tests where the custom dimensions in Google Analytics can only have one of three scopes (hit, session, or user). Measuring performance of A/B tests, and want to compare test results for session-scoped custom dimensions (eg: index 222) against hit-scoped ones (eg: index 223) may become important.
Instead of supplying an integer (like the above example), customDimensionIndex
can also accept an array of dimension indexes ([222, 223]), see below for more.
Make sure to check GA debugger that these values are being sent before deploying.
var test = new GOVUK.MultivariateTest({
name: 'car_tax_button_text',
customDimensionIndex: [222, 223],
cohorts: {
pay_your_car_tax: {weight: 25},
give_us_money: {weight: 50}
}
});
GOVUK.PrimaryList
hides elements in a list which don't have a supplied
selector, they will then be shown when the user clicks. GOVUK.primaryLinks
is
a helper to add this behaviour to many elements.
Example markup:
<ul id="primary-list">
<li class="primary-item">Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
To add it to all lists which have items with the class primary-item
use
something like:
GOVUK.primaryLinks.init('.primary-item')
Or to add it just to that list you could use:
new GOVUK.PrimaryList($('#primary-list'), '.primary-item')
GOVUK.stickAtTopWhenScrolling
tries to add a class to an element when the top
of that element would be scrolled out of the viewport.
The following would cause the element to stay when you scroll:
<div class="js-stick-at-top-when-scrolling">something</div>
.content-fixed {
position: fixed;
top: 0;
}
.shim {
display: block;
}
GOVUK.stickAtTopWhenScrolling.init()
If you also include the stopScrollingAtFooter
JavaScript this will also try
and stop the elements before they get to the bottom.
If you are using GOV.UK Elements version 3.0.0 or above you do not need to include and initialise
GOVUK.SelectionButtons
to apply the correct radio button and checkbox styling. This module is deprecated and will be removed in the future.
GOVUK.SelectionButtons
adds classes to a parent <label>
of a radio button or checkbox, allowing you to style it based on the input’s state. Given this example HTML structure:
<label>
<input type="radio" name="size" value="medium" />
Medium size
</label>
When the input is focused or its checked
attribute is set, representative classes are added to the label.
To apply this behaviour to elements that follow the above HTML, call the GOVUK.SelectionButtons
constructor with a jQuery collection of the inputs:
var $buttons = $('label input[type=radio], label input[type=checkbox]')
var selectionButtons = new GOVUK.SelectionButtons($buttons)
If you want to bind your events to the document instead of the elements directly (delegated events) you can call GOVUK.SelectionButtons
with a selector string:
var selectionButtons = new GOVUK.SelectionButtons('label input[type=radio], label input[type=checkbox]')
This will bind all events to the document meaning any new elements (for example, by AJAX) that match this selector will automatically gain this functionality.
If you do add elements that need this functionality dynamically to the page, you will need to initialise their state. You can do this by calling SelectionButtons.setInitialState
with the same selector string:
var buttonSelector = 'label input[type=radio], label input[type=checkbox]'
var selectionButtons = new GOVUK.SelectionButtons(buttonSelector)
then later, after adding more elements:
selectionButtons.setInitialState(buttonSelector)
The classes that get added to the <label>
tags can be passed in as options:
var $buttons = $('label input[type=radio], label input[type=checkbox]')
var selectionButtons = new GOVUK.SelectionButtons($buttons, {
focusedClass: 'selectable-focused',
selectedClass: 'selectable-selected'
})
or, using delegated events:
var buttonSelector = 'label input[type=radio], label input[type=checkbox]'
var selectionButtons = new GOVUK.SelectionButtons($buttonSelector, {
focusedClass: 'selectable-focused',
selectedClass: 'selectable-selected'
})
The returned instance object includes a destroy
method to remove all events bound to either the elements or the document.
Using any of the selectionButtons
objects created above, it can be called like so:
selectionButtons.destroy();
The previous method of calling selection buttons is now deprecated. If you need to call them using this method, you will need to define this function:
GOVUK.selectionButtons = function (elms, opts) {
new GOVUK.SelectionButtons(elms, opts)
}
This method will mean the destroy
method is not available to call.
Links styled to look like buttons lack button behaviour. This script will allow them to be triggered with a space key after they’ve been focused, to match standard buttons.
By default, this behaviour will only be applied to links with a role of button.
<a class="button" role="button">A button</a>
GOVUK.shimLinksWithButtonRole.init()
If you need to override the elements this is applied to then you can do that by passing in a custom selector to the initialiser:
GOVUK.shimLinksWithButtonRole.init({
selector: '.my-class'
})
It’s also possible to define more or different keycodes to activate against:
// activate when the user presses space or ‘r’
GOVUK.shimLinksWithButtonRole.init({
keycodes: [32, 114]
});
Script to support show/hide content, toggled by radio buttons and checkboxes. This allows for progressive disclosure of question and answer forms based on selected values:
<div class="multiple-choice" data-target="show-me">
<input type="radio" name="enabled" value="yes" />
<label>Yes</label>
</div>
<div class="multiple-choice">
<input type="radio" name="enabled" value="no" />
<label>No</label>
</div>
<div id="show-me" class="panel js-hidden">
<p>Show/Hide content to be toggled</p>
</div>
When the input's checked
attribute is set, the show/hide content's .js-hidden
class is removed and ARIA attributes are added to enable it. Note the sample show-me
id attribute used to link the label to show/hide content.
To apply this behaviour to elements with the above HTML pattern, call the GOVUK.ShowHideContent
constructor:
var showHideContent = new GOVUK.ShowHideContent()
showHideContent.init()
This will bind two event handlers to $(document.body), one for radio inputs and one for checkboxes. By listening for events bubbling up to the body
tag, additional show/hide content added to the page will still be picked up after .init()
is called.
Alternatively, pass in your own selector. In the example below, event handlers are bound to the form instead.
var showHideContent = new GOVUK.ShowHideContent()
showHideContent.init($('form.example'))