-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
js functionality of accoridon within nav
- Loading branch information
1 parent
97c632f
commit d18d80c
Showing
8 changed files
with
182 additions
and
10 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
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,102 @@ | ||
import { Component } from 'govuk-frontend' | ||
|
||
/** | ||
* Mobile Navigation enhancement for Service Navigation component | ||
*/ | ||
class MobileNavigation extends Component { | ||
static moduleName = 'app-mobile-navigation' | ||
|
||
/** | ||
* @param {Element} $root - HTML element | ||
*/ | ||
constructor($root) { | ||
super($root) | ||
|
||
this.templates = this.$root.querySelectorAll( | ||
'.app-mobile-navigation__template' | ||
) | ||
this.links = this.$root.querySelectorAll('a') | ||
|
||
Array.from(this.templates).forEach((template) => { | ||
const templateClone = template.content.cloneNode(true) | ||
let link | ||
|
||
if (template.parentNode.tagName === 'A') { | ||
link = template.parentNode | ||
link.removeChild(template) | ||
} else { | ||
link = template.parentNode.parentNode | ||
template.parentNode.removeChild(template) | ||
} | ||
|
||
const button = document.createElement('button') | ||
button.classList.add('govuk-service-navigation__link') | ||
button.classList.add('app-mobile-navigation__toggle-button') | ||
button.setAttribute( | ||
'aria-expanded', | ||
String( | ||
link.parentNode.classList.contains( | ||
'govuk-service-navigation__item--active' | ||
) | ||
) | ||
) | ||
button.textContent = link.textContent | ||
|
||
link.insertAdjacentElement('afterend', templateClone.firstElementChild) | ||
link.insertAdjacentElement('afterend', button) | ||
}) | ||
|
||
// A global const for storing a matchMedia instance which we'll use to detect when a screen size change happens | ||
// Set the matchMedia to the govuk-frontend tablet breakpoint | ||
|
||
const x = getComputedStyle(document.documentElement).getPropertyValue( | ||
'--govuk-frontend-breakpoint-tablet' | ||
) | ||
|
||
this.mql = window.matchMedia(`(min-width: ${x})`) | ||
|
||
// MediaQueryList.addEventListener isn't supported by Safari < 14 so we need | ||
// to be able to fall back to the deprecated MediaQueryList.addListener | ||
if ('addEventListener' in this.mql) { | ||
this.mql.addEventListener('change', () => this.setHiddenStates()) | ||
} else { | ||
// @ts-expect-error Property 'addListener' does not exist | ||
this.mql.addListener(() => this.setHiddenStates()) | ||
} | ||
|
||
this.setHiddenStates() | ||
this.setEventListener() | ||
} | ||
|
||
/** | ||
* Set up event delegation for button clicks | ||
*/ | ||
setEventListener() { | ||
this.$root.addEventListener( | ||
'click', | ||
(e) => { | ||
if (e.target.tagName === 'BUTTON') { | ||
if (e.target.getAttribute('aria-expanded') === 'true') { | ||
e.target.setAttribute('aria-expanded', 'false') | ||
} else { | ||
e.target.setAttribute('aria-expanded', 'true') | ||
} | ||
} | ||
}, | ||
{ bubbles: true } | ||
) | ||
} | ||
|
||
/** | ||
* Hide links if viewport is below tablet | ||
*/ | ||
setHiddenStates() { | ||
if (!this.mql.matches) { | ||
this.links.forEach((a) => a.setAttribute('hidden', '')) | ||
} else { | ||
this.links.forEach((a) => a.removeAttribute('hidden')) | ||
} | ||
} | ||
} | ||
|
||
export default MobileNavigation |
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,44 @@ | ||
.app-mobile-navigation__toggle-button { | ||
@include govuk-media-query($from: tablet) { | ||
display: none; | ||
} | ||
position: relative; | ||
padding: 0; | ||
border: 0; | ||
|
||
background: none; | ||
font-size: inherit; | ||
} | ||
|
||
.app-mobile-navigation__toggle-button::after { | ||
content: ""; | ||
box-sizing: border-box; | ||
display: block; | ||
position: absolute; | ||
right: govuk-px-to-rem(-14px); | ||
bottom: govuk-px-to-rem(10px); | ||
width: govuk-px-to-rem(6px); | ||
height: govuk-px-to-rem(6px); | ||
border-top: govuk-px-to-rem(2px) solid; | ||
border-right: govuk-px-to-rem(2px) solid; | ||
} | ||
|
||
.app-mobile-navigation__toggle-button[aria-expanded="false"]::after { | ||
transform: rotate(135deg); | ||
} | ||
|
||
.app-mobile-navigation__toggle-button[aria-expanded="false"] ~ .app-navigation__list { | ||
display: none; | ||
} | ||
|
||
.app-mobile-navigation__toggle-button[aria-expanded="true"]::after { | ||
transform: rotate(-45deg); | ||
} | ||
|
||
.app-mobile-navigation__toggle-button[aria-expanded="true"] ~ .app-navigation__list { | ||
@include govuk-media-query($until: tablet) { | ||
display: block; | ||
} | ||
|
||
display: none; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{% macro mobileNavigation(params) %} | ||
{% if params.items %} | ||
<ul class="app-navigation__list"> | ||
{% for item in params.items %} | ||
<li class="app-navigation__subnav-item"> | ||
<a class="govuk-link govuk-link--no-visited-state govuk-link--no-underline" href="{{ item.url }}"> | ||
{{ item.label }} | ||
</a> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
{% endif %} | ||
{% endmacro %} |
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