@ifed/provider
Version:
@ifed/provider
43 lines • 4.6 kB
JavaScript
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
var _excluded = ["children"];
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; }
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
import { default as AntConfigProvider } from 'antd/es/config-provider';
import defaultRenderEmpty from 'antd/es/config-provider/defaultRenderEmpty';
import { pick } from 'lodash-es';
import * as React from 'react';
import { jsx as _jsx } from "react/jsx-runtime";
export var ConfigContext = /*#__PURE__*/React.createContext({
getPrefixCls: function getPrefixCls(suffixCls, customizePrefixCls) {
if (customizePrefixCls) return customizePrefixCls;
return suffixCls ? "ant-ifed-".concat(suffixCls) : 'ant';
},
renderEmpty: defaultRenderEmpty
});
var Provider = function Provider(_ref) {
var children = _ref.children,
config = _objectWithoutProperties(_ref, _excluded);
var antConfig = pick(config, ['getTargetContainer', 'getPopupContainer', 'prefixCls', 'iconPrefixCls', 'children', 'renderEmpty', 'csp', 'autoInsertSpaceInButton', 'form', 'input', 'pagination', 'locale', 'pageHeader', 'componentSize', 'componentDisabled', 'direction', 'space', 'virtual', 'dropdownMatchSelectWidth']);
var defaultConfig = React.useContext(ConfigContext);
var getPrefixCls = function getPrefixCls(suffixCls, customizePrefixCls) {
var prefixCls = config !== null && config !== void 0 && config.prefixCls ? "".concat(config === null || config === void 0 ? void 0 : config.prefixCls) : 'ant-ifed';
if (customizePrefixCls) return customizePrefixCls;
return suffixCls ? "".concat(prefixCls, "-").concat(suffixCls) : prefixCls;
};
return /*#__PURE__*/_jsx(ConfigContext.Provider, {
value: _objectSpread(_objectSpread({}, defaultConfig), {}, {
getPrefixCls: getPrefixCls
}, config),
children: /*#__PURE__*/_jsx(AntConfigProvider, _objectSpread(_objectSpread({}, _objectSpread({
getPrefixCls: getPrefixCls
}, antConfig)), {}, {
children: children
}))
});
};
export default Provider;