tdesign-vue
Version:
124 lines (120 loc) • 5.3 kB
JavaScript
/**
* tdesign v1.12.1
* (c) 2025 tdesign
* @license MIT
*/
import _defineProperty from '@babel/runtime/helpers/defineProperty';
import { defineComponent, computed } from '@vue/composition-api';
import { usePrefixClass } from '../../hooks/useConfig.js';
import { extractTimeObj } from '../../_common/js/date-picker/utils.js';
import '../../config-provider/useConfig.js';
import '../../config-provider/context.js';
import 'lodash-es';
import '../../_common/js/global-config/default-config.js';
import '../../_common/js/global-config/locale/zh_CN.js';
import '../../_chunks/dep-b0659553.js';
import '@babel/runtime/helpers/typeof';
import '../../_chunks/dep-79359026.js';
import 'dayjs';
import '../../_common/js/global-config/t.js';
import '@babel/runtime/helpers/slicedToArray';
import '@babel/runtime/helpers/objectDestructuringEmpty';
import '@babel/runtime/helpers/extends';
import '../../_chunks/dep-f1d995d6.js';
import '../../_common/js/date-picker/format.js';
import '../../_common/js/log/log.js';
var TDatePickerCell = defineComponent({
name: "TDatePickerCell",
props: {
time: String,
text: [String, Number],
value: Date,
active: Boolean,
highlight: Boolean,
disabled: Boolean,
startOfRange: Boolean,
endOfRange: Boolean,
hoverHighlight: Boolean,
hoverStartOfRange: Boolean,
hoverEndOfRange: Boolean,
additional: Boolean,
now: Boolean,
firstDayOfMonth: Boolean,
lastDayOfMonth: Boolean,
onClick: Function,
onMouseEnter: Function
},
setup: function setup(props) {
var COMPONENT_NAME = usePrefixClass("date-picker__cell");
var cellClass = computed(function () {
var _ref;
return [COMPONENT_NAME.value, (_ref = {}, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_ref, "".concat(COMPONENT_NAME.value, "--now"), props.now), "".concat(COMPONENT_NAME.value, "--active"), props.active), "".concat(COMPONENT_NAME.value, "--disabled"), props.disabled), "".concat(COMPONENT_NAME.value, "--highlight"), props.highlight), "".concat(COMPONENT_NAME.value, "--hover-highlight"), props.hoverHighlight), "".concat(COMPONENT_NAME.value, "--active-start"), props.startOfRange), "".concat(COMPONENT_NAME.value, "--active-end"), props.endOfRange), "".concat(COMPONENT_NAME.value, "--hover-start"), props.hoverStartOfRange), "".concat(COMPONENT_NAME.value, "--hover-end"), props.hoverEndOfRange), "".concat(COMPONENT_NAME.value, "--additional"), props.additional), _defineProperty(_defineProperty(_ref, "".concat(COMPONENT_NAME.value, "--first-day-of-month"), props.firstDayOfMonth), "".concat(COMPONENT_NAME.value, "--last-day-of-month"), props.lastDayOfMonth))];
});
function handleClick(e) {
var _props$onClick;
if (props.disabled) return;
if (props.time) {
var _extractTimeObj = extractTimeObj(props.time),
hours = _extractTimeObj.hours,
minutes = _extractTimeObj.minutes,
seconds = _extractTimeObj.seconds,
milliseconds = _extractTimeObj.milliseconds,
meridiem = _extractTimeObj.meridiem;
var nextHours = hours;
if (/am/i.test(meridiem) && nextHours === 12) nextHours -= 12;
if (/pm/i.test(meridiem) && nextHours < 12) nextHours += 12;
props.value.setHours(nextHours);
props.value.setMinutes(minutes);
props.value.setSeconds(seconds);
props.value.setMilliseconds(milliseconds);
}
(_props$onClick = props.onClick) === null || _props$onClick === void 0 || _props$onClick.call(props, props.value, {
e: e
});
}
function handleMouseEnter() {
var _props$onMouseEnter;
if (props.disabled) return;
if (props.time) {
var _extractTimeObj2 = extractTimeObj(props.time),
hours = _extractTimeObj2.hours,
minutes = _extractTimeObj2.minutes,
seconds = _extractTimeObj2.seconds,
milliseconds = _extractTimeObj2.milliseconds,
meridiem = _extractTimeObj2.meridiem;
var nextHours = hours;
if (/am/i.test(meridiem) && nextHours === 12) nextHours -= 12;
if (/pm/i.test(meridiem) && nextHours < 12) nextHours += 12;
props.value.setHours(nextHours);
props.value.setMinutes(minutes);
props.value.setSeconds(seconds);
props.value.setMilliseconds(milliseconds);
}
(_props$onMouseEnter = props.onMouseEnter) === null || _props$onMouseEnter === void 0 || _props$onMouseEnter.call(props, props.value);
}
return {
cellClass: cellClass,
COMPONENT_NAME: COMPONENT_NAME,
handleClick: handleClick,
handleMouseEnter: handleMouseEnter
};
},
render: function render() {
var h = arguments[0];
var cellClass = this.cellClass,
COMPONENT_NAME = this.COMPONENT_NAME,
handleClick = this.handleClick,
handleMouseEnter = this.handleMouseEnter;
return h("td", {
"class": cellClass,
"on": {
"click": handleClick,
"mouseenter": handleMouseEnter
}
}, [h("div", {
"class": "".concat(COMPONENT_NAME, "-inner")
}, [this.text])]);
}
});
export { TDatePickerCell as default };
//# sourceMappingURL=Cell.js.map