Skip to content
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

Follow ups for accessibility of announcements slider #2580

Merged
merged 8 commits into from
May 2, 2023
Merged
26 changes: 20 additions & 6 deletions assets/global.js
Original file line number Diff line number Diff line change
Expand Up @@ -712,10 +712,24 @@ class SlideshowComponent extends SliderComponent {
this.slider.addEventListener('scroll', this.setSlideVisibility.bind(this));
this.setSlideVisibility();

this.reducedMotion = window.matchMedia('(prefers-reduced-motion: reduce)');
this.reducedMotion.addEventListener('change', () => {
if (this.slider.getAttribute('data-autoplay') === 'true') this.setAutoPlay();
});
if (this.querySelector('.announcement-bar-slider')) {
this.announcementBarArrowButtonWasClicked = false;

this.desktopLayout = window.matchMedia('(min-width: 750px)');
this.reducedMotion = window.matchMedia('(prefers-reduced-motion: reduce)');

[this.reducedMotion, this.desktopLayout].forEach((mediaQuery) => {
mediaQuery.addEventListener('change', () => {
if (this.slider.getAttribute('data-autoplay') === 'true') this.setAutoPlay();
});
});
eugenekasimov marked this conversation as resolved.
Show resolved Hide resolved

[this.prevButton, this.nextButton].forEach((button) => {
button.addEventListener('click', () => {
this.announcementBarArrowButtonWasClicked = true;
}, {once: true});
});
}

if (this.slider.getAttribute('data-autoplay') === 'true') this.setAutoPlay();
}
Expand All @@ -733,7 +747,7 @@ class SlideshowComponent extends SliderComponent {
this.autoplayButtonIsSetToPlay = true;
this.play();
} else {
this.reducedMotion.matches ? this.pause() : this.play();
this.reducedMotion.matches || this.announcementBarArrowButtonWasClicked || !this.desktopLayout.matches ? this.pause() : this.play();
}
}

Expand Down Expand Up @@ -782,7 +796,7 @@ class SlideshowComponent extends SliderComponent {
event.target === this.sliderAutoplayButton || this.sliderAutoplayButton.contains(event.target);
if (!this.autoplayButtonIsSetToPlay || focusedOnAutoplayButton) return;
this.play();
} else if (!this.reducedMotion.matches) {
} else if (!this.reducedMotion.matches && !this.announcementBarArrowButtonWasClicked && this.desktopLayout.matches) {
this.play();
}
}
Expand Down
6 changes: 3 additions & 3 deletions sections/announcement-bar.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@
{
"type": "range",
"id": "change_slides_speed",
"min": 3,
"max": 9,
"step": 2,
"min": 5,
"max": 10,
"step": 1,
"unit": "s",
"label": "t:sections.announcement-bar.settings.change_slides_speed.label",
"default": 5
Expand Down