UNPKG

xdesign-vue-next

Version:

XDesign Component for vue-next

195 lines (188 loc) 8.16 kB
/** * xdesign v1.0.6 * (c) 2023 xdesign * @license MIT */ import { openBlock, createElementBlock, createElementVNode, defineComponent, toRefs, ref, computed, createVNode, Fragment } from 'vue'; import _toConsumableArray from '@babel/runtime/helpers/toConsumableArray'; import _slicedToArray from '@babel/runtime/helpers/slicedToArray'; import _defineProperty from '@babel/runtime/helpers/defineProperty'; import useVModel from '../hooks/useVModel.js'; import props from './props.js'; import { useConfig } from '../config-provider/useConfig.js'; import { useTNodeJSX } from '../hooks/tnode.js'; import { Tooltip } from '../tooltip/index.js'; import isArray from 'lodash/isArray'; import 'lodash/kebabCase'; import 'lodash/isFunction'; import 'lodash/cloneDeep'; import 'lodash/isString'; import '../config-provider/context.js'; import 'lodash/mergeWith'; import 'lodash/merge'; import '../_common/js/global-config/default-config.js'; import '../_common/js/global-config/locale/en_US.js'; import '../_chunks/dep-3a1cce9f.js'; import 'lodash/camelCase'; import '../utils/render-tnode.js'; import 'lodash/isEmpty'; import 'lodash/isObject'; import '../tooltip/tooltip.js'; import 'lodash/omit'; import '../tooltip/props.js'; import '../popup/props.js'; import '../popup/index.js'; import '../popup/popup.js'; import '@popperjs/core'; import 'lodash/debounce'; import '../hooks/useConfig.js'; import '../utils/dom.js'; import '../utils/easing.js'; import '../_common/js/utils/set-style.js'; import '../popup/container.js'; import '../hooks/useResizeObserver.js'; import '../utils/withInstall.js'; import '../tooltip/util.js'; const _hoisted_1 = { class: "x-icon", viewBox: "0 0 24 24", width: "1.1em", height: "1.1em" }; const _hoisted_2 = /*#__PURE__*/createElementVNode("path", { fill: "currentColor", d: "m12 18.26l-7.053 3.948l1.575-7.928L.588 8.792l8.027-.952L12 .5l3.385 7.34l8.027.952l-5.934 5.488l1.575 7.928L12 18.26Z" }, null, -1 /* HOISTED */); const _hoisted_3 = [ _hoisted_2 ]; function render(_ctx, _cache) { return (openBlock(), createElementBlock("svg", _hoisted_1, _hoisted_3)) } var __unplugin_components_0 = { name: 'ri-star-fill', render }; /* vite-plugin-components disabled */ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } var _Rate = defineComponent({ name: "XRate", props: _objectSpread({}, props), setup: function setup(props2, _ref) { var slots = _ref.slots; var renderTNodeJSX = useTNodeJSX(); var activeColor = isArray(props2.color) ? props2.color[0] : props2.color; var defaultColor = isArray(props2.color) ? props2.color[1] : "var(--td-bg-color-component)"; var _toRefs = toRefs(props2), inputValue = _toRefs.value, modelValue = _toRefs.modelValue; var _useVModel = useVModel(inputValue, modelValue, props2.defaultValue, props2.onChange), _useVModel2 = _slicedToArray(_useVModel, 2), starValue = _useVModel2[0], setStarValue = _useVModel2[1]; var hoverValue = ref(void 0); var root = ref(); var displayValue = computed(function () { return Number(hoverValue.value || starValue.value); }); var displayTexts = computed(function () { return props2.texts.length === 0 ? ["\u6781\u5DEE", "\u5931\u671B", "\u4E00\u822C", "\u6EE1\u610F", "\u60CA\u559C"] : props2.texts; }); var displayText = computed(function () { return displayTexts.value[Math.ceil(displayValue.value - 1)]; }); var RateIcon = function RateIcon(iconProps) { if (slots.icon !== void 0) { return renderTNodeJSX("icon", { params: iconProps }); } return createVNode(__unplugin_components_0, iconProps, null); }; var getStarValue = function getStarValue(event, index) { if (props2.allowHalf) { var _root$value$getBoundi = root.value.getBoundingClientRect(), left = _root$value$getBoundi.left; var firstStar = root.value.firstChild.nextSibling; var _firstStar$getBoundin = firstStar.getBoundingClientRect(), width = _firstStar$getBoundin.width; var clientX = event.clientX; var starMiddle = width * (index - 0.5) + props2.gap * (index - 1); if (clientX - left >= starMiddle) return index; if (clientX - left < starMiddle) return index - 0.5; } return index; }; var mouseEnterHandler = function mouseEnterHandler(event, index) { if (props2.disabled) return; hoverValue.value = getStarValue(event, index); }; var mouseLeaveHandler = function mouseLeaveHandler() { if (props2.disabled) return; hoverValue.value = void 0; }; var clickHandler = function clickHandler(event, index) { if (props2.disabled) return; setStarValue(getStarValue(event, index)); }; var getStarCls = function getStarCls(index) { if (props2.allowHalf && index + 0.5 === displayValue.value) return "".concat(classPrefix.value, "-rate__item--half"); if (index >= displayValue.value) return ""; if (index < displayValue.value) return "".concat(classPrefix.value, "-rate__item--full"); }; var _useConfig = useConfig("classPrefix"), classPrefix = _useConfig.classPrefix; return function () { return createVNode("div", { "class": "".concat(classPrefix.value, "-rate"), "onMouseleave": mouseLeaveHandler }, [createVNode("ul", { "class": "".concat(classPrefix.value, "-rate__list"), "style": { gap: "".concat(props2.gap, "px") }, "ref": root }, [_toConsumableArray(Array(Number(props2.count))).map(function (_, index) { return createVNode("li", { "key": index, "class": ["".concat(classPrefix.value, "-rate__item"), getStarCls(index)], "onClick": function onClick(event) { return clickHandler(event, index + 1); }, "onMousemove": function onMousemove(event) { return mouseEnterHandler(event, index + 1); } }, [props2.showText ? createVNode(Tooltip, { "key": index, "content": displayText.value }, { "default": function _default() { return [createVNode("div", { "class": "".concat(classPrefix.value, "-rate__star-top") }, [createVNode(RateIcon, { "size": props2.size, "color": activeColor }, null)]), createVNode("div", { "class": "".concat(classPrefix.value, "-rate__star-bottom") }, [createVNode(RateIcon, { "size": props2.size, "color": defaultColor }, null)])]; } }) : createVNode(Fragment, null, [createVNode("div", { "class": "".concat(classPrefix.value, "-rate__star-top") }, [createVNode(RateIcon, { "size": props2.size, "color": activeColor }, null)]), createVNode("div", { "class": "".concat(classPrefix.value, "-rate__star-bottom") }, [createVNode(RateIcon, { "size": props2.size, "color": defaultColor }, null)])])]); })]), props2.showText && createVNode("div", { "className": "".concat(classPrefix.value, "-rate__text") }, [displayText.value])]); }; } }); export { _Rate as default }; //# sourceMappingURL=rate.js.map