xdesign-vue-next
Version:
XDesign Component for vue-next
197 lines (193 loc) • 8.49 kB
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
import { _ as __unplugin_components_0 } from '../../_chunks/dep-eb18c6c6.js';
import _defineProperty from '@babel/runtime/helpers/defineProperty';
import { ref, computed, createVNode, watch } from 'vue';
import dayjs from 'dayjs';
import { useTNodeJSX } from '../../hooks/tnode.js';
import { useFormDisabled } from '../../form/hooks.js';
import { usePrefixClass } from '../../hooks/useConfig.js';
import { getDefaultFormat, formatDate, isValidDate, parseToDayjs, formatTime } from '../../_common/js/date-picker/format.js';
import useSingleValue from './useSingleValue.js';
import { useConfig } from '../../config-provider/useConfig.js';
import 'lodash/isFunction';
import 'lodash/camelCase';
import 'lodash/kebabCase';
import '../../utils/render-tnode.js';
import 'lodash/isEmpty';
import 'lodash/isString';
import 'lodash/isObject';
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 'lodash/isArray';
import '../../_common/js/date-picker/utils.js';
import '@babel/runtime/helpers/slicedToArray';
import '@babel/runtime/helpers/objectDestructuringEmpty';
import '@babel/runtime/helpers/extends';
import '../../_chunks/dep-78e63d0d.js';
import 'lodash/chunk';
import '../../_common/js/log/log.js';
import '../../hooks/useVModel.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; }
function useSingle(props) {
var COMPONENT_NAME = usePrefixClass("date-picker");
var _useConfig = useConfig("datePicker"),
globalConfig = _useConfig.globalConfig;
var disabled = useFormDisabled();
var renderTNodeJSX = useTNodeJSX();
var inputRef = ref();
var _useSingleValue = useSingleValue(props),
value = _useSingleValue.value,
onChange = _useSingleValue.onChange,
time = _useSingleValue.time,
month = _useSingleValue.month,
year = _useSingleValue.year,
cacheValue = _useSingleValue.cacheValue;
var formatRef = computed(function () {
return getDefaultFormat({
mode: props.mode,
format: props.format,
valueType: props.valueType,
enableTimePicker: props.enableTimePicker
});
});
var popupVisible = ref(false);
var isHoverCell = ref(false);
var inputValue = ref(formatDate(value.value, {
format: formatRef.value.format
}));
var inputProps = computed(function () {
return _objectSpread(_objectSpread({}, props.inputProps), {}, {
size: props.size,
ref: inputRef,
prefixIcon: props.prefixIcon && function () {
return renderTNodeJSX("prefixIcon");
},
readonly: !props.allowInput,
placeholder: props.placeholder || globalConfig.value.placeholder[props.mode],
suffixIcon: function suffixIcon() {
return renderTNodeJSX("suffixIcon") || createVNode(__unplugin_components_0, null, null);
},
"class": [_defineProperty({}, "".concat(COMPONENT_NAME.value, "__input--placeholder"), isHoverCell.value)],
onClear: function onClear(context) {
var _context$e;
context === null || context === void 0 || (_context$e = context.e) === null || _context$e === void 0 ? void 0 : _context$e.stopPropagation();
popupVisible.value = false;
onChange === null || onChange === void 0 ? void 0 : onChange("", {
dayjsValue: dayjs(),
trigger: "clear"
});
},
onBlur: function onBlur(val, context) {
var _props$onBlur;
(_props$onBlur = props.onBlur) === null || _props$onBlur === void 0 ? void 0 : _props$onBlur.call(props, {
value: val,
e: context.e
});
},
onFocus: function onFocus(_, _ref2) {
var _props$onFocus;
var e = _ref2.e;
(_props$onFocus = props.onFocus) === null || _props$onFocus === void 0 ? void 0 : _props$onFocus.call(props, {
value: value.value,
e: e
});
},
onChange: function onChange(val) {
inputValue.value = val;
if (!isValidDate(val, formatRef.value.format)) return;
cacheValue.value = val;
var newMonth = parseToDayjs(val, formatRef.value.format).month();
var newYear = parseToDayjs(val, formatRef.value.format).year();
var newTime = formatTime(val, formatRef.value.format, formatRef.value.timeFormat, props.defaultTime);
!Number.isNaN(newYear) && (year.value = newYear);
!Number.isNaN(newMonth) && (month.value = newMonth);
!Number.isNaN(newTime) && (time.value = newTime);
},
onEnter: function onEnter(val) {
if (!val) {
onChange("", {
dayjsValue: dayjs(),
trigger: "enter"
});
popupVisible.value = false;
return;
}
if (!isValidDate(val, formatRef.value.format) && !isValidDate(value.value, formatRef.value.format)) return;
popupVisible.value = false;
if (isValidDate(val, formatRef.value.format)) {
onChange === null || onChange === void 0 ? void 0 : onChange(formatDate(val, {
format: formatRef.value.format,
targetFormat: formatRef.value.valueType
}), {
dayjsValue: parseToDayjs(val, formatRef.value.format),
trigger: "enter"
});
} else if (isValidDate(value.value, formatRef.value.format)) {
inputValue.value = formatDate(value.value, {
format: formatRef.value.format
});
} else {
inputValue.value = "";
}
}
});
});
var popupProps = computed(function () {
var _props$popupProps$ove, _props$popupProps, _props$popupProps2;
return _objectSpread(_objectSpread({
expandAnimation: true
}, props.popupProps), {}, {
disabled: disabled.value,
overlayInnerStyle: (_props$popupProps$ove = (_props$popupProps = props.popupProps) === null || _props$popupProps === void 0 ? void 0 : _props$popupProps.overlayInnerStyle) !== null && _props$popupProps$ove !== void 0 ? _props$popupProps$ove : {
width: "auto"
},
overlayClassName: [(_props$popupProps2 = props.popupProps) === null || _props$popupProps2 === void 0 ? void 0 : _props$popupProps2.overlayClassName, "".concat(COMPONENT_NAME.value, "__panel-container")],
onVisibleChange: function onVisibleChange(visible, context) {
var _props$popupProps3, _props$popupProps3$on;
if (disabled.value) return;
(_props$popupProps3 = props.popupProps) === null || _props$popupProps3 === void 0 || (_props$popupProps3$on = _props$popupProps3.onVisibleChange) === null || _props$popupProps3$on === void 0 ? void 0 : _props$popupProps3$on.call(_props$popupProps3, visible, context);
if (context.trigger === "trigger-element-click") {
popupVisible.value = true;
return;
}
popupVisible.value = visible;
}
});
});
watch(value, function (value2) {
if (!value2) {
inputValue.value = "";
return;
}
if (!isValidDate(value2, formatRef.value.format)) return;
inputValue.value = formatDate(value2, {
format: formatRef.value.format
});
});
return {
year: year,
month: month,
value: value,
time: time,
inputValue: inputValue,
popupVisible: popupVisible,
inputProps: inputProps,
popupProps: popupProps,
inputRef: inputRef,
cacheValue: cacheValue,
isHoverCell: isHoverCell,
onChange: onChange
};
}
export { useSingle as default };
//# sourceMappingURL=useSingle.js.map