/* global XMLHttpRequest, FormData */ window.GOVUK = window.GOVUK || {} window.GOVUK.Modules = window.GOVUK.Modules || {}; (function (Modules) { function Feedback ($module) { this.$module = $module this.somethingIsWrongForm = this.$module.querySelector('#something-is-wrong') this.surveyForm = this.$module.querySelector('#page-is-not-useful') this.prompt = this.$module.querySelector('.js-prompt') this.forms = this.$module.querySelectorAll('.js-feedback-form') this.toggleForms = this.$module.querySelectorAll('.js-toggle-form') this.closeForms = this.$module.querySelectorAll('.js-close-form') this.activeForm = false this.pageIsUsefulButton = this.$module.querySelector('.js-page-is-useful') this.pageIsNotUsefulButton = this.$module.querySelector('.js-page-is-not-useful') this.somethingIsWrongButton = this.$module.querySelector('.js-something-is-wrong') this.promptQuestions = this.$module.querySelectorAll('.js-prompt-questions') this.promptSuccessMessage = this.$module.querySelector('.js-prompt-success') this.surveyWrapper = this.$module.querySelector('#survey-wrapper') this.jshiddenClass = 'js-hidden' } Feedback.prototype.init = function () { this.setInitialAriaAttributes() this.setHiddenValues() for (var j = 0; j < this.toggleForms.length; j++) { this.toggleForms[j].addEventListener('click', function (e) { e.preventDefault() var el = e.target this.toggleForm(el.getAttribute('aria-controls')) this.trackEvent(this.getTrackEventParams(el)) this.updateAriaAttributes(el) }.bind(this)) } for (var i = 0; i < this.closeForms.length; i++) { this.closeForms[i].addEventListener('click', function (e) { e.preventDefault() var el = e.target var formToToggle = el.getAttribute('aria-controls') this.toggleForm(formToToggle) this.trackEvent(this.getTrackEventParams(el)) this.setInitialAriaAttributes() this.revealInitialPrompt() var refocusClass = '.js-' + formToToggle this.$module.querySelector(refocusClass).focus() }.bind(this)) } this.pageIsUsefulButton.addEventListener('click', function (e) { e.preventDefault() this.trackEvent(this.getTrackEventParams(this.pageIsUsefulButton)) this.showFormSuccess() this.revealInitialPrompt() }.bind(this)) this.pageIsNotUsefulButton.addEventListener('click', function (e) { var gaClientId var dummyGaClientId = '111111111.1111111111' if (window.GOVUK.cookie('_ga') === null || window.GOVUK.cookie('_ga') === '') { gaClientId = dummyGaClientId } else { gaClientId = window.GOVUK.cookie('_ga').split('.').slice(-2).join('.') } this.setHiddenValuesNotUsefulForm(gaClientId) }.bind(this)) // much of the JS needed to support sending the form contents via this script is // unsupported by IE, even IE11. This check causes IE to not intercept form submits // and let them happen normally, which is handled already by the backend if (typeof window.URLSearchParams === 'function') { for (var f = 0; f < this.forms.length; f++) { this.forms[f].addEventListener('submit', function (e) { e.preventDefault() var $form = e.target var xhr = new XMLHttpRequest() var url = $form.getAttribute('action') var params = new FormData($form) params = new URLSearchParams(params).toString() xhr.open('POST', url, true) xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded') xhr.onreadystatechange = function () { if (xhr.readyState === 4 && xhr.status === 200) { this.trackEvent(this.getTrackEventParams($form)) this.showFormSuccess(xhr.message) this.revealInitialPrompt() this.setInitialAriaAttributes() this.activeForm.classList.toggle(this.jshiddenClass) } else { this.showError(xhr) this.enableSubmitFormButton($form) } }.bind(this) this.disableSubmitFormButton($form) xhr.send(params) }.bind(this)) } } } Feedback.prototype.disableSubmitFormButton = function ($form) { var formButton = $form.querySelector('[type="submit"]') formButton.setAttribute('disabled', true) } Feedback.prototype.enableSubmitFormButton = function ($form) { var formButton = $form.querySelector('[type="submit"]') formButton.removeAttribute('disabled') } Feedback.prototype.setInitialAriaAttributes = function () { for (var i = 0; i < this.forms.length; i++) { this.forms[i].setAttribute('aria-hidden', true) } this.pageIsNotUsefulButton.setAttribute('aria-expanded', false) this.somethingIsWrongButton.setAttribute('aria-expanded', false) } Feedback.prototype.setHiddenValues = function () { var javascriptEnabled = document.createElement('input') javascriptEnabled.setAttribute('type', 'hidden') javascriptEnabled.setAttribute('name', 'javascript_enabled') javascriptEnabled.setAttribute('value', true) this.somethingIsWrongForm.appendChild(javascriptEnabled) var referrer = document.createElement('input') referrer.setAttribute('type', 'hidden') referrer.setAttribute('name', 'referrer') referrer.setAttribute('value', document.referrer || 'unknown') this.somethingIsWrongForm.appendChild(referrer) this.somethingIsWrongForm.invalidInfoError = [ '
Please tell us what you were doing or what went wrong
' ].join('') } Feedback.prototype.setHiddenValuesNotUsefulForm = function (gaClientId) { var currentPathName = window.location.pathname.replace(/[^\s=?&]+(?:@|%40)[^\s=?&]+/, '[email]') var finalPathName = encodeURI(currentPathName) this.surveyForm.invalidInfoError = [ 'Enter an email address in the correct format, like name@example.com
' ].join('') if (document.querySelectorAll('[name="email_survey_signup[ga_client_id]"]').length === 0) { var hiddenInput = document.createElement('input') hiddenInput.setAttribute('type', 'hidden') hiddenInput.setAttribute('name', 'email_survey_signup[ga_client_id]') hiddenInput.setAttribute('value', gaClientId || '0') this.surveyForm.appendChild(hiddenInput) } if (document.querySelectorAll('.gem-c-feedback__email-link#take-survey').length === 0) { var takeSurvey = document.createElement('a') takeSurvey.setAttribute('href', 'https://www.smartsurvey.co.uk/s/gov-uk-banner/?c=' + finalPathName + '&gcl=' + gaClientId) takeSurvey.setAttribute('class', 'gem-c-feedback__email-link govuk-link') takeSurvey.setAttribute('id', 'take-survey') takeSurvey.setAttribute('target', '_blank') takeSurvey.setAttribute('rel', 'noopener noreferrer') takeSurvey.innerHTML = 'Don’t have an email address?' this.surveyWrapper.appendChild(takeSurvey) } } Feedback.prototype.updateAriaAttributes = function (linkClicked) { linkClicked.setAttribute('aria-expanded', true) var controls = linkClicked.getAttribute('aria-controls') var ariaControls = document.querySelector('#' + controls) ariaControls.setAttribute('aria-hidden', false) } Feedback.prototype.toggleForm = function (formId) { this.activeForm = this.$module.querySelector('#' + formId) this.activeForm.classList.toggle(this.jshiddenClass) this.prompt.classList.toggle(this.jshiddenClass) var formIsVisible = !this.activeForm.classList.contains(this.jshiddenClass) if (formIsVisible) { this.activeForm.querySelector('.gem-c-input').focus() } else { this.activeForm = false } } Feedback.prototype.getTrackEventParams = function ($node) { return { category: $node.getAttribute('data-track-category'), action: $node.getAttribute('data-track-action') } } Feedback.prototype.trackEvent = function (trackEventParams) { if (window.GOVUK.analytics && window.GOVUK.analytics.trackEvent) { window.GOVUK.analytics.trackEvent(trackEventParams.category, trackEventParams.action) } } Feedback.prototype.showError = function (error) { var genericError = [ 'If the problem persists, we have other ways for you to provide', ' feedback on the contact page.
' ].join('') // if the response is not a 404 or 500, show the error message if it exists // otherwise show the generic message if ('response' in error) { if (typeof error.response === 'object' && error.response !== null) { error = error.response.message === 'email survey sign up failure' ? genericError : error.response.message } else { error = genericError } } else if (error.status === 422) { // there's clobbering by nginx on all 422 requests, which is why the response returns a rendered html page instead of the expected JSON // this is a temporary workaround to ensure that we are displaying relevant error messages to the users error = this.activeForm.invalidInfoError || genericError } else { error = genericError } var $errors = this.activeForm.querySelector('.js-errors') $errors.innerHTML = error $errors.classList.remove(this.jshiddenClass) $errors.focus() } Feedback.prototype.showFormSuccess = function () { for (var i = 0; i < this.promptQuestions.length; i++) { this.promptQuestions[i].classList.add(this.jshiddenClass) } this.promptSuccessMessage.classList.remove(this.jshiddenClass) this.promptSuccessMessage.focus() } Feedback.prototype.revealInitialPrompt = function () { this.prompt.classList.remove(this.jshiddenClass) this.prompt.focus() } Modules.Feedback = Feedback })(window.GOVUK.Modules)