tdesign-vue-next
Version:
TDesign Component for vue-next
112 lines (108 loc) • 4.27 kB
JavaScript
/**
* tdesign v1.19.2
* (c) 2026 tdesign
* @license MIT
*/
import _defineProperty from '@babel/runtime/helpers/defineProperty';
import { isBoolean, isFunction } from 'lodash-es';
import { computed, nextTick } from 'vue';
import dayjs from 'dayjs';
import { COMPONENT_NAME } from '../constants/index.js';
import '@babel/runtime/helpers/toConsumableArray';
import '@babel/runtime/helpers/typeof';
import '../../_chunks/dep-c68ea098.js';
import { useConfig } from '../../config-provider/hooks/useConfig.js';
import '@babel/runtime/helpers/slicedToArray';
import '../../_chunks/dep-91fc762d.js';
import '../../_chunks/dep-f0f392fb.js';
import '../../config-provider/utils/context.js';
import '../../_chunks/dep-509ddbe3.js';
import '@babel/runtime/helpers/createClass';
import '@babel/runtime/helpers/classCallCheck';
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; }
var getDefaultControllerConfigData = function getDefaultControllerConfigData() {
var visible = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;
return {
visible: visible,
disabled: false,
mode: {
visible: true,
radioGroupProps: {}
},
year: {
visible: true,
selectProps: {}
},
month: {
visible: true,
selectProps: {}
},
weekend: {
visible: true,
showWeekendButtonProps: {},
hideWeekendButtonProps: {}
},
current: {
visible: true,
currentDayButtonProps: {},
currentMonthButtonProps: {}
}
};
};
function userController(props, state) {
var _useConfig = useConfig(COMPONENT_NAME),
globalConfig = _useConfig.globalConfig;
var options = computed(function () {
var dayJsFilterDate = dayjs("".concat(state.curSelectedYear, "-").concat(state.curSelectedMonth));
var re = {
isShowWeekend: state.isShowWeekend,
filterDate: dayJsFilterDate.toDate(),
formattedFilterDate: dayJsFilterDate.format(props.format),
mode: state.curSelectedMode
};
return re;
});
var configData = computed(function () {
var _ref, _props$controllerConf;
var controllerConfig = (_ref = (_props$controllerConf = props.controllerConfig) !== null && _props$controllerConf !== void 0 ? _props$controllerConf : globalConfig.value.controllerConfig) !== null && _ref !== void 0 ? _ref : true;
if (isBoolean(controllerConfig)) {
return getDefaultControllerConfigData(controllerConfig);
}
return _objectSpread(_objectSpread({}, getDefaultControllerConfigData()), controllerConfig);
});
var visible = computed(function () {
return !!configData.value && configData.value.visible;
});
function checkControllerVisible(name) {
var re = true;
var conf = configData.value;
if (!conf || !conf.visible || conf[name] === false || conf[name] && !conf[name].visible) {
re = false;
}
return re;
}
function checkControllerDisabled(name, propsName) {
var re = false;
var conf = configData.value;
if (conf && (conf.disabled || conf[name] && conf[name][propsName] && conf[name][propsName].disabled)) {
re = true;
}
return re;
}
function emitControllerChange() {
nextTick(function () {
isFunction(props.onControllerChange) && props.onControllerChange(_objectSpread({}, options.value));
});
}
return {
options: options,
configData: configData,
visible: visible,
checkControllerVisible: checkControllerVisible,
checkControllerDisabled: checkControllerDisabled,
emitControllerChange: emitControllerChange
};
}
export { userController };
//# sourceMappingURL=useController.js.map