tdesign-vue
Version:
188 lines (184 loc) • 7.77 kB
JavaScript
/**
* tdesign v1.14.1
* (c) 2025 tdesign
* @license MIT
*/
import _defineProperty from '@babel/runtime/helpers/defineProperty';
import { ref, computed, watch } from '@vue/composition-api';
import dayjs from 'dayjs';
import { omit } from 'lodash-es';
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 '../../config-provider/useConfig.js';
import '../../config-provider/context.js';
import '../../_common/js/global-config/default-config.js';
import '../../_common/js/global-config/locale/zh_CN.js';
import '../../_chunks/dep-ba613a02.js';
import '@babel/runtime/helpers/typeof';
import '../../_chunks/dep-fdb1b253.js';
import '../../_common/js/global-config/t.js';
import '@babel/runtime/helpers/slicedToArray';
import '../../_chunks/dep-655d809c.js';
import '../../_common/js/log/log.js';
import '../../hooks/useVModel.js';
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
function useSingle(props, _ref) {
var emit = _ref.emit;
var COMPONENT_NAME = usePrefixClass("date-picker");
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.multiple ? false : props.enableTimePicker
});
});
var popupVisible = ref(false);
var isHoverCell = ref(false);
var inputValue = ref(formatDate(value.value, {
format: formatRef.value.format
}));
var inputProps = computed(function () {
var inputProps2 = _objectSpread(_objectSpread({}, props.inputProps), {}, {
ref: inputRef,
borderless: props.borderless,
size: props.size,
prefixIcon: props.prefixIcon,
"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 || _context$e.stopPropagation();
popupVisible.value = false;
onChange === null || onChange === void 0 || onChange("", {
dayjsValue: dayjs(),
trigger: "clear"
});
emit("clear", "", {
dayjsValue: dayjs(),
trigger: "clear"
});
},
onBlur: function onBlur(val, context) {
var _props$onBlur;
(_props$onBlur = props.onBlur) === null || _props$onBlur === void 0 || _props$onBlur.call(props, {
value: val,
e: context.e
});
emit("blur", {
value: val,
e: context.e
});
},
onFocus: function onFocus(_, _ref3) {
var _props$onFocus;
var e = _ref3.e;
(_props$onFocus = props.onFocus) === null || _props$onFocus === void 0 || _props$onFocus.call(props, {
value: value.value,
e: e
});
emit("focus", {
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 === null || onChange === void 0 || 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 || 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 = "";
}
}
});
return props.multiple ? _objectSpread({}, omit(inputProps2, ["ref", "class"])) : inputProps2;
});
var popupProps = computed(function () {
var _props$popupProps$ove, _props$popupProps, _props$popupProps2;
return _objectSpread(_objectSpread({
expandAnimation: true
}, props.popupProps), {}, {
trigger: "click",
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;
(_props$popupProps3 = props.popupProps) === null || _props$popupProps3 === void 0 || (_props$popupProps3$on = _props$popupProps3.onVisibleChange) === null || _props$popupProps3$on === 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
});
}, {
immediate: true
});
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