12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- "use client";
- var __rest = this && this.__rest || function (s, e) {
- var t = {};
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
- if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
- }
- return t;
- };
- import * as React from 'react';
- import ExclamationCircleFilled from "@ant-design/icons/es/icons/ExclamationCircleFilled";
- import classNames from 'classnames';
- import ActionButton from '../_util/ActionButton';
- import { getRenderPropValue } from '../_util/getRenderPropValue';
- import Button from '../button';
- import { convertLegacyProps } from '../button/buttonHelpers';
- import { ConfigContext } from '../config-provider';
- import { useLocale } from '../locale';
- import defaultLocale from '../locale/en_US';
- import PopoverPurePanel from '../popover/PurePanel';
- import useStyle from './style';
- export const Overlay = props => {
- const {
- prefixCls,
- okButtonProps,
- cancelButtonProps,
- title,
- description,
- cancelText,
- okText,
- okType = 'primary',
- icon = /*#__PURE__*/React.createElement(ExclamationCircleFilled, null),
- showCancel = true,
- close,
- onConfirm,
- onCancel,
- onPopupClick
- } = props;
- const {
- getPrefixCls
- } = React.useContext(ConfigContext);
- const [contextLocale] = useLocale('Popconfirm', defaultLocale.Popconfirm);
- const titleNode = getRenderPropValue(title);
- const descriptionNode = getRenderPropValue(description);
- return /*#__PURE__*/React.createElement("div", {
- className: `${prefixCls}-inner-content`,
- onClick: onPopupClick
- }, /*#__PURE__*/React.createElement("div", {
- className: `${prefixCls}-message`
- }, icon && /*#__PURE__*/React.createElement("span", {
- className: `${prefixCls}-message-icon`
- }, icon), /*#__PURE__*/React.createElement("div", {
- className: `${prefixCls}-message-text`
- }, titleNode && /*#__PURE__*/React.createElement("div", {
- className: `${prefixCls}-title`
- }, titleNode), descriptionNode && /*#__PURE__*/React.createElement("div", {
- className: `${prefixCls}-description`
- }, descriptionNode))), /*#__PURE__*/React.createElement("div", {
- className: `${prefixCls}-buttons`
- }, showCancel && (/*#__PURE__*/React.createElement(Button, Object.assign({
- onClick: onCancel,
- size: "small"
- }, cancelButtonProps), cancelText || (contextLocale === null || contextLocale === void 0 ? void 0 : contextLocale.cancelText))), /*#__PURE__*/React.createElement(ActionButton, {
- buttonProps: Object.assign(Object.assign({
- size: 'small'
- }, convertLegacyProps(okType)), okButtonProps),
- actionFn: onConfirm,
- close: close,
- prefixCls: getPrefixCls('btn'),
- quitOnNullishReturnValue: true,
- emitEvent: true
- }, okText || (contextLocale === null || contextLocale === void 0 ? void 0 : contextLocale.okText))));
- };
- const PurePanel = props => {
- const {
- prefixCls: customizePrefixCls,
- placement,
- className,
- style
- } = props,
- restProps = __rest(props, ["prefixCls", "placement", "className", "style"]);
- const {
- getPrefixCls
- } = React.useContext(ConfigContext);
- const prefixCls = getPrefixCls('popconfirm', customizePrefixCls);
- const [wrapCSSVar] = useStyle(prefixCls);
- return wrapCSSVar(/*#__PURE__*/React.createElement(PopoverPurePanel, {
- placement: placement,
- className: classNames(prefixCls, className),
- style: style,
- content: /*#__PURE__*/React.createElement(Overlay, Object.assign({
- prefixCls: prefixCls
- }, restProps))
- }));
- };
- export default PurePanel;
|