layui/.svn/pristine/d2/d2c792b4b028d6d49f3708dd5bf8cb7d8d8a5bbd.svn-base
2022-12-09 16:41:41 +08:00

198 lines
4.3 KiB
Plaintext

<script lang="ts">
export default {
name: "LayCarousel",
};
</script>
<script setup lang="ts">
import "./index.less";
import {
withDefaults,
provide,
useSlots,
ref,
computed,
VNode,
Ref,
Component,
watch,
} from "vue";
import CarouselItem from "../carouselItem/index.vue";
export interface CarouselProps {
width?: string;
height?: string;
modelValue: string;
autoplay?: boolean;
arrow?: "always" | "hover" | "none";
anim?: "default" | "updown" | "fade";
indicator?: "inside" | "outside" | "none";
pauseOnHover?: boolean;
interval?: number;
}
const props = withDefaults(defineProps<CarouselProps>(), {
width: "100%",
height: "280px",
anim: "default",
autoplay: true,
arrow: "hover",
interval: 3000,
indicator: "inside",
pauseOnHover: true,
});
const slot = useSlots() as any;
const slots = slot.default && (slot.default() as any[]);
const active = computed({
get() {
return props.modelValue;
},
set(val) {
emit("update:modelValue", val);
},
});
const anim = computed(() => props.anim);
const emit = defineEmits(["update:modelValue", "change"]);
const change = function (id: any) {
emit("change", id);
active.value = id;
};
const childrens: Ref<VNode[]> = ref([]);
const slotsChange = ref(true);
const setItemInstanceBySlot = function (nodes: VNode[]) {
const showNodes = nodes?.filter((item: VNode) => {
return item.children != "v-if";
});
showNodes?.map((item) => {
let component = item.type as Component;
if (component.name != CarouselItem.name) {
setItemInstanceBySlot(item.children as VNode[]);
} else {
childrens.value.push(item);
}
});
};
watch(
slotsChange,
() => {
childrens.value = [];
setItemInstanceBySlot((slot.default && slot.default()) as VNode[]);
},
{ immediate: true, deep: true }
);
const sub = () => {
for (var i = 0; i < childrens.value.length; i++) {
if (childrens.value[i].props?.id === active.value) {
if (i === 0) {
active.value = childrens.value[slots.length - 1].props?.id;
} else {
active.value = childrens.value[i - 1].props?.id;
}
break;
}
}
};
const add = () => {
for (var i = 0; i < childrens.value.length; i++) {
if (childrens.value[i].props?.id === active.value) {
if (i === childrens.value.length - 1) {
active.value = childrens.value[0].props?.id;
} else {
active.value = childrens.value[i + 1].props?.id;
}
break;
}
}
};
const autoplay = () => {
for (var i = 0; i < childrens.value.length; i++) {
if (childrens.value[i].props?.id === active.value) {
if (i === childrens.value.length - 1) {
active.value = childrens.value[0].props?.id;
} else {
active.value = childrens.value[i + 1].props?.id;
}
break;
}
}
};
let intervalTimer = 0;
const cleanIntervalTimer = () => {
if (intervalTimer) {
window.clearInterval(intervalTimer);
intervalTimer = 0;
}
};
const handleMouseEnter = () => {
if (props.autoplay && props.pauseOnHover) {
cleanIntervalTimer();
}
};
const handleMouseLeave = () => {
if (props.autoplay && props.pauseOnHover) {
intervalTimer = window.setInterval(autoplay, props.interval);
}
};
watch(
() => props.autoplay,
() => {
if (props.autoplay) {
intervalTimer = window.setInterval(autoplay, props.interval);
}
},
{ immediate: true }
);
provide("active", active);
provide("slotsChange", slotsChange);
provide("anim", anim);
</script>
<template>
<div
class="layui-carousel"
:lay-anim="anim"
:lay-indicator="indicator"
:lay-arrow="arrow"
:style="{ width: width, height: height }"
@mouseenter="handleMouseEnter"
@mouseleave="handleMouseLeave"
>
<div carousel-item>
<slot></slot>
</div>
<div class="layui-carousel-ind">
<ul>
<li
v-for="(ss, index) in childrens"
:key="index"
:class="[ss.props?.id === active ? 'layui-this' : '']"
@click.stop="change(ss.props?.id)"
></li>
</ul>
</div>
<button class="layui-icon layui-carousel-arrow" lay-type="sub" @click="sub">
{{ anim === "updown" ? "" : "" }}
</button>
<button class="layui-icon layui-carousel-arrow" lay-type="add" @click="add">
{{ anim === "updown" ? "" : "" }}
</button>
</div>
</template>