UNPKG

tdesign-vue-next

Version:
110 lines (106 loc) 4.97 kB
/** * tdesign v1.11.5 * (c) 2025 tdesign * @license MIT */ import { _ as _defineProperty } from '../../../_chunks/dep-da95471f.mjs'; import { defineComponent, computed, createVNode } from 'vue'; import { usePrefixClass } from '../../../hooks/useConfig.mjs'; import { e as extractTimeObj } from '../../../_chunks/dep-9ae97283.mjs'; import { a as dayjs_min } from '../../../_chunks/dep-37fa6ccb.mjs'; import '../../../_chunks/dep-4ed7019e.mjs'; import '../../../config-provider/hooks/useConfig.mjs'; import 'lodash-es'; import '../../../config-provider/utils/context.mjs'; import '../../../_chunks/dep-a5ae2f3f.mjs'; import '../../../_chunks/dep-82d2a14f.mjs'; import '../../../_chunks/dep-7fb24b17.mjs'; import '../../../_chunks/dep-6d9c1bfc.mjs'; import '../../../_chunks/dep-9f375e51.mjs'; import '../../../_chunks/dep-b59283d0.mjs'; import '../../../_chunks/dep-748f1828.mjs'; import '../../../_chunks/dep-198540b0.mjs'; import '../../../_chunks/dep-88187fb2.mjs'; 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, dayjsObj: dayjs_min.exports.Dayjs }, 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 function () { return createVNode("td", { "class": cellClass.value, "onClick": handleClick, "onMouseenter": handleMouseEnter }, [createVNode("div", { "class": "".concat(COMPONENT_NAME.value, "-inner") }, [props.text])]); }; } }); export { TDatePickerCell as default }; //# sourceMappingURL=Cell.mjs.map