xdesign-vue-next
Version:
XDesign Component for vue-next
162 lines (158 loc) • 6.49 kB
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
import _slicedToArray from '@babel/runtime/helpers/slicedToArray';
import _defineProperty from '@babel/runtime/helpers/defineProperty';
import { defineComponent, toRefs, computed, watch, h, createVNode } from 'vue';
import { usePrefixClass, useCommonClassName } from '../hooks/useConfig.js';
import { Loading } from '../loading/index.js';
import props from './props.js';
import { useDisabled } from '../hooks/useDisabled.js';
import useVModel from '../hooks/useVModel.js';
import isFunction from 'lodash/isFunction';
import isString from 'lodash/isString';
import isArray from 'lodash/isArray';
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 '../_chunks/dep-3a1cce9f.js';
import '../loading/directive.js';
import '../loading/plugin.js';
import '../loading/loading.js';
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/toConsumableArray';
import '@babel/runtime/helpers/objectWithoutProperties';
import 'lodash/isNull';
import 'lodash/isUndefined';
import 'lodash/isNumber';
import '../utils/dom.js';
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 '../utils/withInstall.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 _Switch = defineComponent({
name: "XSwitch",
props: _objectSpread({}, props),
setup: function setup(props2, _ref) {
var slots = _ref.slots;
var disabled = useDisabled();
var COMPONENT_NAME = usePrefixClass("switch");
var _useCommonClassName = useCommonClassName(),
STATUS = _useCommonClassName.STATUS,
SIZE = _useCommonClassName.SIZE;
var _toRefs = toRefs(props2),
value = _toRefs.value,
modelValue = _toRefs.modelValue;
var _useVModel = useVModel(value, modelValue, props2.defaultValue, props2.onChange),
_useVModel2 = _slicedToArray(_useVModel, 2),
innerValue = _useVModel2[0],
setSwitchVal = _useVModel2[1];
var activeValue = computed(function () {
if (props2.customValue && props2.customValue.length > 0) {
return props2.customValue[0];
}
return true;
});
var inactiveValue = computed(function () {
if (props2.customValue && props2.customValue.length > 1) {
return props2.customValue[1];
}
return false;
});
function handleToggle(e) {
var checked = innerValue.value === activeValue.value ? inactiveValue.value : activeValue.value;
setSwitchVal(checked, {
e: e
});
}
function toggle(e) {
if (disabled.value || props2.loading) {
return;
}
handleToggle(e);
}
var classes = computed(function () {
var _ref2;
return ["".concat(COMPONENT_NAME.value), SIZE.value[props2.size], (_ref2 = {}, _defineProperty(_ref2, STATUS.value.disabled, disabled.value), _defineProperty(_ref2, STATUS.value.loading, props2.loading), _defineProperty(_ref2, STATUS.value.checked, innerValue.value === activeValue.value || props2.modelValue === activeValue.value), _ref2)];
});
var nodeClasses = computed(function () {
var _ref3;
return ["".concat(COMPONENT_NAME.value, "__handle"), (_ref3 = {}, _defineProperty(_ref3, STATUS.value.disabled, disabled.value), _defineProperty(_ref3, STATUS.value.loading, props2.loading), _ref3)];
});
var contentClasses = computed(function () {
return ["".concat(COMPONENT_NAME.value, "__content"), SIZE.value[props2.size], _defineProperty({}, STATUS.value.disabled, disabled.value)];
});
watch(innerValue, function (val) {
if (props2.customValue && props2.customValue.length && !props2.customValue.includes(val)) {
throw new Error("value is not in ".concat(JSON.stringify(props2.customValue)));
}
}, {
immediate: true
});
var content = computed(function () {
if (isFunction(props2.label)) {
return props2.label(h, {
value: innerValue.value
});
}
if (isString(props2.label)) {
return props2.label;
}
if (isArray(props2.label) && props2.label.length) {
var label = innerValue.value === activeValue.value ? props2.label[0] : props2.label[1];
if (!label) return;
if (isString(label)) {
return label;
}
if (isFunction(label)) {
return label(h);
}
}
if (slots.label) {
return slots.label({
value: innerValue.value
});
}
return null;
});
return function () {
var switchContent;
var loadingContent;
if (props2.loading) {
loadingContent = createVNode(Loading, {
"size": "small"
}, null);
} else if (content.value) {
switchContent = content.value;
}
return createVNode("div", {
"class": classes.value,
"disabled": disabled.value,
"onClick": toggle
}, [createVNode("span", {
"class": nodeClasses.value
}, [loadingContent]), createVNode("div", {
"class": contentClasses.value
}, [switchContent])]);
};
}
});
export { _Switch as default };
//# sourceMappingURL=switch.js.map