xdesign-vue-next
Version:
XDesign Component for vue-next
307 lines (303 loc) • 13.3 kB
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
import { _ as __unplugin_components_6 } from '../_chunks/dep-fb0628ce.js';
import _slicedToArray from '@babel/runtime/helpers/slicedToArray';
import _defineProperty from '@babel/runtime/helpers/defineProperty';
import { defineComponent, toRefs, ref, reactive, computed, createVNode, mergeProps, nextTick } from 'vue';
import { Input } from '../input/index.js';
import props from './props.js';
import { renderTNodeJSX } from '../utils/render-tnode.js';
import { useConfig } from '../config-provider/useConfig.js';
import { usePrefixClass } from '../hooks/useConfig.js';
import useTagScroll from './hooks/useTagScroll.js';
import useTagList from './useTagList.js';
import useHover from './hooks/useHover.js';
import useDefaultValue from '../hooks/useDefaultValue.js';
import useDragSorter from './hooks/useDragSorter.js';
import isArray from 'lodash/isArray';
import '../input/input.js';
import '../_chunks/dep-eade0dcf.js';
import '@babel/runtime/helpers/objectWithoutProperties';
import '../input/props.js';
import '../form/hooks.js';
import '../hooks/tnode.js';
import 'lodash/isFunction';
import 'lodash/camelCase';
import 'lodash/kebabCase';
import '../input/useInput.js';
import '../form/const.js';
import '../hooks/useVModel.js';
import '../input/useLengthLimit.js';
import '../_common/js/log/log.js';
import '../_common/js/utils/helper.js';
import '@babel/runtime/helpers/toConsumableArray';
import 'lodash/isString';
import 'lodash/isNull';
import 'lodash/isUndefined';
import 'lodash/isNumber';
import 'lodash/isObject';
import '../input/useInputEventHandler.js';
import '../input/useInputWidth.js';
import 'lodash/isEmpty';
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 '../input/input-group.js';
import '../input/input-group-props.js';
import '../utils/withInstall.js';
import '../tag/index.js';
import '../tag/tag.js';
import '../_chunks/dep-ae5efda0.js';
import '../tag/props.js';
import '../tag/check-tag.js';
import '../tag/check-tag-props.js';
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 useComponentClassName = function useComponentClassName() {
return {
NAME_CLASS: usePrefixClass("tag-input"),
CLEAR_CLASS: usePrefixClass("tag-input__suffix-clear"),
BREAK_LINE_CLASS: usePrefixClass("tag-input--break-line")
};
};
var _TagInput = defineComponent({
name: "XTagInput",
props: _objectSpread({}, props),
setup: function setup(props2) {
var _useComponentClassNam = useComponentClassName(),
NAME_CLASS = _useComponentClassNam.NAME_CLASS,
CLEAR_CLASS = _useComponentClassNam.CLEAR_CLASS,
BREAK_LINE_CLASS = _useComponentClassNam.BREAK_LINE_CLASS;
var _toRefs = toRefs(props2),
inputValue = _toRefs.inputValue,
inputProps = _toRefs.inputProps;
var _useDefault = useDefaultValue(inputValue, props2.defaultInputValue, props2.onInputChange, "inputValue"),
_useDefault2 = _slicedToArray(_useDefault, 2),
tInputValue = _useDefault2[0],
setTInputValue = _useDefault2[1];
var _toRefs2 = toRefs(props2),
excessTagsDisplayType = _toRefs2.excessTagsDisplayType,
readonly = _toRefs2.readonly,
disabled = _toRefs2.disabled,
clearable = _toRefs2.clearable,
placeholder = _toRefs2.placeholder;
var _useHover = useHover({
readonly: props2.readonly,
disabled: props2.disabled,
onMouseenter: props2.onMouseenter,
onMouseleave: props2.onMouseleave
}),
isHover = _useHover.isHover,
addHover = _useHover.addHover,
cancelHover = _useHover.cancelHover;
var isComposition = ref(false);
var _useConfig = useConfig(),
classPrefix = _useConfig.classPrefix;
var _useDragSorter = useDragSorter(_objectSpread(_objectSpread({}, props2), {}, {
sortOnDraggable: props2.dragSort,
onDragOverCheck: {
x: true,
targetClassNameRegExp: new RegExp("^".concat(classPrefix.value, "-tag"))
}
})),
getDragProps = _useDragSorter.getDragProps;
var _useTagScroll = useTagScroll(props2),
scrollToRight = _useTagScroll.scrollToRight,
onWheel = _useTagScroll.onWheel,
scrollToRightOnEnter = _useTagScroll.scrollToRightOnEnter,
scrollToLeftOnLeave = _useTagScroll.scrollToLeftOnLeave,
tagInputRef = _useTagScroll.tagInputRef;
var _useTagList = useTagList(reactive(_objectSpread(_objectSpread({}, toRefs(props2)), {}, {
getDragProps: getDragProps
}))),
tagValue = _useTagList.tagValue,
onInnerEnter = _useTagList.onInnerEnter,
onInputBackspaceKeyUp = _useTagList.onInputBackspaceKeyUp,
onInputBackspaceKeyDown = _useTagList.onInputBackspaceKeyDown,
clearAll = _useTagList.clearAll,
renderLabel = _useTagList.renderLabel,
onClose = _useTagList.onClose;
var classes = computed(function () {
var _ref;
var isEmpty = !(isArray(tagValue.value) && tagValue.value.length);
return [NAME_CLASS.value, (_ref = {}, _defineProperty(_ref, BREAK_LINE_CLASS.value, excessTagsDisplayType.value === "break-line"), _defineProperty(_ref, "".concat(classPrefix.value, "-is-empty"), isEmpty), _defineProperty(_ref, "".concat(classPrefix.value, "-tag-input--with-tag"), !isEmpty), _ref)];
});
var tagInputPlaceholder = computed(function () {
var _tagValue$value;
return !((_tagValue$value = tagValue.value) !== null && _tagValue$value !== void 0 && _tagValue$value.length) ? placeholder.value : "";
});
var showClearIcon = computed(function () {
var _tagValue$value2;
return Boolean(!readonly.value && !disabled.value && clearable.value && isHover.value && (((_tagValue$value2 = tagValue.value) === null || _tagValue$value2 === void 0 ? void 0 : _tagValue$value2.length) || tInputValue.value));
});
var onInputEnter = function onInputEnter(value, context) {
var _context$e, _context$e$preventDef;
(_context$e = context.e) === null || _context$e === void 0 || (_context$e$preventDef = _context$e.preventDefault) === null || _context$e$preventDef === void 0 ? void 0 : _context$e$preventDef.call(_context$e);
setTInputValue("", {
e: context.e,
trigger: "enter"
});
!isComposition.value && onInnerEnter(value, context);
nextTick(function () {
scrollToRight();
isComposition.value = false;
});
};
var onInputCompositionstart = function onInputCompositionstart(value, context) {
var _inputProps$value, _inputProps$value$onC;
isComposition.value = true;
(_inputProps$value = inputProps.value) === null || _inputProps$value === void 0 || (_inputProps$value$onC = _inputProps$value.onCompositionstart) === null || _inputProps$value$onC === void 0 ? void 0 : _inputProps$value$onC.call(_inputProps$value, value, context);
};
var onInputCompositionend = function onInputCompositionend(value, context) {
var _inputProps$value2, _inputProps$value2$on;
isComposition.value = false;
(_inputProps$value2 = inputProps.value) === null || _inputProps$value2 === void 0 || (_inputProps$value2$on = _inputProps$value2.onCompositionend) === null || _inputProps$value2$on === void 0 ? void 0 : _inputProps$value2$on.call(_inputProps$value2, value, context);
};
var onClick = function onClick(ctx) {
var _props2$onClick;
tagInputRef.value.focus();
(_props2$onClick = props2.onClick) === null || _props2$onClick === void 0 ? void 0 : _props2$onClick.call(props2, ctx);
};
var onClearClick = function onClearClick(context) {
var _props2$onClear;
clearAll(context);
setTInputValue("", {
e: context.e,
trigger: "clear"
});
(_props2$onClear = props2.onClear) === null || _props2$onClear === void 0 ? void 0 : _props2$onClear.call(props2, context);
};
var focus = function focus() {
tagInputRef.value.focus();
};
return {
CLEAR_CLASS: CLEAR_CLASS,
tagValue: tagValue,
tInputValue: tInputValue,
isHover: isHover,
tagInputPlaceholder: tagInputPlaceholder,
showClearIcon: showClearIcon,
tagInputRef: tagInputRef,
classPrefix: classPrefix,
setTInputValue: setTInputValue,
addHover: addHover,
cancelHover: cancelHover,
onInputEnter: onInputEnter,
onInnerEnter: onInnerEnter,
onInputBackspaceKeyUp: onInputBackspaceKeyUp,
onInputBackspaceKeyDown: onInputBackspaceKeyDown,
renderLabel: renderLabel,
onWheel: onWheel,
scrollToRightOnEnter: scrollToRightOnEnter,
scrollToLeftOnLeave: scrollToLeftOnLeave,
onClick: onClick,
onClearClick: onClearClick,
onClose: onClose,
onInputCompositionstart: onInputCompositionstart,
onInputCompositionend: onInputCompositionend,
focus: focus,
classes: classes
};
},
render: function render() {
var _this = this,
_this$inputProps,
_this$tagValue;
var suffixIconNode = this.showClearIcon ? createVNode(__unplugin_components_6, {
"class": this.CLEAR_CLASS,
"onClick": this.onClearClick
}, null) : renderTNodeJSX(this, "suffixIcon");
var suffixClass = "".concat(this.classPrefix, "-tag-input__with-suffix-icon");
if (suffixIconNode && !this.classes.includes(suffixClass)) {
this.classes.push(suffixClass);
}
var displayNode = renderTNodeJSX(this, "valueDisplay", {
params: {
value: this.tagValue,
onClose: function onClose(index, item) {
return _this.onClose({
index: index,
item: item
});
}
}
});
var _label = renderTNodeJSX(this, "label", {
silent: true
});
return createVNode(Input, mergeProps({
"ref": "tagInputRef",
"readonly": this.readonly,
"value": this.tInputValue,
"autoWidth": true,
"size": this.size,
"disabled": this.disabled,
"label": function label() {
return _this.renderLabel({
displayNode: displayNode,
label: _label
});
},
"class": this.classes,
"tips": this.tips,
"status": this.status,
"placeholder": this.tagInputPlaceholder,
"suffix": this.suffix,
"suffixIcon": function suffixIcon() {
return suffixIconNode;
},
"showInput": !((_this$inputProps = this.inputProps) !== null && _this$inputProps !== void 0 && _this$inputProps.readonly) || !this.tagValue || !((_this$tagValue = this.tagValue) !== null && _this$tagValue !== void 0 && _this$tagValue.length),
"keepWrapperWidth": !this.autoWidth,
"onWheel": this.onWheel,
"onChange": function onChange(val, context) {
_this.setTInputValue(val, _objectSpread(_objectSpread({}, context), {}, {
trigger: "input"
}));
},
"onPaste": this.onPaste,
"onEnter": this.onInputEnter,
"onKeyup": this.onInputBackspaceKeyUp,
"onKeydown": this.onInputBackspaceKeyDown,
"onMouseenter": function onMouseenter(context) {
_this.addHover(context);
_this.scrollToRightOnEnter();
},
"onMouseleave": function onMouseleave(context) {
_this.cancelHover(context);
_this.scrollToLeftOnLeave();
},
"onFocus": function onFocus(inputValue, context) {
var _this$onFocus;
(_this$onFocus = _this.onFocus) === null || _this$onFocus === void 0 ? void 0 : _this$onFocus.call(_this, _this.tagValue, {
e: context.e,
inputValue: inputValue
});
},
"onBlur": function onBlur(inputValue, context) {
var _this$onBlur;
_this.setTInputValue("", {
e: context.e,
trigger: "blur"
});
(_this$onBlur = _this.onBlur) === null || _this$onBlur === void 0 ? void 0 : _this$onBlur.call(_this, _this.tagValue, {
e: context.e,
inputValue: ""
});
},
"onClick": this.onClick,
"onCompositionstart": this.onInputCompositionstart,
"onCompositionend": this.onInputCompositionend
}, this.inputProps), {
suffix: this.$slots.suffix
});
}
});
export { _TagInput as default };
//# sourceMappingURL=tag-input.js.map