249 lines
7.8 KiB
Vue
249 lines
7.8 KiB
Vue
<template>
|
|
<div :class="classes">
|
|
<button :class="arrowClasses" class="left" @click="arrowEvent(-1)">
|
|
<Icon type="chevron-left"></Icon>
|
|
</button>
|
|
<div :class="[prefixCls + '-list']">
|
|
<div :class="[prefixCls + '-track']" :style="trackStyles">
|
|
<slot></slot>
|
|
</div>
|
|
</div>
|
|
<button :class="arrowClasses" class="right" @click="arrowEvent(1)">
|
|
<Icon type="chevron-right"></Icon>
|
|
</button>
|
|
<ul :class="dotsClasses">
|
|
<template v-for="n in slides.length">
|
|
<li :class="[n - 1 === currentIndex ? prefixCls + '-active' : '']"
|
|
@click="dotsEvent('click', n - 1)"
|
|
@mouseover="dotsEvent('hover', n - 1)">
|
|
<button></button>
|
|
</li>
|
|
</template>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import Icon from '../icon/icon.vue';
|
|
import { getStyle, oneOf } from '../../utils/assist';
|
|
|
|
const prefixCls = 'ivu-carousel';
|
|
|
|
export default {
|
|
name: 'Carousel',
|
|
components: { Icon },
|
|
props: {
|
|
arrow: {
|
|
type: String,
|
|
default: 'hover',
|
|
validator (value) {
|
|
return oneOf(value, ['hover', 'always', 'never']);
|
|
}
|
|
},
|
|
autoplay: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
autoplaySpeed: {
|
|
type: Number,
|
|
default: 2000
|
|
},
|
|
easing: {
|
|
type: String,
|
|
default: 'ease'
|
|
},
|
|
dots: {
|
|
type: String,
|
|
default: 'inside',
|
|
validator (value) {
|
|
return oneOf(value, ['inside', 'outside', 'none']);
|
|
}
|
|
},
|
|
trigger: {
|
|
type: String,
|
|
default: 'click',
|
|
validator (value) {
|
|
return oneOf(value, ['click', 'hover']);
|
|
}
|
|
},
|
|
value: {
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
height: {
|
|
type: [String, Number],
|
|
default: 'auto',
|
|
validator (value) {
|
|
return value === 'auto' || Object.prototype.toString.call(value) === '[object Number]';
|
|
}
|
|
}
|
|
},
|
|
data () {
|
|
return {
|
|
prefixCls: prefixCls,
|
|
listWidth: 0,
|
|
trackWidth: 0,
|
|
trackOffset: 0,
|
|
slides: [],
|
|
slideInstances: [],
|
|
timer: null,
|
|
ready: false,
|
|
currentIndex: this.value
|
|
};
|
|
},
|
|
computed: {
|
|
classes () {
|
|
return [
|
|
`${prefixCls}`
|
|
];
|
|
},
|
|
trackStyles () {
|
|
return {
|
|
width: `${this.trackWidth}px`,
|
|
transform: `translate3d(-${this.trackOffset}px, 0px, 0px)`,
|
|
transition: `transform 500ms ${this.easing}`
|
|
};
|
|
},
|
|
arrowClasses () {
|
|
return [
|
|
`${prefixCls}-arrow`,
|
|
`${prefixCls}-arrow-${this.arrow}`
|
|
];
|
|
},
|
|
dotsClasses () {
|
|
return [
|
|
`${prefixCls}-dots`,
|
|
`${prefixCls}-dots-${this.dots}`
|
|
];
|
|
}
|
|
},
|
|
methods: {
|
|
// find option component
|
|
findChild (cb) {
|
|
const find = function (child) {
|
|
const name = child.$options.componentName;
|
|
|
|
if (name) {
|
|
cb(child);
|
|
} else if (child.$children.length) {
|
|
child.$children.forEach((innerChild) => {
|
|
find(innerChild, cb);
|
|
});
|
|
}
|
|
};
|
|
|
|
if (this.slideInstances.length || !this.$children) {
|
|
this.slideInstances.forEach((child) => {
|
|
find(child);
|
|
});
|
|
} else {
|
|
this.$children.forEach((child) => {
|
|
find(child);
|
|
});
|
|
}
|
|
},
|
|
updateSlides (init) {
|
|
let slides = [];
|
|
let index = 1;
|
|
|
|
this.findChild((child) => {
|
|
slides.push({
|
|
$el: child.$el
|
|
});
|
|
child.index = index++;
|
|
|
|
if (init) {
|
|
this.slideInstances.push(child);
|
|
}
|
|
});
|
|
|
|
this.slides = slides;
|
|
|
|
this.updatePos();
|
|
},
|
|
updatePos () {
|
|
this.findChild((child) => {
|
|
child.width = this.listWidth;
|
|
child.height = typeof this.height === 'number' ? `${this.height}px` : this.height;
|
|
});
|
|
|
|
this.trackWidth = (this.slides.length || 0) * this.listWidth;
|
|
},
|
|
// use when slot changed
|
|
slotChange () {
|
|
this.$nextTick(() => {
|
|
this.slides = [];
|
|
this.slideInstances = [];
|
|
|
|
this.updateSlides(true, true);
|
|
this.updatePos();
|
|
this.updateOffset();
|
|
});
|
|
},
|
|
handleResize () {
|
|
this.listWidth = parseInt(getStyle(this.$el, 'width'));
|
|
this.updatePos();
|
|
this.updateOffset();
|
|
},
|
|
add (offset) {
|
|
let index = this.currentIndex;
|
|
index += offset;
|
|
while (index < 0) index += this.slides.length;
|
|
index = index % this.slides.length;
|
|
this.currentIndex = index;
|
|
this.$emit('input', index);
|
|
},
|
|
arrowEvent (offset) {
|
|
this.setAutoplay();
|
|
this.add(offset);
|
|
},
|
|
dotsEvent (event, n) {
|
|
if (event === this.trigger && this.currentIndex !== n) {
|
|
this.currentIndex = n;
|
|
this.$emit('input', n);
|
|
// Reset autoplay timer when trigger be activated
|
|
this.setAutoplay();
|
|
}
|
|
},
|
|
setAutoplay () {
|
|
window.clearInterval(this.timer);
|
|
if (this.autoplay) {
|
|
this.timer = window.setInterval(() => {
|
|
this.add(1);
|
|
}, this.autoplaySpeed);
|
|
}
|
|
},
|
|
updateOffset () {
|
|
this.$nextTick(() => {
|
|
this.trackOffset = this.currentIndex * this.listWidth;
|
|
});
|
|
}
|
|
},
|
|
watch: {
|
|
autoplay () {
|
|
this.setAutoplay();
|
|
},
|
|
autoplaySpeed () {
|
|
this.setAutoplay();
|
|
},
|
|
currentIndex (val, oldVal) {
|
|
this.$emit('on-change', oldVal, val);
|
|
this.updateOffset();
|
|
},
|
|
height () {
|
|
this.updatePos();
|
|
},
|
|
value (val) {
|
|
this.currentIndex = val;
|
|
}
|
|
},
|
|
mounted () {
|
|
this.updateSlides(true);
|
|
this.handleResize();
|
|
this.setAutoplay();
|
|
window.addEventListener('resize', this.handleResize, false);
|
|
},
|
|
beforeDestroy () {
|
|
window.removeEventListener('resize', this.handleResize, false);
|
|
}
|
|
};
|
|
</script>
|