@teamix/pro-action
Version:
action组件
16 lines • 1.34 kB
JavaScript
var _excluded = ["schema", "component"];
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 React from 'react';
import useDialogAction from "./dialog";
import { addContext } from "./utils";
export function useDialogComponentAction(action, context) {
var schema = action.schema,
Component = action.component,
others = _objectWithoutProperties(action, _excluded);
return useDialogAction(Object.assign({
content: /*#__PURE__*/React.createElement(Component, addContext(schema, context)),
closeable: true
}, others), context);
}
export default useDialogComponentAction;