File size: 7,007 Bytes
5941ac2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | import React from 'react';
import FileTextOutlined from '@ant-design/icons/FileTextOutlined';
import { omit } from '@rc-component/util';
import { clsx } from 'clsx';
import convertToTooltipProps from '../_util/convertToTooltipProps';
import { useMergeSemantic, useZIndex } from '../_util/hooks';
import type { SemanticClassNamesType, SemanticStylesType } from '../_util/hooks';
import { devUseWarning } from '../_util/warning';
import Badge from '../badge';
import type { BadgeProps } from '../badge';
import Button from '../button/Button';
import type {
ButtonSemanticClassNames,
ButtonSemanticName,
ButtonSemanticStyles,
} from '../button/Button';
import type { ButtonHTMLType } from '../button/buttonHelpers';
import { ConfigContext } from '../config-provider';
import useCSSVarCls from '../config-provider/hooks/useCSSVarCls';
import Tooltip from '../tooltip';
import type { TooltipProps } from '../tooltip';
import type BackTop from './BackTop';
import { GroupContext } from './context';
import type FloatButtonGroup from './FloatButtonGroup';
import type PurePanel from './PurePanel';
import useStyle from './style';
export type FloatButtonElement = HTMLAnchorElement & HTMLButtonElement;
export interface FloatButtonRef {
nativeElement: FloatButtonElement | null;
}
export type FloatButtonType = 'default' | 'primary';
export type FloatButtonShape = 'circle' | 'square';
export type FloatButtonGroupTrigger = 'click' | 'hover';
export type FloatButtonBadgeProps = Omit<BadgeProps, 'status' | 'text' | 'title' | 'children'>;
export type FloatButtonSemanticName = ButtonSemanticName;
export type FloatButtonClassNamesType = SemanticClassNamesType<
FloatButtonProps,
ButtonSemanticClassNames
>;
export type FloatButtonStylesType = SemanticStylesType<FloatButtonProps, ButtonSemanticStyles>;
export interface FloatButtonProps extends React.DOMAttributes<FloatButtonElement> {
// Style
prefixCls?: string;
className?: string;
rootClassName?: string;
style?: React.CSSProperties;
classNames?: FloatButtonClassNamesType;
styles?: FloatButtonStylesType;
// Others
icon?: React.ReactNode;
/** @deprecated Please use `content` instead. */
description?: React.ReactNode;
content?: React.ReactNode;
type?: FloatButtonType;
shape?: FloatButtonShape;
tooltip?: React.ReactNode | TooltipProps;
href?: string;
target?: React.HTMLAttributeAnchorTarget;
badge?: FloatButtonBadgeProps;
/**
* @since 5.21.0
* @default button
*/
htmlType?: ButtonHTMLType;
'aria-label'?: React.HtmlHTMLAttributes<HTMLElement>['aria-label'];
}
export const floatButtonPrefixCls = 'float-btn';
const InternalFloatButton = React.forwardRef<FloatButtonElement, FloatButtonProps>((props, ref) => {
const {
prefixCls: customizePrefixCls,
className,
rootClassName,
style,
type = 'default',
shape = 'circle',
icon,
description,
content,
tooltip,
badge = {},
classNames,
styles,
...restProps
} = props;
const { getPrefixCls, direction } = React.useContext(ConfigContext);
const groupContext = React.useContext(GroupContext);
const prefixCls = getPrefixCls(floatButtonPrefixCls, customizePrefixCls);
const rootCls = useCSSVarCls(prefixCls);
const {
shape: contextShape,
individual: contextIndividual,
classNames: contextClassNames,
styles: contextStyles,
} = groupContext || {};
const mergedShape = contextShape || shape;
const mergedIndividual = contextIndividual ?? true;
const mergedContent = content ?? description;
// =========== Merged Props for Semantic ==========
const mergedProps: FloatButtonProps = {
...props,
type,
shape: mergedShape,
};
// ============================ Styles ============================
const [hashId, cssVarCls] = useStyle(prefixCls, rootCls);
const floatButtonClassNames = React.useMemo<FloatButtonProps['classNames']>(
() => ({ icon: `${prefixCls}-icon`, content: `${prefixCls}-content` }),
[prefixCls],
);
const [mergedClassNames, mergedStyles] = useMergeSemantic<
FloatButtonClassNamesType,
FloatButtonStylesType,
FloatButtonProps
>([floatButtonClassNames, contextClassNames, classNames], [contextStyles, styles], {
props: mergedProps,
});
// ============================= Icon =============================
const mergedIcon = !mergedContent && !icon ? <FileTextOutlined /> : icon;
// ============================ zIndex ============================
const [zIndex] = useZIndex('FloatButton', style?.zIndex as number);
const mergedStyle: React.CSSProperties = { ...style, zIndex };
// ============================ Badge =============================
// 虽然在 ts 中已经 omit 过了,但是为了防止多余的属性被透传进来,这里再 omit 一遍,以防万一
const badgeProps = omit(badge, ['title', 'children', 'status', 'text'] as any[]) as typeof badge;
const badgeNode = 'badge' in props && (
<Badge
{...badgeProps}
className={clsx(badgeProps.className, `${prefixCls}-badge`, {
[`${prefixCls}-badge-dot`]: badgeProps.dot,
})}
/>
);
// =========================== Tooltip ============================
const tooltipProps = convertToTooltipProps(tooltip);
// =========================== Warning ============================
if (process.env.NODE_ENV !== 'production') {
const warning = devUseWarning('FloatButton');
warning(
!(mergedShape === 'circle' && mergedContent),
'usage',
'supported only when `shape` is `square`. Due to narrow space for text, short sentence is recommended.',
);
warning.deprecated(!description, 'description', 'content');
}
// ============================ Render ============================
let node = (
<Button
{...restProps}
ref={ref}
// Styles
className={clsx(
hashId,
cssVarCls,
rootCls,
prefixCls,
className,
rootClassName,
`${prefixCls}-${type}`,
`${prefixCls}-${mergedShape}`,
{
[`${prefixCls}-rtl`]: direction === 'rtl',
[`${prefixCls}-individual`]: mergedIndividual,
[`${prefixCls}-icon-only`]: !mergedContent,
},
)}
classNames={mergedClassNames}
styles={mergedStyles}
style={mergedStyle}
shape={mergedShape}
// Others
type={type}
size="large"
icon={mergedIcon}
_skipSemantic
>
{mergedContent}
{badgeNode}
</Button>
);
if (tooltipProps) {
node = <Tooltip {...tooltipProps}>{node}</Tooltip>;
}
return node;
});
type CompoundedComponent = typeof InternalFloatButton & {
Group: typeof FloatButtonGroup;
BackTop: typeof BackTop;
_InternalPanelDoNotUseOrYouWillBeFired: typeof PurePanel;
};
const FloatButton = InternalFloatButton as CompoundedComponent;
if (process.env.NODE_ENV !== 'production') {
FloatButton.displayName = 'FloatButton';
}
export default FloatButton;
|