Я использую следующий код для слайдера с Siema :
https://codepen.io/pawelgrzybek/pen/boQQWy
, который использует расширяющие классы для добавления точек к слайду.Все работает хорошо, за исключением того, что на нашем сайте теперь есть проблемы с Googles Mobile Friendly Test, использующим ES6, так как он выдает ошибку:
Uncaught SyntaxError: Unexpected reserved word
в этой строке:
class SiemaWithDots extends Siema {
Есть лиКак я могу сделать это совместимым с ES5?
Код можно увидеть ниже:
// instantiate new extended Siema
const mySiemaWithDots = new SiemaWithDots({
// on init trigger method created above
onInit: function(){
this.addDots();
this.updateDots();
},
// on change trigger method created above
onChange: function(){
this.updateDots()
},
});
// extend a Siema class by two methods
// addDots - to create a markup for dots
// updateDots - to update classes on dots on change callback
class SiemaWithDots extends Siema {
addDots() {
// create a contnier for all dots
// add a class 'dots' for styling reason
this.dots = document.createElement('div');
this.dots.classList.add('dots');
// loop through slides to create a number of dots
for(let i = 0; i < this.innerElements.length; i++) {
// create a dot
const dot = document.createElement('button');
// add a class to dot
dot.classList.add('dots__item');
// add an event handler to each of them
dot.addEventListener('click', () => {
this.goTo(i);
})
// append dot to a container for all of them
this.dots.appendChild(dot);
}
// add the container full of dots after selector
this.selector.parentNode.insertBefore(this.dots, this.selector.nextSibling);
}
updateDots() {
// loop through all dots
for(let i = 0; i < this.dots.querySelectorAll('button').length; i++) {
// if current dot matches currentSlide prop, add a class to it, remove otherwise
const addOrRemove = this.currentSlide === i ? 'add' : 'remove';
this.dots.querySelectorAll('button')[i].classList[addOrRemove]('dots__item--active');
}
}
}