UNPKG

nsn-comp

Version:

NSN核心组件

35 lines (28 loc) 1.65 kB
import "antd/es/button/style"; import _Button from "antd/es/button"; import "antd/es/popconfirm/style"; import _Popconfirm from "antd/es/popconfirm"; 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'; /** * table 工具栏中的其他按钮 */ var OtherAction = function OtherAction(props) { var comp = props.comp, text = props.text, popconfirm = props.popconfirm, restProps = _objectWithoutProperties(props, ["comp", "text", "popconfirm"]); if (popconfirm) { return React.createElement(_Popconfirm, Object.assign({ placement: "bottomRight", title: popconfirm.title || text }, popconfirm), React.createElement(_Button, Object.assign({}, restProps, { type: "text" }), " ", text)); } return React.createElement(_Button, Object.assign({}, restProps, { type: "text" }), " ", text); }; export { OtherAction };