-
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #100 from jazzband/feature/99-cookiebar-js
Refactor cookiebar JS
- Loading branch information
Showing
28 changed files
with
1,098 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.{scss,sass}] | ||
indent_size = 2 | ||
|
||
[*.{yml,yaml}] | ||
indent_size = 2 | ||
|
||
[*.js] | ||
indent_size = 2 | ||
|
||
[Makefile] | ||
indent_style = tab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,5 +19,6 @@ dist/ | |
.tox/ | ||
.pytest_cache | ||
.coverage | ||
htmlcov/ | ||
reports/ | ||
testapp/*.db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
203 changes: 203 additions & 0 deletions
203
cookie_consent/static/cookie_consent/cookiebar.module.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,203 @@ | ||
/** | ||
* Cookiebar functionality, as a Javascript module. | ||
* | ||
* About modules: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules | ||
* | ||
* The code is organized here in a way to make the templates work with Django's page | ||
* cache. This means that anything user-specific (so different django session and even | ||
* cookie consent cookies) cannot be baked into the templates, as that breaks caches. | ||
* | ||
* The cookie bar operates on the following principles: | ||
* | ||
* - The developer using the library includes the desired template in their django | ||
* templates, using the HTML <template> element. This contains the content for the | ||
* cookie bar. | ||
* - The developer is responsible for loading some Javascript that loads this script. | ||
* - The main export of this script needs to be called (showCookieBar), with the | ||
* appropriate options. | ||
* - The options include the backend URLs where the retrieve data, which selectors/DOM | ||
* nodes to use for various functionality and the hooks to tap into the accept/decline | ||
* life-cycle. | ||
* - When a user accepts or declines (all) cookies, the call to the backend is made via | ||
* a fetch request, bypassing any page caches and preventing full-page reloads. | ||
*/ | ||
const DEFAULTS = { | ||
statusUrl: undefined, | ||
// TODO: also accept element rather than selector? | ||
templateSelector: '#cookie-consent__cookie-bar', | ||
cookieGroupsSelector: '#cookie-consent__cookie-groups', | ||
acceptSelector: '.cookie-consent__accept', | ||
declineSelector: '.cookie-consent__decline', | ||
/** | ||
* Either a string (selector), DOMNode or null. | ||
* | ||
* If null, the bar is appended to the body. If provided, the node is used or looked | ||
* up. | ||
*/ | ||
insertBefore: null, | ||
onShow: null, // callback when the cookie bar is being shown -> add class to body... | ||
onAccept: null, // callback when cookies are accepted | ||
onDecline: null, // callback when cookies are declined | ||
csrfHeaderName: 'X-CSRFToken', // Django's default, can be overridden with settings.CSRF_HEADER_NAME | ||
}; | ||
|
||
const DEFAULT_HEADERS = {'X-Cookie-Consent-Fetch': '1'}; | ||
|
||
let CONFIGURATION = DEFAULTS; | ||
/** | ||
* Cookie accept status, including the accept/decline URLs, csrftoken... See | ||
* backend view CookieStatusView. | ||
*/ | ||
let COOKIE_STATUS = null; | ||
|
||
export const loadCookieGroups = (selector) => { | ||
const node = document.querySelector(selector); | ||
if (!node) { | ||
throw new Error(`No cookie groups (script) tag found, using selector: '${selector}'`); | ||
} | ||
return JSON.parse(node.innerText); | ||
}; | ||
|
||
const doInsertBefore = (beforeNode, newNode) => { | ||
const parent = beforeNode.parentNode; | ||
parent.insertBefore(newNode, beforeNode); | ||
} | ||
|
||
/** | ||
* Register the accept/decline event handlers. | ||
* | ||
* Note that we can't just set the decline or accept cookie purely client-side, as the | ||
* cookie possibly has the httpOnly flag set. | ||
* | ||
* @param {HTMLEelement} cookieBarNode The DOM node containing the cookiebar markup. | ||
* @param {Array} cookieGroups The array of all configured cookie groups. | ||
* @return {Void} | ||
*/ | ||
const registerEvents = (cookieBarNode, cookieGroups) => { | ||
const {acceptSelector, onAccept, declineSelector, onDecline} = CONFIGURATION; | ||
const { | ||
acceptedCookieGroups: accepted, | ||
declinedCookieGroups: declined, | ||
notAcceptedOrDeclinedCookieGroups: undecided, | ||
} = COOKIE_STATUS; | ||
|
||
cookieBarNode | ||
.querySelector(acceptSelector) | ||
.addEventListener('click', event => { | ||
event.preventDefault(); | ||
const acceptedGroups = filterCookieGroups(cookieGroups, accepted.concat(undecided)); | ||
onAccept?.(acceptedGroups, event); | ||
acceptCookiesBackend(); | ||
cookieBarNode.parentNode.removeChild(cookieBarNode); | ||
}); | ||
|
||
cookieBarNode | ||
.querySelector(declineSelector) | ||
.addEventListener('click', event => { | ||
event.preventDefault(); | ||
const declinedGroups = filterCookieGroups(cookieGroups, declined.concat(undecided)); | ||
onDecline?.(declinedGroups, event); | ||
declineCookiesBackend(); | ||
cookieBarNode.parentNode.removeChild(cookieBarNode); | ||
}); | ||
}; | ||
|
||
const loadCookieStatus = async () => { | ||
const {statusUrl} = CONFIGURATION; | ||
if (!statusUrl) console.error('Missing status URL option, did you forget to pass the statusUrl option?'); | ||
const response = await window.fetch( | ||
CONFIGURATION.statusUrl, | ||
{ | ||
method: 'GET', | ||
credentials: 'same-origin', | ||
headers: DEFAULT_HEADERS | ||
} | ||
); | ||
// assign to module level variable, once the page is loaded these details should | ||
// not change. | ||
COOKIE_STATUS = await response.json(); | ||
}; | ||
|
||
const saveCookiesStatusBackend = async (urlProperty) => { | ||
const status = COOKIE_STATUS || {}; | ||
const url = status[urlProperty]; | ||
if (!url) { | ||
console.error(`Missing url for ${urlProperty} - was the cookie status not loaded properly?`); | ||
return; | ||
} | ||
await window.fetch(url, { | ||
method: 'POST', | ||
credentials: 'same-origin', | ||
headers: { | ||
...DEFAULT_HEADERS, | ||
[CONFIGURATION.csrfHeaderName]: status.csrftoken | ||
} | ||
}); | ||
} | ||
|
||
/** | ||
* Make the call to the backend to accept the cookies. | ||
*/ | ||
const acceptCookiesBackend = async () => await saveCookiesStatusBackend('acceptUrl'); | ||
/** | ||
* Make the call to the backend to decline the cookies. | ||
*/ | ||
const declineCookiesBackend = async () => await saveCookiesStatusBackend('declineUrl'); | ||
|
||
/** | ||
* Filter the cookie groups down to a subset of specified varnames. | ||
*/ | ||
const filterCookieGroups = (cookieGroups, varNames) => { | ||
return cookieGroups.filter(group => varNames.includes(group.varname)); | ||
}; | ||
|
||
export const showCookieBar = async (options={}) => { | ||
// merge defaults and provided options | ||
CONFIGURATION = {...DEFAULTS, ...options}; | ||
const { | ||
cookieGroupsSelector, | ||
templateSelector, | ||
insertBefore, | ||
onShow, | ||
onAccept, | ||
onDecline, | ||
} = CONFIGURATION; | ||
const cookieGroups = loadCookieGroups(cookieGroupsSelector); | ||
|
||
// no cookie groups -> abort | ||
if (!cookieGroups.length) return; | ||
|
||
const templateNode = document.querySelector(templateSelector); | ||
|
||
// insert before a given node, if specified, or append to the body as default behaviour | ||
const doInsert = insertBefore === null | ||
? (cookieBarNode) => document.querySelector('body').appendChild(cookieBarNode) | ||
: typeof insertBefore === 'string' | ||
? (cookieBarNode) => doInsertBefore(document.querySelector(insertBefore), cookieBarNode) | ||
: (cookieBarNode) => doInsertBefore(insertBefore, cookieBarNode) | ||
; | ||
await loadCookieStatus(); | ||
|
||
// calculate the cookie groups to invoke the callbacks. We deliberately fire those | ||
// without awaiting so that our cookie bar is shown/hidden as soon as possible. | ||
const { | ||
acceptedCookieGroups: accepted, | ||
declinedCookieGroups: declined, | ||
notAcceptedOrDeclinedCookieGroups | ||
} = COOKIE_STATUS; | ||
|
||
const acceptedGroups = filterCookieGroups(cookieGroups, accepted); | ||
if (acceptedGroups.length) onAccept?.(acceptedGroups); | ||
const declinedGroups = filterCookieGroups(cookieGroups, declined); | ||
if (declinedGroups.length) onDecline?.(declinedGroups); | ||
|
||
// there are no (more) cookie groups to accept, don't show the bar | ||
if (!notAcceptedOrDeclinedCookieGroups.length) return; | ||
|
||
// grab the contents from the template node and add them to the DOM, optionally | ||
// calling the onShow callback | ||
const cookieBarNode = templateNode.content.firstElementChild.cloneNode(true); | ||
registerEvents(cookieBarNode, cookieGroups); | ||
onShow?.(); | ||
doInsert(cookieBarNode); | ||
}; |
Oops, something went wrong.