Skip to content

Commit

Permalink
Move back to top code into components folder
Browse files Browse the repository at this point in the history
  • Loading branch information
NickColley committed Jan 22, 2019
1 parent d9cc3fe commit 3fcb13e
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 41 deletions.
46 changes: 5 additions & 41 deletions src/javascripts/application.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import BackToTop from './components/back-to-top.js'
import common from 'govuk-frontend/common'
import CookieBanner from './components/cookie-banner.js'
import Example from './components/example.js'
Expand Down Expand Up @@ -40,44 +41,7 @@ new MobileNav().init()
var $searchContainer = document.querySelector('[data-module="app-search"]')
new Search($searchContainer).init()

// Back to top visibility
var visiblity = 'invisible'
var intersectionRatio = 0

// Create new IntersectionObserver
var io = new window.IntersectionObserver(function (entries) {
// Available data when an intersection happens
// Element enters the viewport
if (entries[0].intersectionRatio !== 0) {
visiblity = 'visible'
// How much of the element is visible
intersectionRatio = entries[0].intersectionRatio
// Element leaves the viewport
} else {
visiblity = 'invisible'
intersectionRatio = 0
}
updateStatus(visiblity, intersectionRatio)
}, {
// Call the observer, when the element enters the viewport,
// when 25%, 50%, 75% and the whole element are visible
threshold: [0, 0.25, 0.5, 0.75, 1]
})

// Element to be observed
var subNav = document.querySelector('.app-subnav')

// Start observing .app-back-to-top
io.observe(subNav)

// Display the current status
function updateStatus (visiblity, threshold) {
var thresholdPercent = (threshold * 100)

var element = document.getElementById('app-back-to-top')
if (thresholdPercent === 100) {
element.classList.add('app-back-to-top--hidden')
} else if (thresholdPercent < 90) {
element.classList.remove('app-back-to-top--hidden')
}
}
// Initialise back to top
var $backToTop = document.getElementById('app-back-to-top')
var $observedElement = document.querySelector('.app-subnav')
new BackToTop($backToTop, { $observedElement: $observedElement }).init()
44 changes: 44 additions & 0 deletions src/javascripts/components/back-to-top.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
function BackToTop ($module, options) {
this.$module = $module
this.$observedElement = options.$observedElement
}

BackToTop.prototype.init = function () {
var $module = this.$module
var $observedElement = this.$observedElement

// Create new IntersectionObserver
var observer = new window.IntersectionObserver(function (entries) {
// Available data when an intersection happens
// Back to top visibility
var intersectionRatio = 0
// Element enters the viewport
if (entries[0].intersectionRatio !== 0) {
// How much of the element is visible
intersectionRatio = entries[0].intersectionRatio
// Element leaves the viewport
} else {
intersectionRatio = 0
}
updateStatus(intersectionRatio)
}, {
// Call the observer, when the element enters the viewport,
// when 25%, 50%, 75% and the whole element are visible
threshold: [0, 0.25, 0.5, 0.75, 1]
})

observer.observe($observedElement)

// Display the current status
function updateStatus (threshold) {
var thresholdPercent = (threshold * 100)

if (thresholdPercent === 100) {
$module.classList.add('app-back-to-top--hidden')
} else if (thresholdPercent < 90) {
$module.classList.remove('app-back-to-top--hidden')
}
}
}

export default BackToTop

0 comments on commit 3fcb13e

Please sign in to comment.