@aplus-frontend/antdv
Version:
Vue basic component library maintained based on ant-design-vue
169 lines (168 loc) • 5.41 kB
JavaScript
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
var _vue = require("vue");
var _vueTypes = _interopRequireDefault(require("./vue-types"));
var _BaseInputInner = _interopRequireDefault(require("./BaseInputInner"));
var _css = require("../vc-util/Dom/css");
var __rest = void 0 && (void 0).__rest || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
}
return t;
};
const BaseInput = (0, _vue.defineComponent)({
compatConfig: {
MODE: 3
},
inheritAttrs: false,
props: {
disabled: _vueTypes.default.looseBool,
type: _vueTypes.default.string,
value: _vueTypes.default.any,
lazy: _vueTypes.default.bool.def(true),
tag: {
type: String,
default: 'input'
},
size: _vueTypes.default.string,
style: _vueTypes.default.oneOfType([String, Object]),
class: _vueTypes.default.string
},
emits: ['change', 'input', 'blur', 'keydown', 'focus', 'compositionstart', 'compositionend', 'keyup', 'paste', 'mousedown'],
setup(props, _ref) {
let {
emit,
attrs,
expose
} = _ref;
const inputRef = (0, _vue.shallowRef)(null);
const renderValue = (0, _vue.ref)();
const isComposing = (0, _vue.ref)(false);
(0, _vue.watch)([() => props.value, isComposing], () => {
if (isComposing.value) return;
renderValue.value = props.value;
}, {
immediate: true
});
const handleChange = e => {
emit('change', e);
};
const onCompositionstart = e => {
isComposing.value = true;
e.target.composing = true;
emit('compositionstart', e);
};
const onCompositionend = e => {
isComposing.value = false;
e.target.composing = false;
emit('compositionend', e);
const event = document.createEvent('HTMLEvents');
event.initEvent('input', true, true);
e.target.dispatchEvent(event);
handleChange(e);
};
const handleInput = e => {
if (isComposing.value && props.lazy) {
renderValue.value = e.target.value;
return;
}
emit('input', e);
};
const handleBlur = e => {
emit('blur', e);
};
const handleFocus = e => {
emit('focus', e);
};
const focus = () => {
if (inputRef.value) {
inputRef.value.focus();
}
};
const blur = () => {
if (inputRef.value) {
inputRef.value.blur();
}
};
const handleKeyDown = e => {
emit('keydown', e);
};
const handleKeyUp = e => {
emit('keyup', e);
};
const setSelectionRange = (start, end, direction) => {
var _a;
(_a = inputRef.value) === null || _a === void 0 ? void 0 : _a.setSelectionRange(start, end, direction);
};
const select = () => {
var _a;
(_a = inputRef.value) === null || _a === void 0 ? void 0 : _a.select();
};
const rootInputForceUpdate = () => {
var _a;
(_a = inputRef.value) === null || _a === void 0 ? void 0 : _a.rootInputForceUpdate();
};
expose({
focus,
blur,
input: (0, _vue.computed)(() => {
var _a;
return (_a = inputRef.value) === null || _a === void 0 ? void 0 : _a.input;
}),
setSelectionRange,
select,
rootInputForceUpdate,
getSelectionStart: () => {
var _a;
return (_a = inputRef.value) === null || _a === void 0 ? void 0 : _a.getSelectionStart();
},
getSelectionEnd: () => {
var _a;
return (_a = inputRef.value) === null || _a === void 0 ? void 0 : _a.getSelectionEnd();
},
getScrollTop: () => {
var _a;
return (_a = inputRef.value) === null || _a === void 0 ? void 0 : _a.getScrollTop();
}
});
const handleMousedown = e => {
emit('mousedown', e);
};
const handlePaste = e => {
emit('paste', e);
};
const styleString = (0, _vue.computed)(() => {
return props.style && typeof props.style !== 'string' ? (0, _css.styleObjectToString)(props.style) : props.style;
});
return () => {
const {
style,
lazy
} = props,
restProps = __rest(props, ["style", "lazy"]);
return (0, _vue.createVNode)(_BaseInputInner.default, (0, _objectSpread2.default)((0, _objectSpread2.default)((0, _objectSpread2.default)({}, restProps), attrs), {}, {
"style": styleString.value,
"onInput": handleInput,
"onChange": handleChange,
"onBlur": handleBlur,
"onFocus": handleFocus,
"ref": inputRef,
"value": renderValue.value,
"onCompositionstart": onCompositionstart,
"onCompositionend": onCompositionend,
"onKeyup": handleKeyUp,
"onKeydown": handleKeyDown,
"onPaste": handlePaste,
"onMousedown": handleMousedown
}), null);
};
}
});
var _default = exports.default = BaseInput;
;