|
|
"use strict"; |
|
|
|
|
|
import React from "react"; |
|
|
import initialState from "./initial-state"; |
|
|
import debounce from "lodash.debounce"; |
|
|
import classnames from "classnames"; |
|
|
import { |
|
|
getOnDemandLazySlides, |
|
|
extractObject, |
|
|
initializedState, |
|
|
getHeight, |
|
|
canGoNext, |
|
|
slideHandler, |
|
|
changeSlide, |
|
|
keyHandler, |
|
|
swipeStart, |
|
|
swipeMove, |
|
|
swipeEnd, |
|
|
getPreClones, |
|
|
getPostClones, |
|
|
getTrackLeft, |
|
|
getTrackCSS |
|
|
} from "./utils/innerSliderUtils"; |
|
|
|
|
|
import { Track } from "./track"; |
|
|
import { Dots } from "./dots"; |
|
|
import { PrevArrow, NextArrow } from "./arrows"; |
|
|
import ResizeObserver from "resize-observer-polyfill"; |
|
|
|
|
|
export class InnerSlider extends React.Component { |
|
|
constructor(props) { |
|
|
super(props); |
|
|
this.list = null; |
|
|
this.track = null; |
|
|
this.state = { |
|
|
...initialState, |
|
|
currentSlide: this.props.initialSlide, |
|
|
targetSlide: this.props.initialSlide ? this.props.initialSlide : 0, |
|
|
slideCount: React.Children.count(this.props.children) |
|
|
}; |
|
|
this.callbackTimers = []; |
|
|
this.clickable = true; |
|
|
this.debouncedResize = null; |
|
|
const ssrState = this.ssrInit(); |
|
|
this.state = { ...this.state, ...ssrState }; |
|
|
} |
|
|
listRefHandler = ref => (this.list = ref); |
|
|
trackRefHandler = ref => (this.track = ref); |
|
|
adaptHeight = () => { |
|
|
if (this.props.adaptiveHeight && this.list) { |
|
|
const elem = this.list.querySelector( |
|
|
`[data-index="${this.state.currentSlide}"]` |
|
|
); |
|
|
this.list.style.height = getHeight(elem) + "px"; |
|
|
} |
|
|
}; |
|
|
componentDidMount = () => { |
|
|
this.props.onInit && this.props.onInit(); |
|
|
if (this.props.lazyLoad) { |
|
|
let slidesToLoad = getOnDemandLazySlides({ |
|
|
...this.props, |
|
|
...this.state |
|
|
}); |
|
|
if (slidesToLoad.length > 0) { |
|
|
this.setState(prevState => ({ |
|
|
lazyLoadedList: prevState.lazyLoadedList.concat(slidesToLoad) |
|
|
})); |
|
|
if (this.props.onLazyLoad) { |
|
|
this.props.onLazyLoad(slidesToLoad); |
|
|
} |
|
|
} |
|
|
} |
|
|
let spec = { listRef: this.list, trackRef: this.track, ...this.props }; |
|
|
this.updateState(spec, true, () => { |
|
|
this.adaptHeight(); |
|
|
this.props.autoplay && this.autoPlay("update"); |
|
|
}); |
|
|
if (this.props.lazyLoad === "progressive") { |
|
|
this.lazyLoadTimer = setInterval(this.progressiveLazyLoad, 1000); |
|
|
} |
|
|
this.ro = new ResizeObserver(() => { |
|
|
if (this.state.animating) { |
|
|
this.onWindowResized(false); |
|
|
this.callbackTimers.push( |
|
|
setTimeout(() => this.onWindowResized(), this.props.speed) |
|
|
); |
|
|
} else { |
|
|
this.onWindowResized(); |
|
|
} |
|
|
}); |
|
|
this.ro.observe(this.list); |
|
|
document.querySelectorAll && |
|
|
Array.prototype.forEach.call( |
|
|
document.querySelectorAll(".slick-slide"), |
|
|
slide => { |
|
|
slide.onfocus = this.props.pauseOnFocus ? this.onSlideFocus : null; |
|
|
slide.onblur = this.props.pauseOnFocus ? this.onSlideBlur : null; |
|
|
} |
|
|
); |
|
|
if (window.addEventListener) { |
|
|
window.addEventListener("resize", this.onWindowResized); |
|
|
} else { |
|
|
window.attachEvent("onresize", this.onWindowResized); |
|
|
} |
|
|
}; |
|
|
componentWillUnmount = () => { |
|
|
if (this.animationEndCallback) { |
|
|
clearTimeout(this.animationEndCallback); |
|
|
} |
|
|
if (this.lazyLoadTimer) { |
|
|
clearInterval(this.lazyLoadTimer); |
|
|
} |
|
|
if (this.callbackTimers.length) { |
|
|
this.callbackTimers.forEach(timer => clearTimeout(timer)); |
|
|
this.callbackTimers = []; |
|
|
} |
|
|
if (window.addEventListener) { |
|
|
window.removeEventListener("resize", this.onWindowResized); |
|
|
} else { |
|
|
window.detachEvent("onresize", this.onWindowResized); |
|
|
} |
|
|
if (this.autoplayTimer) { |
|
|
clearInterval(this.autoplayTimer); |
|
|
} |
|
|
this.ro.disconnect(); |
|
|
}; |
|
|
|
|
|
didPropsChange(prevProps) { |
|
|
let setTrackStyle = false; |
|
|
for (let key of Object.keys(this.props)) { |
|
|
if (!prevProps.hasOwnProperty(key)) { |
|
|
setTrackStyle = true; |
|
|
break; |
|
|
} |
|
|
if ( |
|
|
typeof prevProps[key] === "object" || |
|
|
typeof prevProps[key] === "function" || |
|
|
isNaN(prevProps[key]) |
|
|
) { |
|
|
continue; |
|
|
} |
|
|
if (prevProps[key] !== this.props[key]) { |
|
|
setTrackStyle = true; |
|
|
break; |
|
|
} |
|
|
} |
|
|
return ( |
|
|
setTrackStyle || |
|
|
React.Children.count(this.props.children) !== |
|
|
React.Children.count(prevProps.children) |
|
|
); |
|
|
} |
|
|
|
|
|
componentDidUpdate = prevProps => { |
|
|
this.checkImagesLoad(); |
|
|
this.props.onReInit && this.props.onReInit(); |
|
|
if (this.props.lazyLoad) { |
|
|
let slidesToLoad = getOnDemandLazySlides({ |
|
|
...this.props, |
|
|
...this.state |
|
|
}); |
|
|
if (slidesToLoad.length > 0) { |
|
|
this.setState(prevState => ({ |
|
|
lazyLoadedList: prevState.lazyLoadedList.concat(slidesToLoad) |
|
|
})); |
|
|
if (this.props.onLazyLoad) { |
|
|
this.props.onLazyLoad(slidesToLoad); |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
this.adaptHeight(); |
|
|
let spec = { |
|
|
listRef: this.list, |
|
|
trackRef: this.track, |
|
|
...this.props, |
|
|
...this.state |
|
|
}; |
|
|
const setTrackStyle = this.didPropsChange(prevProps); |
|
|
setTrackStyle && |
|
|
this.updateState(spec, setTrackStyle, () => { |
|
|
if ( |
|
|
this.state.currentSlide >= React.Children.count(this.props.children) |
|
|
) { |
|
|
this.changeSlide({ |
|
|
message: "index", |
|
|
index: |
|
|
React.Children.count(this.props.children) - |
|
|
this.props.slidesToShow, |
|
|
currentSlide: this.state.currentSlide |
|
|
}); |
|
|
} |
|
|
if (this.props.autoplay) { |
|
|
this.autoPlay("update"); |
|
|
} else { |
|
|
this.pause("paused"); |
|
|
} |
|
|
}); |
|
|
}; |
|
|
onWindowResized = setTrackStyle => { |
|
|
if (this.debouncedResize) this.debouncedResize.cancel(); |
|
|
this.debouncedResize = debounce(() => this.resizeWindow(setTrackStyle), 50); |
|
|
this.debouncedResize(); |
|
|
}; |
|
|
resizeWindow = (setTrackStyle = true) => { |
|
|
const isTrackMounted = Boolean(this.track && this.track.node); |
|
|
|
|
|
if (!isTrackMounted) return; |
|
|
let spec = { |
|
|
listRef: this.list, |
|
|
trackRef: this.track, |
|
|
...this.props, |
|
|
...this.state |
|
|
}; |
|
|
this.updateState(spec, setTrackStyle, () => { |
|
|
if (this.props.autoplay) this.autoPlay("update"); |
|
|
else this.pause("paused"); |
|
|
}); |
|
|
|
|
|
this.setState({ |
|
|
animating: false |
|
|
}); |
|
|
clearTimeout(this.animationEndCallback); |
|
|
delete this.animationEndCallback; |
|
|
}; |
|
|
updateState = (spec, setTrackStyle, callback) => { |
|
|
let updatedState = initializedState(spec); |
|
|
spec = { ...spec, ...updatedState, slideIndex: updatedState.currentSlide }; |
|
|
let targetLeft = getTrackLeft(spec); |
|
|
spec = { ...spec, left: targetLeft }; |
|
|
let trackStyle = getTrackCSS(spec); |
|
|
if ( |
|
|
setTrackStyle || |
|
|
React.Children.count(this.props.children) !== |
|
|
React.Children.count(spec.children) |
|
|
) { |
|
|
updatedState["trackStyle"] = trackStyle; |
|
|
} |
|
|
this.setState(updatedState, callback); |
|
|
}; |
|
|
|
|
|
ssrInit = () => { |
|
|
if (this.props.variableWidth) { |
|
|
let trackWidth = 0, |
|
|
trackLeft = 0; |
|
|
let childrenWidths = []; |
|
|
let preClones = getPreClones({ |
|
|
...this.props, |
|
|
...this.state, |
|
|
slideCount: this.props.children.length |
|
|
}); |
|
|
let postClones = getPostClones({ |
|
|
...this.props, |
|
|
...this.state, |
|
|
slideCount: this.props.children.length |
|
|
}); |
|
|
this.props.children.forEach(child => { |
|
|
childrenWidths.push(child.props.style.width); |
|
|
trackWidth += child.props.style.width; |
|
|
}); |
|
|
for (let i = 0; i < preClones; i++) { |
|
|
trackLeft += childrenWidths[childrenWidths.length - 1 - i]; |
|
|
trackWidth += childrenWidths[childrenWidths.length - 1 - i]; |
|
|
} |
|
|
for (let i = 0; i < postClones; i++) { |
|
|
trackWidth += childrenWidths[i]; |
|
|
} |
|
|
for (let i = 0; i < this.state.currentSlide; i++) { |
|
|
trackLeft += childrenWidths[i]; |
|
|
} |
|
|
let trackStyle = { |
|
|
width: trackWidth + "px", |
|
|
left: -trackLeft + "px" |
|
|
}; |
|
|
if (this.props.centerMode) { |
|
|
let currentWidth = `${childrenWidths[this.state.currentSlide]}px`; |
|
|
trackStyle.left = `calc(${trackStyle.left} + (100% - ${currentWidth}) / 2 ) `; |
|
|
} |
|
|
return { |
|
|
trackStyle |
|
|
}; |
|
|
} |
|
|
let childrenCount = React.Children.count(this.props.children); |
|
|
const spec = { ...this.props, ...this.state, slideCount: childrenCount }; |
|
|
let slideCount = getPreClones(spec) + getPostClones(spec) + childrenCount; |
|
|
let trackWidth = (100 / this.props.slidesToShow) * slideCount; |
|
|
let slideWidth = 100 / slideCount; |
|
|
let trackLeft = |
|
|
(-slideWidth * |
|
|
(getPreClones(spec) + this.state.currentSlide) * |
|
|
trackWidth) / |
|
|
100; |
|
|
if (this.props.centerMode) { |
|
|
trackLeft += (100 - (slideWidth * trackWidth) / 100) / 2; |
|
|
} |
|
|
let trackStyle = { |
|
|
width: trackWidth + "%", |
|
|
left: trackLeft + "%" |
|
|
}; |
|
|
return { |
|
|
slideWidth: slideWidth + "%", |
|
|
trackStyle: trackStyle |
|
|
}; |
|
|
}; |
|
|
checkImagesLoad = () => { |
|
|
let images = |
|
|
(this.list && |
|
|
this.list.querySelectorAll && |
|
|
this.list.querySelectorAll(".slick-slide img")) || |
|
|
[]; |
|
|
let imagesCount = images.length, |
|
|
loadedCount = 0; |
|
|
Array.prototype.forEach.call(images, image => { |
|
|
const handler = () => |
|
|
++loadedCount && loadedCount >= imagesCount && this.onWindowResized(); |
|
|
if (!image.onclick) { |
|
|
image.onclick = () => image.parentNode.focus(); |
|
|
} else { |
|
|
const prevClickHandler = image.onclick; |
|
|
image.onclick = e => { |
|
|
prevClickHandler(e); |
|
|
image.parentNode.focus(); |
|
|
}; |
|
|
} |
|
|
if (!image.onload) { |
|
|
if (this.props.lazyLoad) { |
|
|
image.onload = () => { |
|
|
this.adaptHeight(); |
|
|
this.callbackTimers.push( |
|
|
setTimeout(this.onWindowResized, this.props.speed) |
|
|
); |
|
|
}; |
|
|
} else { |
|
|
image.onload = handler; |
|
|
image.onerror = () => { |
|
|
handler(); |
|
|
this.props.onLazyLoadError && this.props.onLazyLoadError(); |
|
|
}; |
|
|
} |
|
|
} |
|
|
}); |
|
|
}; |
|
|
progressiveLazyLoad = () => { |
|
|
let slidesToLoad = []; |
|
|
const spec = { ...this.props, ...this.state }; |
|
|
for ( |
|
|
let index = this.state.currentSlide; |
|
|
index < this.state.slideCount + getPostClones(spec); |
|
|
index++ |
|
|
) { |
|
|
if (this.state.lazyLoadedList.indexOf(index) < 0) { |
|
|
slidesToLoad.push(index); |
|
|
break; |
|
|
} |
|
|
} |
|
|
for ( |
|
|
let index = this.state.currentSlide - 1; |
|
|
index >= -getPreClones(spec); |
|
|
index-- |
|
|
) { |
|
|
if (this.state.lazyLoadedList.indexOf(index) < 0) { |
|
|
slidesToLoad.push(index); |
|
|
break; |
|
|
} |
|
|
} |
|
|
if (slidesToLoad.length > 0) { |
|
|
this.setState(state => ({ |
|
|
lazyLoadedList: state.lazyLoadedList.concat(slidesToLoad) |
|
|
})); |
|
|
if (this.props.onLazyLoad) { |
|
|
this.props.onLazyLoad(slidesToLoad); |
|
|
} |
|
|
} else { |
|
|
if (this.lazyLoadTimer) { |
|
|
clearInterval(this.lazyLoadTimer); |
|
|
delete this.lazyLoadTimer; |
|
|
} |
|
|
} |
|
|
}; |
|
|
slideHandler = (index, dontAnimate = false) => { |
|
|
const { |
|
|
asNavFor, |
|
|
beforeChange, |
|
|
onLazyLoad, |
|
|
speed, |
|
|
afterChange |
|
|
} = this.props; |
|
|
|
|
|
const currentSlide = this.state.currentSlide; |
|
|
let { state, nextState } = slideHandler({ |
|
|
index, |
|
|
...this.props, |
|
|
...this.state, |
|
|
trackRef: this.track, |
|
|
useCSS: this.props.useCSS && !dontAnimate |
|
|
}); |
|
|
if (!state) return; |
|
|
beforeChange && beforeChange(currentSlide, state.currentSlide); |
|
|
let slidesToLoad = state.lazyLoadedList.filter( |
|
|
value => this.state.lazyLoadedList.indexOf(value) < 0 |
|
|
); |
|
|
onLazyLoad && slidesToLoad.length > 0 && onLazyLoad(slidesToLoad); |
|
|
if (!this.props.waitForAnimate && this.animationEndCallback) { |
|
|
clearTimeout(this.animationEndCallback); |
|
|
afterChange && afterChange(currentSlide); |
|
|
delete this.animationEndCallback; |
|
|
} |
|
|
this.setState(state, () => { |
|
|
|
|
|
if (asNavFor && this.asNavForIndex !== index) { |
|
|
this.asNavForIndex = index; |
|
|
asNavFor.innerSlider.slideHandler(index); |
|
|
} |
|
|
if (!nextState) return; |
|
|
this.animationEndCallback = setTimeout(() => { |
|
|
const { animating, ...firstBatch } = nextState; |
|
|
this.setState(firstBatch, () => { |
|
|
this.callbackTimers.push( |
|
|
setTimeout(() => this.setState({ animating }), 10) |
|
|
); |
|
|
afterChange && afterChange(state.currentSlide); |
|
|
delete this.animationEndCallback; |
|
|
}); |
|
|
}, speed); |
|
|
}); |
|
|
}; |
|
|
changeSlide = (options, dontAnimate = false) => { |
|
|
const spec = { ...this.props, ...this.state }; |
|
|
let targetSlide = changeSlide(spec, options); |
|
|
if (targetSlide !== 0 && !targetSlide) return; |
|
|
if (dontAnimate === true) { |
|
|
this.slideHandler(targetSlide, dontAnimate); |
|
|
} else { |
|
|
this.slideHandler(targetSlide); |
|
|
} |
|
|
this.props.autoplay && this.autoPlay("update"); |
|
|
if (this.props.focusOnSelect) { |
|
|
const nodes = this.list.querySelectorAll(".slick-current"); |
|
|
nodes[0] && nodes[0].focus(); |
|
|
} |
|
|
}; |
|
|
clickHandler = e => { |
|
|
if (this.clickable === false) { |
|
|
e.stopPropagation(); |
|
|
e.preventDefault(); |
|
|
} |
|
|
this.clickable = true; |
|
|
}; |
|
|
keyHandler = e => { |
|
|
let dir = keyHandler(e, this.props.accessibility, this.props.rtl); |
|
|
dir !== "" && this.changeSlide({ message: dir }); |
|
|
}; |
|
|
selectHandler = options => { |
|
|
this.changeSlide(options); |
|
|
}; |
|
|
disableBodyScroll = () => { |
|
|
const preventDefault = e => { |
|
|
e = e || window.event; |
|
|
if (e.preventDefault) e.preventDefault(); |
|
|
e.returnValue = false; |
|
|
}; |
|
|
window.ontouchmove = preventDefault; |
|
|
}; |
|
|
enableBodyScroll = () => { |
|
|
window.ontouchmove = null; |
|
|
}; |
|
|
swipeStart = e => { |
|
|
if (this.props.verticalSwiping) { |
|
|
this.disableBodyScroll(); |
|
|
} |
|
|
let state = swipeStart(e, this.props.swipe, this.props.draggable); |
|
|
state !== "" && this.setState(state); |
|
|
}; |
|
|
swipeMove = e => { |
|
|
let state = swipeMove(e, { |
|
|
...this.props, |
|
|
...this.state, |
|
|
trackRef: this.track, |
|
|
listRef: this.list, |
|
|
slideIndex: this.state.currentSlide |
|
|
}); |
|
|
if (!state) return; |
|
|
if (state["swiping"]) { |
|
|
this.clickable = false; |
|
|
} |
|
|
this.setState(state); |
|
|
}; |
|
|
swipeEnd = e => { |
|
|
let state = swipeEnd(e, { |
|
|
...this.props, |
|
|
...this.state, |
|
|
trackRef: this.track, |
|
|
listRef: this.list, |
|
|
slideIndex: this.state.currentSlide |
|
|
}); |
|
|
if (!state) return; |
|
|
let triggerSlideHandler = state["triggerSlideHandler"]; |
|
|
delete state["triggerSlideHandler"]; |
|
|
this.setState(state); |
|
|
if (triggerSlideHandler === undefined) return; |
|
|
this.slideHandler(triggerSlideHandler); |
|
|
if (this.props.verticalSwiping) { |
|
|
this.enableBodyScroll(); |
|
|
} |
|
|
}; |
|
|
touchEnd = e => { |
|
|
this.swipeEnd(e); |
|
|
this.clickable = true; |
|
|
}; |
|
|
slickPrev = () => { |
|
|
|
|
|
|
|
|
|
|
|
this.callbackTimers.push( |
|
|
setTimeout(() => this.changeSlide({ message: "previous" }), 0) |
|
|
); |
|
|
}; |
|
|
slickNext = () => { |
|
|
this.callbackTimers.push( |
|
|
setTimeout(() => this.changeSlide({ message: "next" }), 0) |
|
|
); |
|
|
}; |
|
|
slickGoTo = (slide, dontAnimate = false) => { |
|
|
slide = Number(slide); |
|
|
if (isNaN(slide)) return ""; |
|
|
this.callbackTimers.push( |
|
|
setTimeout( |
|
|
() => |
|
|
this.changeSlide( |
|
|
{ |
|
|
message: "index", |
|
|
index: slide, |
|
|
currentSlide: this.state.currentSlide |
|
|
}, |
|
|
dontAnimate |
|
|
), |
|
|
0 |
|
|
) |
|
|
); |
|
|
}; |
|
|
play = () => { |
|
|
var nextIndex; |
|
|
if (this.props.rtl) { |
|
|
nextIndex = this.state.currentSlide - this.props.slidesToScroll; |
|
|
} else { |
|
|
if (canGoNext({ ...this.props, ...this.state })) { |
|
|
nextIndex = this.state.currentSlide + this.props.slidesToScroll; |
|
|
} else { |
|
|
return false; |
|
|
} |
|
|
} |
|
|
|
|
|
this.slideHandler(nextIndex); |
|
|
}; |
|
|
|
|
|
autoPlay = playType => { |
|
|
if (this.autoplayTimer) { |
|
|
clearInterval(this.autoplayTimer); |
|
|
} |
|
|
const autoplaying = this.state.autoplaying; |
|
|
if (playType === "update") { |
|
|
if ( |
|
|
autoplaying === "hovered" || |
|
|
autoplaying === "focused" || |
|
|
autoplaying === "paused" |
|
|
) { |
|
|
return; |
|
|
} |
|
|
} else if (playType === "leave") { |
|
|
if (autoplaying === "paused" || autoplaying === "focused") { |
|
|
return; |
|
|
} |
|
|
} else if (playType === "blur") { |
|
|
if (autoplaying === "paused" || autoplaying === "hovered") { |
|
|
return; |
|
|
} |
|
|
} |
|
|
this.autoplayTimer = setInterval(this.play, this.props.autoplaySpeed + 50); |
|
|
this.setState({ autoplaying: "playing" }); |
|
|
}; |
|
|
pause = pauseType => { |
|
|
if (this.autoplayTimer) { |
|
|
clearInterval(this.autoplayTimer); |
|
|
this.autoplayTimer = null; |
|
|
} |
|
|
const autoplaying = this.state.autoplaying; |
|
|
if (pauseType === "paused") { |
|
|
this.setState({ autoplaying: "paused" }); |
|
|
} else if (pauseType === "focused") { |
|
|
if (autoplaying === "hovered" || autoplaying === "playing") { |
|
|
this.setState({ autoplaying: "focused" }); |
|
|
} |
|
|
} else { |
|
|
|
|
|
if (autoplaying === "playing") { |
|
|
this.setState({ autoplaying: "hovered" }); |
|
|
} |
|
|
} |
|
|
}; |
|
|
onDotsOver = () => this.props.autoplay && this.pause("hovered"); |
|
|
onDotsLeave = () => |
|
|
this.props.autoplay && |
|
|
this.state.autoplaying === "hovered" && |
|
|
this.autoPlay("leave"); |
|
|
onTrackOver = () => this.props.autoplay && this.pause("hovered"); |
|
|
onTrackLeave = () => |
|
|
this.props.autoplay && |
|
|
this.state.autoplaying === "hovered" && |
|
|
this.autoPlay("leave"); |
|
|
onSlideFocus = () => this.props.autoplay && this.pause("focused"); |
|
|
onSlideBlur = () => |
|
|
this.props.autoplay && |
|
|
this.state.autoplaying === "focused" && |
|
|
this.autoPlay("blur"); |
|
|
|
|
|
render = () => { |
|
|
var className = classnames("slick-slider", this.props.className, { |
|
|
"slick-vertical": this.props.vertical, |
|
|
"slick-initialized": true |
|
|
}); |
|
|
let spec = { ...this.props, ...this.state }; |
|
|
let trackProps = extractObject(spec, [ |
|
|
"fade", |
|
|
"cssEase", |
|
|
"speed", |
|
|
"infinite", |
|
|
"centerMode", |
|
|
"focusOnSelect", |
|
|
"currentSlide", |
|
|
"lazyLoad", |
|
|
"lazyLoadedList", |
|
|
"rtl", |
|
|
"slideWidth", |
|
|
"slideHeight", |
|
|
"listHeight", |
|
|
"vertical", |
|
|
"slidesToShow", |
|
|
"slidesToScroll", |
|
|
"slideCount", |
|
|
"trackStyle", |
|
|
"variableWidth", |
|
|
"unslick", |
|
|
"centerPadding", |
|
|
"targetSlide", |
|
|
"useCSS" |
|
|
]); |
|
|
const { pauseOnHover } = this.props; |
|
|
trackProps = { |
|
|
...trackProps, |
|
|
onMouseEnter: pauseOnHover ? this.onTrackOver : null, |
|
|
onMouseLeave: pauseOnHover ? this.onTrackLeave : null, |
|
|
onMouseOver: pauseOnHover ? this.onTrackOver : null, |
|
|
focusOnSelect: |
|
|
this.props.focusOnSelect && this.clickable ? this.selectHandler : null |
|
|
}; |
|
|
|
|
|
var dots; |
|
|
if ( |
|
|
this.props.dots === true && |
|
|
this.state.slideCount >= this.props.slidesToShow |
|
|
) { |
|
|
let dotProps = extractObject(spec, [ |
|
|
"dotsClass", |
|
|
"slideCount", |
|
|
"slidesToShow", |
|
|
"currentSlide", |
|
|
"slidesToScroll", |
|
|
"clickHandler", |
|
|
"children", |
|
|
"customPaging", |
|
|
"infinite", |
|
|
"appendDots" |
|
|
]); |
|
|
const { pauseOnDotsHover } = this.props; |
|
|
dotProps = { |
|
|
...dotProps, |
|
|
clickHandler: this.changeSlide, |
|
|
onMouseEnter: pauseOnDotsHover ? this.onDotsLeave : null, |
|
|
onMouseOver: pauseOnDotsHover ? this.onDotsOver : null, |
|
|
onMouseLeave: pauseOnDotsHover ? this.onDotsLeave : null |
|
|
}; |
|
|
dots = <Dots {...dotProps} />; |
|
|
} |
|
|
|
|
|
var prevArrow, nextArrow; |
|
|
let arrowProps = extractObject(spec, [ |
|
|
"infinite", |
|
|
"centerMode", |
|
|
"currentSlide", |
|
|
"slideCount", |
|
|
"slidesToShow", |
|
|
"prevArrow", |
|
|
"nextArrow" |
|
|
]); |
|
|
arrowProps.clickHandler = this.changeSlide; |
|
|
|
|
|
if (this.props.arrows) { |
|
|
prevArrow = <PrevArrow {...arrowProps} />; |
|
|
nextArrow = <NextArrow {...arrowProps} />; |
|
|
} |
|
|
|
|
|
var verticalHeightStyle = null; |
|
|
|
|
|
if (this.props.vertical) { |
|
|
verticalHeightStyle = { |
|
|
height: this.state.listHeight |
|
|
}; |
|
|
} |
|
|
|
|
|
var centerPaddingStyle = null; |
|
|
|
|
|
if (this.props.vertical === false) { |
|
|
if (this.props.centerMode === true) { |
|
|
centerPaddingStyle = { |
|
|
padding: "0px " + this.props.centerPadding |
|
|
}; |
|
|
} |
|
|
} else { |
|
|
if (this.props.centerMode === true) { |
|
|
centerPaddingStyle = { |
|
|
padding: this.props.centerPadding + " 0px" |
|
|
}; |
|
|
} |
|
|
} |
|
|
|
|
|
const listStyle = { ...verticalHeightStyle, ...centerPaddingStyle }; |
|
|
const touchMove = this.props.touchMove; |
|
|
let listProps = { |
|
|
className: "slick-list", |
|
|
style: listStyle, |
|
|
onClick: this.clickHandler, |
|
|
onMouseDown: touchMove ? this.swipeStart : null, |
|
|
onMouseMove: this.state.dragging && touchMove ? this.swipeMove : null, |
|
|
onMouseUp: touchMove ? this.swipeEnd : null, |
|
|
onMouseLeave: this.state.dragging && touchMove ? this.swipeEnd : null, |
|
|
onTouchStart: touchMove ? this.swipeStart : null, |
|
|
onTouchMove: this.state.dragging && touchMove ? this.swipeMove : null, |
|
|
onTouchEnd: touchMove ? this.touchEnd : null, |
|
|
onTouchCancel: this.state.dragging && touchMove ? this.swipeEnd : null, |
|
|
onKeyDown: this.props.accessibility ? this.keyHandler : null |
|
|
}; |
|
|
|
|
|
let innerSliderProps = { |
|
|
className: className, |
|
|
dir: "ltr", |
|
|
style: this.props.style |
|
|
}; |
|
|
|
|
|
if (this.props.unslick) { |
|
|
listProps = { className: "slick-list" }; |
|
|
innerSliderProps = { className, style: this.props.style }; |
|
|
} |
|
|
return ( |
|
|
<div {...innerSliderProps}> |
|
|
{!this.props.unslick ? prevArrow : ""} |
|
|
<div ref={this.listRefHandler} {...listProps}> |
|
|
<Track ref={this.trackRefHandler} {...trackProps}> |
|
|
{this.props.children} |
|
|
</Track> |
|
|
</div> |
|
|
{!this.props.unslick ? nextArrow : ""} |
|
|
{!this.props.unslick ? dots : ""} |
|
|
</div> |
|
|
); |
|
|
}; |
|
|
} |
|
|
|