amis-rpc-design/node_modules/antd/es/float-button/FloatButton.js

85 lines
3.4 KiB
JavaScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
"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 React, { useContext, useMemo } from 'react';
import classNames from 'classnames';
import omit from "rc-util/es/omit";
import { devUseWarning } from '../_util/warning';
import Badge from '../badge';
import { ConfigContext } from '../config-provider';
import Tooltip from '../tooltip';
import FloatButtonGroupContext from './context';
import Content from './FloatButtonContent';
import useStyle from './style';
export const floatButtonPrefixCls = 'float-btn';
const FloatButton = (props, ref) => {
const {
prefixCls: customizePrefixCls,
className,
rootClassName,
type = 'default',
shape = 'circle',
icon,
description,
tooltip,
badge = {}
} = props,
restProps = __rest(props, ["prefixCls", "className", "rootClassName", "type", "shape", "icon", "description", "tooltip", "badge"]);
const {
getPrefixCls,
direction
} = useContext(ConfigContext);
const groupShape = useContext(FloatButtonGroupContext);
const prefixCls = getPrefixCls(floatButtonPrefixCls, customizePrefixCls);
const [wrapSSR, hashId] = useStyle(prefixCls);
const mergeShape = groupShape || shape;
const classString = classNames(hashId, prefixCls, className, rootClassName, `${prefixCls}-${type}`, `${prefixCls}-${mergeShape}`, {
[`${prefixCls}-rtl`]: direction === 'rtl'
});
// 虽然在 ts 中已经 omit 过了,但是为了防止多余的属性被透传进来,这里再 omit 一遍,以防万一
const badgeProps = useMemo(() => omit(badge, ['title', 'children', 'status', 'text']), [badge]);
const contentProps = useMemo(() => ({
prefixCls,
description,
icon,
type
}), [prefixCls, description, icon, type]);
let buttonNode = /*#__PURE__*/React.createElement("div", {
className: `${prefixCls}-body`
}, /*#__PURE__*/React.createElement(Content, Object.assign({}, contentProps)));
if ('badge' in props) {
buttonNode = /*#__PURE__*/React.createElement(Badge, Object.assign({}, badgeProps), buttonNode);
}
if ('tooltip' in props) {
buttonNode = /*#__PURE__*/React.createElement(Tooltip, {
title: tooltip,
placement: direction === 'rtl' ? 'right' : 'left'
}, buttonNode);
}
if (process.env.NODE_ENV !== 'production') {
const warning = devUseWarning('FloatButton');
process.env.NODE_ENV !== "production" ? warning(!(shape === 'circle' && description), 'usage', 'supported only when `shape` is `square`. Due to narrow space for text, short sentence is recommended.') : void 0;
}
return wrapSSR(props.href ? /*#__PURE__*/React.createElement("a", Object.assign({
ref: ref
}, restProps, {
className: classString
}), buttonNode) : /*#__PURE__*/React.createElement("button", Object.assign({
ref: ref
}, restProps, {
className: classString,
type: "button"
}), buttonNode));
};
const ForwardFloatButton = /*#__PURE__*/React.forwardRef(FloatButton);
if (process.env.NODE_ENV !== 'production') {
ForwardFloatButton.displayName = 'FloatButton';
}
export default ForwardFloatButton;