generated from adobe/aem-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MWPW-109331 - Carousel #375
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1 +1,375 @@ | ||
export default function init() {} | ||
import { createTag, getConfig } from '../../utils/utils.js'; | ||
|
||
const { miloLibs, codeRoot } = getConfig(); | ||
const base = miloLibs || codeRoot; | ||
|
||
const ARROW_NEXT_IMG = `<img class="next-icon" alt="Next icon" src="${base}/blocks/carousel/img/arrow.svg" height="10" width="16">`; | ||
const ARROW_PREVIOUS_IMG = `<img class="previous-icon" alt="Previous icon" src="${base}/blocks/carousel/img/arrow.svg" height="10" width="16">`; | ||
const LIGHTBOX_ICON = `<img class="expand-icon" alt="Expand carousel to full screen" src="${base}/blocks/carousel/img/expand.svg" height="14" width="20">`; | ||
const CLOSE_ICON = `<img class="expand-icon" alt="Expand carousel to full screen" src="${base}/blocks/carousel/img/close.svg" height="20" width="20">`; | ||
|
||
const KEY_CODES = { | ||
SPACE: 'Space', | ||
END: 'End', | ||
HOME: 'Home', | ||
ARROW_LEFT: 'ArrowLeft', | ||
ARROW_RIGHT: 'ArrowRight', | ||
}; | ||
|
||
function decorateNextPreviousBtns() { | ||
const previousBtn = createTag( | ||
'button', | ||
{ | ||
class: 'carousel-button carousel-previous', | ||
'aria-label': 'Previous', | ||
'data-toggle': 'previous', | ||
}, | ||
ARROW_PREVIOUS_IMG, | ||
); | ||
|
||
const nextBtn = createTag( | ||
'button', | ||
{ | ||
class: 'carousel-button carousel-next', | ||
'aria-label': 'Next', | ||
'data-toggle': 'next', | ||
}, | ||
ARROW_NEXT_IMG, | ||
); | ||
return [previousBtn, nextBtn]; | ||
} | ||
|
||
function decorateLightboxButtons() { | ||
const expandBtn = createTag( | ||
'button', | ||
{ | ||
class: 'lightbox-button carousel-expand', | ||
'aria-label': 'Open in full screen', | ||
}, | ||
LIGHTBOX_ICON, | ||
); | ||
const closeBtn = createTag( | ||
'button', | ||
{ | ||
class: 'lightbox-button carousel-close', | ||
'aria-label': 'Close full screen carousel', | ||
}, | ||
CLOSE_ICON, | ||
); | ||
return [expandBtn, closeBtn]; | ||
} | ||
|
||
function decorateSlideIndicators(slides) { | ||
const indicatorDots = []; | ||
|
||
for (let i = 0; i < slides.length; i += 1) { | ||
const li = createTag('li', { | ||
class: 'carousel-indicator', | ||
role: 'tab', | ||
tabindex: -1, | ||
'data-index': i, | ||
'aria-selected': false, | ||
'aria-labelledby': `Viewing Slide ${i + 1}`, | ||
}); | ||
|
||
// Set inital active state | ||
if (i === 0) { | ||
li.classList.add('active'); | ||
li.setAttribute('tabindex', 0); | ||
} | ||
indicatorDots.push(li); | ||
} | ||
return indicatorDots; | ||
} | ||
|
||
function handleNext(nextElement, elements) { | ||
if (nextElement.nextElementSibling) { | ||
return nextElement.nextElementSibling; | ||
} | ||
return elements[0]; | ||
} | ||
|
||
function handlePrevious(previousElment, elements) { | ||
if (previousElment.previousElementSibling) { | ||
return previousElment.previousElementSibling; | ||
} | ||
return elements[elements.length - 1]; | ||
} | ||
|
||
function handleLightboxButtons(lightboxBtns, el, slideWrapper) { | ||
const curtain = createTag('div', { class: 'carousel-curtain' }); | ||
|
||
[...lightboxBtns].forEach((button) => { | ||
button.addEventListener('click', (event) => { | ||
event.preventDefault(); | ||
if (button.classList.contains('carousel-expand')) { | ||
el.classList.add('lightbox-active'); | ||
slideWrapper.append(curtain); | ||
} | ||
|
||
if (button.classList.contains('carousel-close')) { | ||
el.classList.remove('lightbox-active'); | ||
curtain.remove(); | ||
} | ||
}, true); | ||
}); | ||
|
||
// Handle click outside of Carousel | ||
curtain.addEventListener('click', (event) => { | ||
event.preventDefault(); | ||
el.classList.remove('lightbox-active'); | ||
curtain.remove(); | ||
}, true); | ||
} | ||
|
||
function jumpToDirection(activeSlideIndex, jumpToIndex, slideContainer) { | ||
if (activeSlideIndex < jumpToIndex) { | ||
slideContainer.classList.remove('is-reversing'); | ||
} else { | ||
slideContainer.classList.add('is-reversing'); | ||
} | ||
} | ||
|
||
function moveSlides(event, carouselElements, jumpToIndex) { | ||
const { | ||
slideContainer, | ||
slides, | ||
nextPreviousBtns, | ||
slideIndicators, | ||
controlsContainer, | ||
direction, | ||
} = carouselElements; | ||
|
||
let referenceSlide = slideContainer.querySelector('.reference-slide'); | ||
let activeSlide = slideContainer.querySelector('.active'); | ||
let activeSlideIndicator = controlsContainer.querySelector('.active'); | ||
const activeSlideIndex = activeSlideIndicator.dataset.index; | ||
|
||
// Track reference slide - last slide initially | ||
if (!referenceSlide) { | ||
referenceSlide = slides[slides.length - 1]; | ||
referenceSlide.classList.add('reference-slide'); | ||
referenceSlide.style.order = '1'; | ||
} | ||
|
||
// Remove class/attributes after being tracked | ||
referenceSlide.classList.remove('reference-slide'); | ||
referenceSlide.style.order = null; | ||
activeSlide.classList.remove('active'); | ||
activeSlideIndicator.classList.remove('active'); | ||
activeSlideIndicator.setAttribute('tabindex', -1); | ||
|
||
/* | ||
* If indicator dot buttons are clicked update: | ||
* reference slide, active indicator dot, and active slide | ||
*/ | ||
if (jumpToIndex >= 0) { | ||
if (jumpToIndex === 0) { | ||
referenceSlide = slides[slides.length - 1]; | ||
} else if (jumpToIndex === slides.length - 1) { | ||
referenceSlide = slides[slides.length - 2]; | ||
} else { | ||
referenceSlide = slides[jumpToIndex - 1]; | ||
} | ||
referenceSlide.classList.add('reference-slide'); | ||
referenceSlide.style.order = '1'; | ||
activeSlideIndicator = slideIndicators[jumpToIndex]; | ||
activeSlide = slides[jumpToIndex]; | ||
jumpToDirection(activeSlideIndex, jumpToIndex, slideContainer); | ||
} | ||
|
||
// Next arrow button, swipe, keyboard navigation | ||
if ((event.currentTarget).dataset.toggle === 'next' | ||
|| event.key === KEY_CODES.ARROW_RIGHT | ||
|| (direction === 'left' && event.type === 'touchend')) { | ||
nextPreviousBtns[1].focus(); | ||
referenceSlide = handleNext(referenceSlide, slides); | ||
activeSlideIndicator = handleNext(activeSlideIndicator, slideIndicators); | ||
activeSlide = handleNext(activeSlide, slides); | ||
slideContainer?.classList.remove('is-reversing'); | ||
} | ||
|
||
// Previous arrow button, swipe, keyboard navigation | ||
if ((event.currentTarget).dataset.toggle === 'previous' | ||
|| event.key === KEY_CODES.ARROW_LEFT | ||
|| (direction === 'right' && event.type === 'touchend')) { | ||
nextPreviousBtns[0].focus(); | ||
referenceSlide = handlePrevious(referenceSlide, slides); | ||
activeSlideIndicator = handlePrevious(activeSlideIndicator, slideIndicators); | ||
activeSlide = handlePrevious(activeSlide, slides); | ||
slideContainer.classList.add('is-reversing'); | ||
} | ||
|
||
// Update reference slide attributes | ||
referenceSlide.classList.add('reference-slide'); | ||
referenceSlide.style.order = '1'; | ||
|
||
// Update active slide and indicator dot attributes | ||
activeSlide.classList.add('active'); | ||
activeSlideIndicator.classList.add('active'); | ||
activeSlideIndicator.setAttribute('tabindex', 0); | ||
|
||
// Loop over all slide siblings to update their order | ||
for (let i = 2; i <= slides.length; i += 1) { | ||
referenceSlide = handleNext(referenceSlide, slides); | ||
referenceSlide.style.order = i; | ||
} | ||
|
||
/* | ||
* Activates slide animation. | ||
* Delay time matches animation time for next/previous controls. | ||
* JumpToInidex uses a shorter delay that better supports | ||
* non-linear slide navigation. | ||
*/ | ||
const slideDelay = jumpToIndex >= 0 ? 10 : 50; | ||
slideContainer.classList.remove('is-ready'); | ||
return setTimeout(() => slideContainer.classList.add('is-ready'), slideDelay); | ||
} | ||
|
||
export function getSwipeDistance(start, end) { | ||
if (end === 0) { | ||
const updateStart = 0; | ||
return Math.abs(updateStart - end); | ||
} | ||
return Math.abs(start - end); | ||
} | ||
|
||
export function getSwipeDirection(swipe, swipeDistance) { | ||
const { xDistance } = swipeDistance; | ||
|
||
if (xDistance !== swipe.xStart && xDistance > swipe.xMin) { | ||
return (swipe.xEnd > swipe.xStart) ? 'right' : 'left'; | ||
} | ||
return undefined; | ||
} | ||
|
||
/** | ||
* Mobile swipe/touch direction detection | ||
*/ | ||
function mobileSwipeDetect(carouselElements) { | ||
const { el } = carouselElements; | ||
const swipe = { xMin: 50 }; | ||
/* c8 ignore start */ | ||
el.addEventListener('touchstart', (event) => { | ||
const touch = event.touches[0]; | ||
swipe.xStart = touch.screenX; | ||
}); | ||
|
||
el.addEventListener('touchmove', (event) => { | ||
const touch = event.touches[0]; | ||
swipe.xEnd = touch.screenX; | ||
}); | ||
|
||
el.addEventListener('touchend', (event) => { | ||
const swipeDistance = {}; | ||
swipeDistance.xDistance = getSwipeDistance(swipe.xStart, swipe.xEnd); | ||
carouselElements.direction = getSwipeDirection(swipe, swipeDistance); | ||
|
||
// reset end swipe values | ||
swipe.xStart = 0; | ||
swipe.xEnd = 0; | ||
|
||
if (swipeDistance.xDistance > swipe.xMin) { | ||
moveSlides(event, carouselElements); | ||
} | ||
}); | ||
/* c8 ignore end */ | ||
} | ||
|
||
function handleChangingSlides(carouselElements) { | ||
const { el, nextPreviousBtns, slideIndicators } = carouselElements; | ||
|
||
// Handle Next/Previous Buttons | ||
[...nextPreviousBtns].forEach((btn) => { | ||
btn.addEventListener('click', (event) => { | ||
moveSlides(event, carouselElements); | ||
}); | ||
}); | ||
|
||
// Handle keyboard navigation | ||
el.addEventListener('keydown', (event) => { | ||
if (event.key === KEY_CODES.ARROW_RIGHT | ||
|| event.key === KEY_CODES.ARROW_LEFT) { moveSlides(event, carouselElements); } | ||
}); | ||
|
||
// Handle slide indictors | ||
[...slideIndicators].forEach((li) => { | ||
li.addEventListener('click', (event) => { | ||
const jumpToIndex = Number(li.dataset.index); | ||
moveSlides(event, carouselElements, jumpToIndex); | ||
}); | ||
}); | ||
|
||
// Swipe Events | ||
mobileSwipeDetect(carouselElements); | ||
} | ||
|
||
export default function init(el) { | ||
const carouselSection = el.closest('.section'); | ||
if (!carouselSection) return; | ||
|
||
const keyDivs = el.querySelectorAll(':scope > div > div:first-child'); | ||
const carouselName = keyDivs[0].textContent; | ||
const parentArea = el.closest('.fragment') || document; | ||
const candidateKeys = parentArea.querySelectorAll('div.section-metadata > div > div:first-child'); | ||
const slides = [...candidateKeys].reduce((rdx, key) => { | ||
if (key.textContent === 'carousel' && key.nextElementSibling.textContent === carouselName) { | ||
const slide = key.closest('.section'); | ||
slide.classList.add('carousel-slide'); | ||
rdx.push(slide); | ||
slide.setAttribute('data-index', rdx.indexOf(slide)); | ||
} | ||
return rdx; | ||
}, []); | ||
|
||
const fragment = new DocumentFragment(); | ||
const nextPreviousBtns = decorateNextPreviousBtns(); | ||
const slideIndicators = decorateSlideIndicators(slides); | ||
const controlsContainer = createTag('div', { class: 'carousel-controls' }); | ||
|
||
fragment.append(...slides); | ||
const slideWrapper = createTag('div', { class: 'carousel-wrapper' }); | ||
const slideContainer = createTag('div', { class: 'carousel-slides' }, fragment); | ||
const carouselElements = { | ||
el, | ||
nextPreviousBtns, | ||
slideContainer, | ||
slides, | ||
slideIndicators, | ||
controlsContainer, | ||
direction: undefined, | ||
}; | ||
|
||
if (el.classList.contains('lightbox')) { | ||
const lightboxBtns = decorateLightboxButtons(); | ||
slideWrapper.append(slideContainer, ...lightboxBtns); | ||
handleLightboxButtons(lightboxBtns, el, slideWrapper); | ||
} else { | ||
slideWrapper.append(slideContainer); | ||
} | ||
|
||
el.textContent = ''; | ||
el.append(slideWrapper); | ||
|
||
const dotsUl = createTag('ul', { | ||
class: 'carousel-indicators', | ||
role: 'tablist', | ||
tabindex: 0, | ||
}); | ||
dotsUl.append(...slideIndicators); | ||
controlsContainer.append(dotsUl); | ||
|
||
el.append(...nextPreviousBtns, controlsContainer); | ||
|
||
function handleDeferredImages() { | ||
const images = el.querySelectorAll('img[loading="lazy"]'); | ||
images.forEach((img) => { | ||
img.removeAttribute('loading'); | ||
}); | ||
parentArea.removeEventListener('milo:deferred', handleDeferredImages, true); | ||
} | ||
parentArea.addEventListener('milo:deferred', handleDeferredImages, true); | ||
|
||
slides[0].classList.add('active'); | ||
handleChangingSlides(carouselElements); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why remove the loading lazy from the images?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was causing a flicker on images inside of the Carousel when you advanced to a slide that contained images. Due to them not loading until they came in to view.