xdesign-vue-next
Version:
XDesign Component for vue-next
113 lines (109 loc) • 5.03 kB
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
import _defineProperty from '@babel/runtime/helpers/defineProperty';
import { defineComponent, computed, createVNode } from 'vue';
import { usePrefixClass } from '../../hooks/useConfig.js';
import { extractTimeObj } from '../../_common/js/date-picker/utils.js';
import { Dayjs } from 'dayjs';
import '../../config-provider/useConfig.js';
import 'lodash/isFunction';
import 'lodash/cloneDeep';
import 'lodash/isString';
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 '@babel/runtime/helpers/slicedToArray';
import '@babel/runtime/helpers/objectDestructuringEmpty';
import '@babel/runtime/helpers/extends';
import '../../_chunks/dep-78e63d0d.js';
import 'lodash/chunk';
var TDatePickerCell = defineComponent({
name: "XDatePickerCell",
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
},
setup: function setup(props) {
var COMPONENT_NAME = usePrefixClass("date-picker__cell");
var cellClass = computed(function () {
var _ref;
return [COMPONENT_NAME.value, (_ref = {}, _defineProperty(_ref, "".concat(COMPONENT_NAME.value, "--now"), props.now), _defineProperty(_ref, "".concat(COMPONENT_NAME.value, "--active"), props.active), _defineProperty(_ref, "".concat(COMPONENT_NAME.value, "--disabled"), props.disabled), _defineProperty(_ref, "".concat(COMPONENT_NAME.value, "--highlight"), props.highlight), _defineProperty(_ref, "".concat(COMPONENT_NAME.value, "--hover-highlight"), props.hoverHighlight), _defineProperty(_ref, "".concat(COMPONENT_NAME.value, "--active-start"), props.startOfRange), _defineProperty(_ref, "".concat(COMPONENT_NAME.value, "--active-end"), props.endOfRange), _defineProperty(_ref, "".concat(COMPONENT_NAME.value, "--hover-start"), props.hoverStartOfRange), _defineProperty(_ref, "".concat(COMPONENT_NAME.value, "--hover-end"), props.hoverEndOfRange), _defineProperty(_ref, "".concat(COMPONENT_NAME.value, "--additional"), props.additional), _defineProperty(_ref, "".concat(COMPONENT_NAME.value, "--first-day-of-month"), props.firstDayOfMonth), _defineProperty(_ref, "".concat(COMPONENT_NAME.value, "--last-day-of-month"), props.lastDayOfMonth), _ref)];
});
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 ? 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 ? 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.js.map