|
|
|
/* eslint-disable react/button-has-type */
|
|
|
|
import * as React from 'react';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
import omit from 'rc-util/lib/omit';
|
|
|
|
|
|
|
|
import Group from './button-group';
|
|
|
|
import { ConfigContext } from '../config-provider';
|
|
|
|
import Wave from '../_util/wave';
|
|
|
|
import { tuple } from '../_util/type';
|
|
|
|
import devWarning from '../_util/devWarning';
|
|
|
|
import SizeContext, { SizeType } from '../config-provider/SizeContext';
|
|
|
|
import LoadingIcon from './LoadingIcon';
|
|
|
|
import { cloneElement } from '../_util/reactNode';
|
|
|
|
|
|
|
|
const rxTwoCNChar = /^[\u4e00-\u9fa5]{2}$/;
|
|
|
|
const isTwoCNChar = rxTwoCNChar.test.bind(rxTwoCNChar);
|
|
|
|
function isString(str: any) {
|
|
|
|
return typeof str === 'string';
|
|
|
|
}
|
|
|
|
|
|
|
|
function isUnborderedButtonType(type: ButtonType | undefined) {
|
|
|
|
return type === 'text' || type === 'link';
|
|
|
|
}
|
|
|
|
|
|
|
|
function isReactFragment(node: React.ReactNode) {
|
|
|
|
return React.isValidElement(node) && node.type === React.Fragment;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert one space between two chinese characters automatically.
|
|
|
|
function insertSpace(child: React.ReactChild, needInserted: boolean) {
|
|
|
|
// Check the child if is undefined or null.
|
|
|
|
if (child == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const SPACE = needInserted ? ' ' : '';
|
|
|
|
// strictNullChecks oops.
|
|
|
|
if (
|
|
|
|
typeof child !== 'string' &&
|
|
|
|
typeof child !== 'number' &&
|
|
|
|
isString(child.type) &&
|
|
|
|
isTwoCNChar(child.props.children)
|
|
|
|
) {
|
|
|
|
return cloneElement(child, {
|
|
|
|
children: child.props.children.split('').join(SPACE),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (typeof child === 'string') {
|
|
|
|
return isTwoCNChar(child) ? <span>{child.split('').join(SPACE)}</span> : <span>{child}</span>;
|
|
|
|
}
|
|
|
|
if (isReactFragment(child)) {
|
|
|
|
return <span>{child}</span>;
|
|
|
|
}
|
|
|
|
return child;
|
|
|
|
}
|
|
|
|
|
|
|
|
function spaceChildren(children: React.ReactNode, needInserted: boolean) {
|
|
|
|
let isPrevChildPure: boolean = false;
|
|
|
|
const childList: React.ReactNode[] = [];
|
|
|
|
React.Children.forEach(children, child => {
|
|
|
|
const type = typeof child;
|
|
|
|
const isCurrentChildPure = type === 'string' || type === 'number';
|
|
|
|
if (isPrevChildPure && isCurrentChildPure) {
|
|
|
|
const lastIndex = childList.length - 1;
|
|
|
|
const lastChild = childList[lastIndex];
|
|
|
|
childList[lastIndex] = `${lastChild}${child}`;
|
|
|
|
} else {
|
|
|
|
childList.push(child);
|
|
|
|
}
|
|
|
|
|
|
|
|
isPrevChildPure = isCurrentChildPure;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Pass to React.Children.map to auto fill key
|
|
|
|
return React.Children.map(childList, child =>
|
|
|
|
insertSpace(child as React.ReactChild, needInserted),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const ButtonTypes = tuple('default', 'primary', 'ghost', 'dashed', 'link', 'text');
|
|
|
|
export type ButtonType = typeof ButtonTypes[number];
|
|
|
|
const ButtonShapes = tuple('default', 'circle', 'round');
|
|
|
|
export type ButtonShape = typeof ButtonShapes[number];
|
|
|
|
const ButtonHTMLTypes = tuple('submit', 'button', 'reset');
|
|
|
|
export type ButtonHTMLType = typeof ButtonHTMLTypes[number];
|
|
|
|
|
|
|
|
export type LegacyButtonType = ButtonType | 'danger';
|
|
|
|
export function convertLegacyProps(type?: LegacyButtonType): ButtonProps {
|
|
|
|
if (type === 'danger') {
|
|
|
|
return { danger: true };
|
|
|
|
}
|
|
|
|
return { type };
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface BaseButtonProps {
|
|
|
|
type?: ButtonType;
|
|
|
|
icon?: React.ReactNode;
|
|
|