ant-design-vue/components/vc-slick/src/slider.js

242 lines
6.7 KiB
JavaScript
Raw Normal View History

2018-07-20 16:13:21 +08:00
import json2mq from 'json2mq'
import Vue from 'vue'
import antRefDirective from '../../_util/antRefDirective'
import BaseMixin from '../../_util/BaseMixin'
import { cloneElement } from '../../_util/vnode'
import { getStyle } from '../../_util/props-util'
import InnerSlider from './inner-slider'
import defaultProps from './default-props'
import { canUseDOM } from './utils/innerSliderUtils'
const enquire = canUseDOM() && require('enquire.js')
Vue.use(antRefDirective)
export default {
props: {
...defaultProps,
},
mixins: [BaseMixin],
data () {
this._responsiveMediaHandlers = []
return {
breakpoint: null,
}
},
methods: {
innerSliderRefHandler (ref) {
update to antd3.8.3 (#159) * refactor: align * feat: update align to 2.4.3 * feat: update trigger 2.5.4 * feat: update tooltip 3.7.2 * fix: align * feat: update vc-calendar to 9.6.2 * feat: update vc-checkbox to 2.1.5 * feat: update vc-dialog to 7.1.8 * feat: update vc-from to 2.2.1 * feat: update vc-notification to 3.1.1 * test: update snapshots * feat: update vc-tree to 1.12.6 * feat: update vc-table to 6.2.8 * feat: update vc-upload to 2.5.1 * feat: update vc-input-number to 4.0.12 * feat: update vc-tabs to 9.2.6 * refactor: vc-menu * refactor: update vc-menu to 7.0.5 * style: remove unused * feat: update pagination to 1.16.5 * feat: add vc-progress 2.2.5 tag * feat: add vc-rate 2.4.0 tag * feat: update vc-slider to 8.6.1 * fix: tooltip error * style: delete conosle * feat: update vc-steps to 3.1.1 * add vc-switch tag 1.6.0 * feat: update upload to 2.5.1 * fix: update vc-menu * fix: update store * fix: add ref dir * fix: trigger mock shouldComponentUpdate * fix: update vc-select * revert: trigger lazyrenderbox * fix: update vc-select * fix: update vc-select * fix: update vc-select * fix: update vc-menu * fix: update vc-slick ref * update style to 3.8.2 * test: update snapshots * update vc-select * update util & affix * feat: add drawer * fix: support title add slot mode * test: update affix test * update alert * update anchor * update snapshots * fix: doc and vc-drawer * update select & auto-complete * update back-top & grid * feractor: avatar * test: add drawer test * update badge * update button * update card * update divider * feat: update vc-tabs to 9.3.6 and tabs * add afterEnter callback * update form * fix: update drawer * test: update snapshots * update modal & notification * test: update snapshots * update message * update locale-provider * update dropdown * update layout popconfirm popover * update time-picker * update menu * update date-picker * docs: update input docs * update input * update snapshots * update table * update test snapshots * feat: update progress * update checkbox * feat: update spin * update radio * docs: slider steps timeline * update list * update transfer * update collapse * update cascader * update upload
2018-09-05 21:28:54 +08:00
this.innerSlider = ref
2018-07-20 16:13:21 +08:00
},
media (query, handler) {
// javascript handler for css media query
enquire.register(query, handler)
this._responsiveMediaHandlers.push({ query, handler })
},
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.handleAutoPlay('play')
},
},
// handles responsive breakpoints
beforeMount () {
// performance monitoring
// if (process.env.NODE_ENV !== 'production') {
// const { whyDidYouUpdate } = require('why-did-you-update')
// whyDidYouUpdate(React)
// }
if (this.responsive) {
const breakpoints = this.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
const query = json2mq({ minWidth: breakpoints.slice(-1)[0] })
canUseDOM() &&
this.media(query, () => {
this.setState({ breakpoint: null })
})
}
},
beforeDestroy () {
this._responsiveMediaHandlers.forEach(function (obj) {
enquire.unregister(obj.query, obj.handler)
})
},
render () {
let settings
let newProps
if (this.breakpoint) {
newProps = this.responsive.filter(
resp => resp.breakpoint === this.breakpoint
)
settings =
newProps[0].settings === 'unslick'
? 'unslick'
: { ...this.$props, ...newProps[0].settings }
} else {
settings = { ...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 = this.$slots.default || []
// 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
}
const newChildren = []
let currentWidth = null
for (
let i = 0;
i < children.length;
i += settings.rows * settings.slidesPerRow
) {
const newSlide = []
for (
let j = i;
j < i + settings.rows * settings.slidesPerRow;
j += settings.slidesPerRow
) {
const row = []
for (let k = j; k < j + settings.slidesPerRow; k += 1) {
if (settings.variableWidth && getStyle(children[k])) {
currentWidth = getStyle(children[k]).width
}
if (k >= children.length) break
row.push(
cloneElement(children[k], {
key: 100 * i + 10 * j + k,
attrs: {
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.className || '')
return <div class={className}>{newChildren}</div>
} else if (newChildren.length <= settings.slidesToShow) {
settings.unslick = true
}
const sliderProps = {
props: {
...settings,
children: newChildren,
__propsSymbol__: Symbol(),
},
on: {
...this.$listeners,
},
directives: [{
name: 'ant-ref',
value: this.innerSliderRefHandler,
}],
scopedSlots: this.$scopedSlots,
}
return (
<InnerSlider {...sliderProps} />
)
},
}