6.7.1 • Published 6 months ago

@financial-times/o-cookie-message v6.7.1

Weekly downloads
623
License
MIT
Repository
-
Last release
6 months ago

o-cookie-message

The cookie message and behaviour approved by the FT's legal team. All FT websites must have a cookie message. Using o-cookie-message will ensure your site is compliant.

Usage

Check out how to include Origami components in your project to get started with o-cookie-message.

Markup

Use the following HTML to get a full width banner with the legal approved cookie message.

<div data-o-component="o-cookie-message"></div>

Optionally add a theme attribute to change the colours of the cookie message data-o=cookie-message-theme="alternative", see the registry demos for an example.

Custom Cookie Message

To display custom cookie message content with default buttons, add child HTML along with associated aria-labelledby and aria-describedby attributes:

<div
	role="dialog"
	aria-labelledby="demo-label-element-id"
	aria-describedby="demo-description-element-id"
	data-o-component="o-cookie-message"
	class="o-cookie-message"
	data-nosnippet>
	<!-- custom cookie message copy / html here -->
	<!-- include ids for the aria labelledby and describedby attributes -->
	<!-- e.g. -->
	<h2 id="demo-label-element-id">Custom Cookie Message</h2>
	<p id="demo-description-element-id">We use cookies because...</p>
</div>

Core Experience Cookie Message

To support a core experience without JavaScript, add the full o-cookie-message markup as below. Update the anchors redirect query param with your sites URL, preferably the current page the cookie message is displayed on. This is used to send users back after setting cookie preferences in a core experience (where JavaScript is unavailable).

<div
	role="dialog"
	aria-labelledby="o-cookie-message-label"
	aria-describedby="o-cookie-message-description"
	data-o-component="o-cookie-message"
	class="o-cookie-message"
	data-nosnippet>
	<div class="o-cookie-message__outer">
		<div class="o-cookie-message__inner">
			<div class="o-cookie-message__content">
				<div class="o-cookie-message__heading">
					<h2 id="o-cookie-message-label">Cookies on the FT</h2>
				</div>
				<p id="o-cookie-message-description">
					We use
					<a href="https://help.ft.com/help/legal-privacy/cookies/"
						class="o-cookie-message__link"
						target="_blank"
						rel="noopener">cookies</a>
					for a number of reasons, such as keeping FT Sites reliable and secure, personalising content and
					ads, providing social media features and to analyse how our Sites are used.
				</p>
			</div>

			<div class="o-cookie-message__actions">
				<div class="o-cookie-message__action o-cookie-message__action--secondary">
					<a href="https://www.ft.com/preferences/manage-cookies?redirect=#" class="o-cookie-message__link">Manage cookies</a>
				</div>
				<div class="o-cookie-message__action">
					<a href="https://consent.ft.com/__consent/consent-record-cookie?redirect=#" class="o-cookie-message__button">
						Accept cookies
					</a>
				</div>
			</div>
		</div>
	</div>
</div>

JavaScript

No code will run automatically unless you are using the Build Service.

You must either construct an o-cookie-message object or fire the o.DOMContentLoaded event, which oCookieMessage listens for.

Constructing an o-cookie-message

There are two available variations of o-cookie-message the default (standard) cookie message and alternative.

If you would like to initialise a standard cookie message, you will need to implement the following:

import oCookieMessage from '@financial-times/o-cookie-message';

const cookieMessage = new oCookieMessage();

If you would like to initialise a alternative cookie message without declaring the data attribute in the markup, you will need to implement the following:

import oCookieMessage from '@financial-times/o-cookie-message';
const cookieMessage = new oCookieMessage(null, { theme: 'alternative' });

Custom Cookie Management path

To use a different cookie management path, use the manageCookiesPath option:

import oCookieMessage from '@financial-times/o-cookie-message';
const cookieMessage = new oCookieMessage(null, { manageCookiesPath: 'preferences/manage-cookies' });

Firing an oDomContentLoaded event

document.addEventListener('DOMContentLoaded', function() {
	document.dispatchEvent(new CustomEvent('o.DOMContentLoaded'));
});

Events

You may listen to three events that bubble out from the oCookieMessage DOM element:-

  • oCookieMessage.view is emitted when the component has finished initialising and is displayed in the window.
  • oCookieMessage.act is emitted when the user accepts cookies and gives consent.
  • oCookieMessage.close is emitted when the component is removed from the DOM.

Sass

Use @include oCookieMessage() to include styles for all themes.

Themes may be included granularly with an $opts map.

Include all themes:

@include oCookieMessage();

Include only the default cookie message:

@include oCookieMessage($opts: (
	'themes': ()
));

Note: "standard" used to be required as a theme option to output the default theme, this is now output by default without any themes set.

Include the alternative cookie message theme:

@include oCookieMessage($opts: (
	'themes': ('alternative')
));

Migration

StateMajor VersionLast Minor ReleaseMigration guide
✨ active6N/Amigrate to v6
⚠ maintained55.1migrate to v5
╳ deprecated44.7migrate to v4
╳ deprecated33.3migrate to v3
╳ deprecated22.2migrate to v2
╳ deprecated11.2-

Contact

If you have any questions or comments about this component, or need help using it, please either raise an issue, visit #origami-support or email Origami Support.


Licence

This software is published by the Financial Times under the MIT licence.

6.7.0

7 months ago

6.6.1

8 months ago

6.6.0

10 months ago

6.7.1

6 months ago

6.5.2

1 year ago

6.5.0

2 years ago

6.5.1

1 year ago

6.4.3

2 years ago

6.4.2

2 years ago

6.3.0

2 years ago

6.2.1

2 years ago

6.4.1

2 years ago

6.4.0

2 years ago

6.3.1

2 years ago

6.2.2

2 years ago

6.1.0

2 years ago

6.2.0

2 years ago

6.0.2

3 years ago

6.0.1

3 years ago

6.0.0

3 years ago

6.0.0-beta.0

3 years ago

5.1.2

3 years ago

5.1.1

3 years ago

5.1.0

3 years ago

5.0.9

3 years ago

5.0.8

4 years ago

5.0.7

4 years ago

5.0.6

4 years ago

5.0.5

4 years ago

5.0.4

4 years ago

5.0.3

4 years ago

5.0.2

4 years ago

5.0.1

4 years ago

5.0.0

4 years ago

4.7.3

4 years ago

4.7.2

5 years ago

4.7.1

5 years ago

4.7.0

5 years ago