File size: 6,535 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
"use strict";
import React from "react";
import { InnerSlider } from "./inner-slider";
import json2mq from "json2mq";
import defaultProps from "./default-props";
import { canUseDOM, filterSettings } from "./utils/innerSliderUtils";
export default class Slider extends React.Component {
constructor(props) {
super(props);
this.state = {
breakpoint: null
};
this._responsiveMediaHandlers = [];
}
innerSliderRefHandler = ref => (this.innerSlider = ref);
media(query, handler) {
// javascript handler for css media query
const mql = window.matchMedia(query);
const listener = ({ matches }) => {
if (matches) {
handler();
}
};
mql.addListener(listener);
this._responsiveMediaHandlers.push({ mql, query, listener });
}
// handles responsive breakpoints
componentDidMount() {
// performance monitoring
//if (process.env.NODE_ENV !== 'production') {
//const { whyDidYouUpdate } = require('why-did-you-update')
//whyDidYouUpdate(React)
//}
if (this.props.responsive) {
let breakpoints = this.props.responsive.map(
breakpt => breakpt.breakpoint
);
// sort them in increasing order of their numerical value
breakpoints.sort((x, y) => x - y);
breakpoints.forEach((breakpoint, index) => {
// media query for each breakpoint
let bQuery;
if (index === 0) {
bQuery = json2mq({ minWidth: 0, maxWidth: breakpoint });
} else {
bQuery = json2mq({
minWidth: breakpoints[index - 1] + 1,
maxWidth: breakpoint
});
}
// when not using server side rendering
canUseDOM() &&
this.media(bQuery, () => {
this.setState({ breakpoint: breakpoint });
});
});
// Register media query for full screen. Need to support resize from small to large
// convert javascript object to media query string
let query = json2mq({ minWidth: breakpoints.slice(-1)[0] });
canUseDOM() &&
this.media(query, () => {
this.setState({ breakpoint: null });
});
}
}
componentWillUnmount() {
this._responsiveMediaHandlers.forEach(function(obj) {
obj.mql.removeListener(obj.listener);
});
}
slickPrev = () => this.innerSlider.slickPrev();
slickNext = () => this.innerSlider.slickNext();
slickGoTo = (slide, dontAnimate = false) =>
this.innerSlider.slickGoTo(slide, dontAnimate);
slickPause = () => this.innerSlider.pause("paused");
slickPlay = () => this.innerSlider.autoPlay("play");
render() {
var settings;
var newProps;
if (this.state.breakpoint) {
newProps = this.props.responsive.filter(
resp => resp.breakpoint === this.state.breakpoint
);
settings =
newProps[0].settings === "unslick"
? "unslick"
: { ...defaultProps, ...this.props, ...newProps[0].settings };
} else {
settings = { ...defaultProps, ...this.props };
}
// force scrolling by one if centerMode is on
if (settings.centerMode) {
if (
settings.slidesToScroll > 1 &&
process.env.NODE_ENV !== "production"
) {
console.warn(
`slidesToScroll should be equal to 1 in centerMode, you are using ${settings.slidesToScroll}`
);
}
settings.slidesToScroll = 1;
}
// force showing one slide and scrolling by one if the fade mode is on
if (settings.fade) {
if (settings.slidesToShow > 1 && process.env.NODE_ENV !== "production") {
console.warn(
`slidesToShow should be equal to 1 when fade is true, you're using ${settings.slidesToShow}`
);
}
if (
settings.slidesToScroll > 1 &&
process.env.NODE_ENV !== "production"
) {
console.warn(
`slidesToScroll should be equal to 1 when fade is true, you're using ${settings.slidesToScroll}`
);
}
settings.slidesToShow = 1;
settings.slidesToScroll = 1;
}
// makes sure that children is an array, even when there is only 1 child
let children = React.Children.toArray(this.props.children);
// Children may contain false or null, so we should filter them
// children may also contain string filled with spaces (in certain cases where we use jsx strings)
children = children.filter(child => {
if (typeof child === "string") {
return !!child.trim();
}
return !!child;
});
// rows and slidesPerRow logic is handled here
if (
settings.variableWidth &&
(settings.rows > 1 || settings.slidesPerRow > 1)
) {
console.warn(
`variableWidth is not supported in case of rows > 1 or slidesPerRow > 1`
);
settings.variableWidth = false;
}
let newChildren = [];
let currentWidth = null;
for (
let i = 0;
i < children.length;
i += settings.rows * settings.slidesPerRow
) {
let newSlide = [];
for (
let j = i;
j < i + settings.rows * settings.slidesPerRow;
j += settings.slidesPerRow
) {
let row = [];
for (let k = j; k < j + settings.slidesPerRow; k += 1) {
if (settings.variableWidth && children[k].props.style) {
currentWidth = children[k].props.style.width;
}
if (k >= children.length) break;
row.push(
React.cloneElement(children[k], {
key: 100 * i + 10 * j + k,
tabIndex: -1,
style: {
width: `${100 / settings.slidesPerRow}%`,
display: "inline-block"
}
})
);
}
newSlide.push(<div key={10 * i + j}>{row}</div>);
}
if (settings.variableWidth) {
newChildren.push(
<div key={i} style={{ width: currentWidth }}>
{newSlide}
</div>
);
} else {
newChildren.push(<div key={i}>{newSlide}</div>);
}
}
if (settings === "unslick") {
const className = "regular slider " + (this.props.className || "");
return <div className={className}>{children}</div>;
} else if (newChildren.length <= settings.slidesToShow) {
settings.unslick = true;
}
return (
<InnerSlider
style={this.props.style}
ref={this.innerSliderRefHandler}
{...filterSettings(settings)}
>
{newChildren}
</InnerSlider>
);
}
}
|