This commit is contained in:
2022-12-09 16:41:41 +08:00
parent c1cce5a7c2
commit ff7aa8774f
2003 changed files with 156639 additions and 140 deletions

View File

@@ -0,0 +1,57 @@
import path from "path";
import { defineConfig } from "vite";
import { name } from "./package.json";
import babel from "@rollup/plugin-babel";
import vue from "@vitejs/plugin-vue";
const camelize = (name: string) =>
name.replace(/(^|-)(\w)/g, (a, b, c) => c.toUpperCase());
export default defineConfig({
resolve: {
alias: {
"/@src": path.resolve(__dirname, "src"),
},
},
build: {
target: "es2015",
outDir: path.resolve(__dirname, "lib"),
lib: {
entry: path.resolve(__dirname, "src/index.ts"),
name: camelize(name),
},
terserOptions: {
compress: {
drop_console: true,
drop_debugger: true,
pure_funcs: ["console.log"],
},
output: {
comments: true,
},
},
rollupOptions: {
output: {
exports: "named",
globals: (id: string) => {
const name = id.replace(/^@/, "").split("/")[0];
return camelize(name);
},
assetFileNames: "index.css",
},
plugins: [
babel({
exclude: "node_modules/**",
extensions: [".js", ".jsx", ".ts", ".tsx", ".vue"],
presets: ["@babel/preset-env", "@babel/preset-typescript"],
}),
],
external: ["vue", "vue-router"],
},
},
plugins: [
vue({
include: [/\.vue$/, /\.md$/],
}),
],
});

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,197 @@
<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>