xdesign-vue-next
Version:
XDesign Component for vue-next
281 lines (277 loc) • 12.4 kB
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
import { _ as __unplugin_components_0 } from '../_chunks/dep-095b410b.js';
import _slicedToArray from '@babel/runtime/helpers/slicedToArray';
import _defineProperty from '@babel/runtime/helpers/defineProperty';
import { defineComponent, ref, computed, toRefs, watch, createVNode } from 'vue';
import dayjs from 'dayjs';
import { c as customParseFormat } from '../_chunks/dep-78e63d0d.js';
import { RangeInputPopup } from '../range-input/index.js';
import _TimePickerPanel from './panel/time-picker-panel.js';
import { TIME_PICKER_EMPTY } from '../_common/js/time-picker/const.js';
import { validateInputValue, formatInputValue } from '../_common/js/time-picker/utils.js';
import props from './time-range-picker-props.js';
import useVModel from '../hooks/useVModel.js';
import { usePrefixClass } from '../hooks/useConfig.js';
import { useFormDisabled } from '../form/hooks.js';
import { useConfig } from '../config-provider/useConfig.js';
import '../_chunks/dep-3a1cce9f.js';
import '../range-input/range-input.js';
import '../_chunks/dep-fb0628ce.js';
import '../input/index.js';
import '../input/input.js';
import '../_chunks/dep-eade0dcf.js';
import '@babel/runtime/helpers/objectWithoutProperties';
import '../input/props.js';
import '../hooks/tnode.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 '../input/useInput.js';
import '../form/const.js';
import '../input/useLengthLimit.js';
import '../_common/js/log/log.js';
import '../_common/js/utils/helper.js';
import '@babel/runtime/helpers/toConsumableArray';
import 'lodash/isNull';
import 'lodash/isUndefined';
import 'lodash/isNumber';
import 'lodash/isArray';
import '../input/useInputEventHandler.js';
import '../input/useInputWidth.js';
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 '../input/input-group.js';
import '../input/input-group-props.js';
import '../utils/withInstall.js';
import '../range-input/props.js';
import '../range-input/range-input-popup.js';
import '../popup/index.js';
import '../popup/popup.js';
import '@popperjs/core';
import 'lodash/debounce';
import '../utils/dom.js';
import '../utils/easing.js';
import '../_common/js/utils/set-style.js';
import '../popup/container.js';
import '../popup/props.js';
import '../hooks/useResizeObserver.js';
import '../range-input/range-input-popup-props.js';
import '../select-input/useOverlayInnerStyle.js';
import '@babel/runtime/helpers/typeof';
import './panel/props.js';
import 'lodash/isBoolean';
import './props.js';
import './panel/single-panel.js';
import 'lodash/range';
import 'lodash/padStart';
import '../button/button.js';
import '../loading/index.js';
import '../loading/directive.js';
import '../loading/plugin.js';
import '../loading/loading.js';
import '../loading/icon/gradient.js';
import '../_common/js/loading/circle-adapter.js';
import '../loading/props.js';
import '../hooks/useTeleport.js';
import '../button/props.js';
import '../hooks/useRipple.js';
import '../hooks/useKeepAnimation.js';
import '../utils/set-style.js';
import '../hooks/useDisabled.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; }
dayjs.extend(customParseFormat);
var _TimeRangePicker = defineComponent({
name: "XTimeRangePicker",
props: _objectSpread(_objectSpread({}, props), {}, {
rangeInputProps: Object,
popupProps: Object
}),
setup: function setup(props2) {
var componentName = usePrefixClass("time-range-picker");
var _useConfig = useConfig("timePicker"),
globalConfig = _useConfig.globalConfig;
var _useConfig2 = useConfig("classPrefix"),
classPrefix = _useConfig2.classPrefix;
var disabled = useFormDisabled();
var currentPanelIdx = ref(void 0);
var currentValue = ref(TIME_PICKER_EMPTY);
var isShowPanel = ref(false);
var inputClasses = computed(function () {
return ["".concat(componentName.value, "__group"), _defineProperty({}, "".concat(classPrefix.value, "-is-focused"), isShowPanel.value)];
});
var _toRefs = toRefs(props2),
value = _toRefs.value,
modelValue = _toRefs.modelValue,
allowInput = _toRefs.allowInput,
format = _toRefs.format;
var _useVModel = useVModel(value, modelValue, props2.defaultValue, props2.onChange),
_useVModel2 = _slicedToArray(_useVModel, 2),
innerValue = _useVModel2[0],
setInnerValue = _useVModel2[1];
var handleShowPopup = function handleShowPopup(visible, context) {
if (context.trigger === "trigger-element-click") {
isShowPanel.value = true;
return;
}
isShowPanel.value = visible;
};
var handleClear = function handleClear(context) {
var e = context.e;
e.stopPropagation();
currentValue.value = TIME_PICKER_EMPTY;
setInnerValue(null);
};
var handleClick = function handleClick(_ref2) {
var position = _ref2.position;
currentPanelIdx.value = position === "first" ? 0 : 1;
};
var handleTimeChange = function handleTimeChange(newValue, e) {
if (currentPanelIdx.value === 0) {
var _currentValue$value$;
currentValue.value = [newValue, (_currentValue$value$ = currentValue.value[1]) !== null && _currentValue$value$ !== void 0 ? _currentValue$value$ : newValue];
} else {
var _currentValue$value$2;
currentValue.value = [(_currentValue$value$2 = currentValue.value[0]) !== null && _currentValue$value$2 !== void 0 ? _currentValue$value$2 : newValue, newValue];
}
handleOnPick(newValue, e);
};
var handleInputBlur = function handleInputBlur(value2, _ref3) {
var _props2$onBlur;
var e = _ref3.e;
if (allowInput.value) {
var isValidTime = validateInputValue(currentValue.value[currentPanelIdx.value], format.value);
if (isValidTime) {
var _currentValue$value$3, _currentValue$value$4;
var formattedVal = formatInputValue(currentValue.value[currentPanelIdx.value], format.value);
currentPanelIdx.value === 0 ? currentValue.value = [formattedVal, (_currentValue$value$3 = currentValue.value[1]) !== null && _currentValue$value$3 !== void 0 ? _currentValue$value$3 : formattedVal] : currentValue.value = [(_currentValue$value$4 = currentValue.value[0]) !== null && _currentValue$value$4 !== void 0 ? _currentValue$value$4 : formattedVal, formattedVal];
}
}
(_props2$onBlur = props2.onBlur) === null || _props2$onBlur === void 0 ? void 0 : _props2$onBlur.call(props2, {
value: value2,
e: e
});
};
var handleInputChange = function handleInputChange(inputVal, _ref4) {
var _props2$onInput;
var e = _ref4.e,
position = _ref4.position;
currentValue.value = inputVal;
(_props2$onInput = props2.onInput) === null || _props2$onInput === void 0 ? void 0 : _props2$onInput.call(props2, {
value: innerValue.value,
e: e,
position: position === "first" ? "start" : "end"
});
};
var handleClickConfirm = function handleClickConfirm() {
var isValidTime = !currentValue.value.find(function (v) {
return !validateInputValue(v, format.value);
});
if (isValidTime) setInnerValue(currentValue.value);
isShowPanel.value = false;
};
var handleFocus = function handleFocus(value2, _ref5) {
var _props2$onFocus;
var e = _ref5.e,
position = _ref5.position;
(_props2$onFocus = props2.onFocus) === null || _props2$onFocus === void 0 ? void 0 : _props2$onFocus.call(props2, {
value: value2,
e: e,
position: position === "first" ? "start" : "end"
});
};
var handleOnPick = function handleOnPick(pickValue, e) {
var _props2$onPick;
var pickedRangeValue = [];
var context;
if (currentPanelIdx.value === 0) {
var _currentValue$value$5;
pickedRangeValue = [pickValue, (_currentValue$value$5 = currentValue.value[1]) !== null && _currentValue$value$5 !== void 0 ? _currentValue$value$5 : pickValue];
context = {
e: e,
position: "start"
};
} else {
var _currentValue$value$6;
pickedRangeValue = [(_currentValue$value$6 = currentValue.value[0]) !== null && _currentValue$value$6 !== void 0 ? _currentValue$value$6 : pickValue, pickValue];
context = {
e: e,
position: "end"
};
}
(_props2$onPick = props2.onPick) === null || _props2$onPick === void 0 ? void 0 : _props2$onPick.call(props2, pickedRangeValue, context);
};
watch(function () {
return isShowPanel.value;
}, function () {
var _innerValue$value;
currentValue.value = isShowPanel.value ? (_innerValue$value = innerValue.value) !== null && _innerValue$value !== void 0 ? _innerValue$value : TIME_PICKER_EMPTY : TIME_PICKER_EMPTY;
if (!isShowPanel.value) currentPanelIdx.value = void 0;
});
return function () {
var _innerValue$value2, _innerValue$value3;
return createVNode("div", {
"class": componentName.value
}, [createVNode(RangeInputPopup, {
"disabled": disabled.value,
"popupVisible": isShowPanel.value,
"popupProps": _objectSpread({
overlayInnerStyle: {
width: "auto",
padding: 0
},
onVisibleChange: handleShowPopup
}, props2.popupProps),
"onInputChange": handleInputChange,
"inputValue": isShowPanel.value ? currentValue.value : (_innerValue$value2 = innerValue.value) !== null && _innerValue$value2 !== void 0 ? _innerValue$value2 : TIME_PICKER_EMPTY,
"rangeInputProps": _objectSpread({
size: props2.size,
clearable: props2.clearable,
"class": inputClasses.value,
value: isShowPanel.value ? currentValue.value : (_innerValue$value3 = innerValue.value) !== null && _innerValue$value3 !== void 0 ? _innerValue$value3 : void 0,
placeholder: props2.placeholder || [globalConfig.value.placeholder, globalConfig.value.placeholder],
suffixIcon: function suffixIcon() {
return createVNode(__unplugin_components_0, null, null);
},
onClear: handleClear,
onClick: handleClick,
onFocus: handleFocus,
onBlur: handleInputBlur,
readonly: !allowInput.value,
activeIndex: currentPanelIdx.value
}, props2.rangeInputProps),
"status": props2.status,
"tips": props2.tips,
"panel": function panel() {
return createVNode(_TimePickerPanel, {
"steps": props2.steps,
"format": format.value,
"isShowPanel": isShowPanel.value,
"disableTime": props2.disableTime,
"hideDisabledTime": props2.hideDisabledTime,
"isFooterDisplay": true,
"value": currentValue.value[currentPanelIdx.value || 0],
"onChange": handleTimeChange,
"onPick": handleOnPick,
"handleConfirmClick": handleClickConfirm,
"position": currentPanelIdx.value === 0 ? "start" : "end"
}, null);
}
}, null)]);
};
}
});
export { _TimeRangePicker as default };
//# sourceMappingURL=time-range-picker.js.map