@zhsz/cool-design-dv
Version:
113 lines (112 loc) • 3.91 kB
JavaScript
import { defineComponent, getCurrentInstance, useAttrs, inject, computed, onMounted, onBeforeUnmount, openBlock, createBlock, unref, mergeProps, withCtx, createElementVNode, normalizeClass, normalizeStyle, createElementBlock } from "vue";
import "./style.css";
import Box from "../dv-box/index.mjs";
import { dvPageSymbols } from "../../symbols/index.mjs";
import { addResizeListener, removeResizeListener } from "../../utils/resize-event.mjs";
import { useAdorn } from "../../hooks/useAdorn.mjs";
import { baseConfig } from "../../hooks/useConfig.mjs";
const _hoisted_1 = ["width", "height"];
const _hoisted_2 = ["stroke", "points"];
const _hoisted_3 = ["stroke", "stroke-width", "stroke-dasharray", "stroke-dashoffset", "points"];
const __default__ = defineComponent({
name: "DvAdorn4"
});
const _sfc_main = /* @__PURE__ */ defineComponent({
...__default__,
props: {
duration: {
type: Number,
default: 3
},
reverse: Boolean,
opacity: {
type: Number,
default: 1
},
// 线条的宽度
size: {
type: Number,
default: 3
},
dashArray: {
type: Array,
default() {
return [20, 80];
}
},
dashOffset: {
type: Number,
default: -30
}
},
emits: ["resize"],
setup(__props, { emit: __emit }) {
var _a, _b, _c;
const props = __props;
const instance = (_a = getCurrentInstance()) == null ? void 0 : _a.proxy;
const emits = __emit;
const $attrs = useAttrs();
const page = inject(dvPageSymbols, null);
const { resize, classes, styles, width, height, dark, light } = useAdorn(
emits,
((_c = (_b = page == null ? void 0 : page.settings) == null ? void 0 : _b.value) == null ? void 0 : _c.color) ?? baseConfig.color,
props,
page
);
const points = computed(() => {
return props.reverse ? `0, ${height.value / 2} ${width.value}, ${height.value / 2}` : `${width.value / 2}, 0 ${width.value / 2}, ${height.value}`;
});
const svgClass = computed(() => {
return props.reverse ? "reverse" : "normal";
});
const svgStyle = computed(() => {
return {
"animation-duration": `${props.duration}s`
};
});
onMounted(() => {
resize(instance == null ? void 0 : instance.$el);
addResizeListener(instance == null ? void 0 : instance.$el, () => resize(instance == null ? void 0 : instance.$el));
});
onBeforeUnmount(() => {
removeResizeListener(instance == null ? void 0 : instance.$el, () => resize(instance == null ? void 0 : instance.$el));
});
return (_ctx, _cache) => {
return openBlock(), createBlock(unref(Box), mergeProps({
class: ["my-dv-adorn-4", unref(classes)],
style: unref(styles),
"default-width": "300px",
"default-height": "300px"
}, unref($attrs)), {
default: withCtx(() => [
createElementVNode("div", {
class: normalizeClass(["my-dv-adorn-4__container", svgClass.value]),
style: normalizeStyle(svgStyle.value)
}, [
(openBlock(), createElementBlock("svg", {
width: `${unref(width)}px`,
height: `${unref(height)}px`
}, [
createElementVNode("polyline", {
stroke: unref(dark),
points: points.value
}, null, 8, _hoisted_2),
createElementVNode("polyline", {
class: "bold-line",
stroke: unref(light),
"stroke-width": __props.size,
"stroke-dasharray": __props.dashArray.join(","),
"stroke-dashoffset": __props.dashOffset,
points: points.value
}, null, 8, _hoisted_3)
], 8, _hoisted_1))
], 6)
]),
_: 1
}, 16, ["class", "style"]);
};
}
});
export {
_sfc_main as default
};