UNPKG

xdesign-vue-next

Version:

XDesign Component for vue-next

121 lines (117 loc) 5.65 kB
/** * xdesign v1.0.6 * (c) 2023 xdesign * @license MIT */ import _toConsumableArray from '@babel/runtime/helpers/toConsumableArray'; import _defineProperty from '@babel/runtime/helpers/defineProperty'; import { defineComponent, ref, computed, createVNode, h } from 'vue'; import { Loading } from '../loading/index.js'; import props from './props.js'; import useRipple from '../hooks/useRipple.js'; import { usePrefixClass, useCommonClassName } from '../hooks/useConfig.js'; import { useTNodeJSX, useContent } from '../hooks/tnode.js'; import { useDisabled } from '../hooks/useDisabled.js'; import '../loading/directive.js'; import '../loading/plugin.js'; import '../loading/loading.js'; import '@babel/runtime/helpers/slicedToArray'; import '../loading/icon/gradient.js'; import '../_common/js/loading/circle-adapter.js'; import '../_common/js/utils/set-style.js'; import '../_common/js/utils/helper.js'; import '@babel/runtime/helpers/objectWithoutProperties'; import 'lodash/isString'; import 'lodash/isNull'; import 'lodash/isUndefined'; import 'lodash/isNumber'; import 'lodash/isArray'; import '../utils/dom.js'; import '../_chunks/dep-3a1cce9f.js'; import 'lodash/isFunction'; import '../utils/easing.js'; import '../utils/render-tnode.js'; import 'lodash/isEmpty'; import 'lodash/isObject'; import 'lodash/camelCase'; import 'lodash/kebabCase'; import '../loading/props.js'; import '../hooks/useTeleport.js'; import '../config-provider/useConfig.js'; import 'lodash/cloneDeep'; 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 '../utils/withInstall.js'; import '../hooks/useKeepAnimation.js'; import '../utils/set-style.js'; import 'lodash/isBoolean'; 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 TButton = defineComponent({ name: "XButton", props: props, setup: function setup(props2, _ref) { var attrs = _ref.attrs, slots = _ref.slots; var renderTNodeJSX = useTNodeJSX(); var renderContent = useContent(); var COMPONENT_NAME = usePrefixClass("button"); var _useCommonClassName = useCommonClassName(), STATUS = _useCommonClassName.STATUS, SIZE = _useCommonClassName.SIZE; var btnRef = ref(); useRipple(btnRef); var isDisabled = useDisabled(); var mergeTheme = computed(function () { var theme = props2.theme, variant = props2.variant; if (theme) return theme; if (variant === "base") return "primary"; return "default"; }); var buttonClass = computed(function () { var _ref2; return ["".concat(COMPONENT_NAME.value), "".concat(COMPONENT_NAME.value, "--variant-").concat(props2.variant), "".concat(COMPONENT_NAME.value, "--theme-").concat(mergeTheme.value), (_ref2 = {}, _defineProperty(_ref2, SIZE.value[props2.size], props2.size !== "medium"), _defineProperty(_ref2, STATUS.value.disabled, isDisabled.value), _defineProperty(_ref2, STATUS.value.loading, props2.loading), _defineProperty(_ref2, "".concat(COMPONENT_NAME.value, "--shape-").concat(props2.shape), props2.shape !== "rectangle"), _defineProperty(_ref2, "".concat(COMPONENT_NAME.value, "--ghost"), props2.ghost), _defineProperty(_ref2, SIZE.value.block, props2.block), _ref2)]; }); return function () { var buttonContent = renderContent("default", "content"); var icon = props2.loading ? createVNode(Loading, { "inheritColor": true }, null) : renderTNodeJSX("icon"); var iconOnly = icon && !buttonContent; var suffix = props2.suffix || slots.suffix ? createVNode("span", { "className": "".concat(COMPONENT_NAME.value, "__suffix") }, [renderTNodeJSX("suffix")]) : null; buttonContent = buttonContent ? createVNode("span", { "class": "".concat(COMPONENT_NAME.value, "__text") }, [buttonContent]) : ""; if (icon) { buttonContent = [icon, buttonContent]; } if (suffix) { buttonContent = [buttonContent].concat(suffix); } var renderTag = function renderTag() { if (!props2.tag && props2.href) return "a"; return props2.tag || "button"; }; var buttonAttrs = { "class": [].concat(_toConsumableArray(buttonClass.value), [_defineProperty({}, "".concat(COMPONENT_NAME.value, "--icon-only"), iconOnly)]), type: props2.type, disabled: isDisabled.value || props2.loading, href: props2.href, tabindex: isDisabled.value ? void 0 : "0" }; return h(renderTag(), _objectSpread(_objectSpread(_objectSpread({ ref: btnRef }, attrs), buttonAttrs), {}, { onClick: props2.onClick }), [buttonContent]); }; } }); export { TButton as default }; //# sourceMappingURL=button.js.map