UNPKG

xdesign-vue-next

Version:

XDesign Component for vue-next

112 lines (108 loc) 4.33 kB
/** * xdesign v1.0.6 * (c) 2023 xdesign * @license MIT */ import _defineProperty from '@babel/runtime/helpers/defineProperty'; import isFunction from 'lodash/isFunction'; import isBoolean from 'lodash/isBoolean'; import { computed, nextTick } from 'vue'; import dayjs from 'dayjs'; import { COMPONENT_NAME } from '../const.js'; import { useConfig } from '../../config-provider/useConfig.js'; 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'; 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; } 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