UNPKG

@teamix/pro-action

Version:

action组件

34 lines (33 loc) 2.03 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; exports.useDialogInfoAction = useDialogInfoAction; var _provider = require("@teamix/provider"); var _utils = require("@teamix/utils"); var _react = require("react"); var _dialog = _interopRequireDefault(require("./dialog")); var _excluded = ["schema"]; function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 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; } function useDialogInfoAction(action, context) { var _components$ProInfo; var schema = action.schema, others = _objectWithoutProperties(action, _excluded); var _useContext = (0, _react.useContext)(_provider.TeamixProContext), components = _useContext.components; var ProInfo = (_components$ProInfo = components === null || components === void 0 ? void 0 : components.ProInfo) !== null && _components$ProInfo !== void 0 ? _components$ProInfo : _utils.NoContext; return (0, _dialog.default)(Object.assign({ component: ProInfo, closeable: true, size: 'mini', schema: Object.assign({ backgroundColor: 'grey', compacted: false }, schema) }, others), context); } var _default = useDialogInfoAction; exports.default = _default;