import * as React from 'react'; import classNames from 'classnames'; import Input, { InputProps } from './Input'; import Icon from '../icon'; import Button from '../button'; import { ConfigConsumer, ConfigConsumerProps } from '../config-provider'; export interface SearchProps extends InputProps { inputPrefixCls?: string; onSearch?: ( value: string, event?: | React.ChangeEvent | React.MouseEvent | React.KeyboardEvent, ) => void; enterButton?: React.ReactNode; loading?: boolean; } export default class Search extends React.Component { static defaultProps = { enterButton: false, }; private input: Input; saveInput = (node: Input) => { this.input = node; }; onChange = (e: React.ChangeEvent) => { const { onChange, onSearch } = this.props; if (e && e.target && e.type === 'click' && onSearch) { onSearch((e as React.ChangeEvent).target.value, e); } if (onChange) { onChange(e); } }; onSearch = (e: React.MouseEvent | React.KeyboardEvent) => { const { onSearch, loading, disabled } = this.props; if (loading || disabled) { return; } if (onSearch) { onSearch(this.input.input.value, e); } this.input.focus(); }; focus() { this.input.focus(); } blur() { this.input.blur(); } renderLoading = (prefixCls: string) => { const { enterButton, size } = this.props; if (enterButton) { return ( ); } return ; }; renderSuffix = (prefixCls: string) => { const { suffix, enterButton, loading } = this.props; if (loading && !enterButton) { return [suffix, this.renderLoading(prefixCls)]; } if (enterButton) return suffix; const node = ( ); if (suffix) { let cloneSuffix = suffix; if (React.isValidElement(cloneSuffix) && !cloneSuffix.key) { cloneSuffix = React.cloneElement(cloneSuffix, { key: 'originSuffix', }); } return [cloneSuffix, node]; } return node; }; renderAddonAfter = (prefixCls: string) => { const { enterButton, size, disabled, addonAfter, loading } = this.props; const btnClassName = `${prefixCls}-button`; if (loading && enterButton) { return [this.renderLoading(prefixCls), addonAfter]; } if (!enterButton) return addonAfter; let button: React.ReactNode; const enterButtonAsElement = enterButton as React.ReactElement; const isAntdButton = enterButtonAsElement.type && (enterButtonAsElement.type as typeof Button).__ANT_BUTTON === true; if (isAntdButton || enterButtonAsElement.type === 'button') { button = React.cloneElement(enterButtonAsElement, { onClick: this.onSearch, key: 'enterButton', ...(isAntdButton ? { className: btnClassName, size, } : {}), }); } else { button = ( ); } if (addonAfter) { return [button, addonAfter]; } return button; }; renderSearch = ({ getPrefixCls }: ConfigConsumerProps) => { const { prefixCls: customizePrefixCls, inputPrefixCls: customizeInputPrefixCls, size, enterButton, className, ...restProps } = this.props; delete (restProps as any).onSearch; const prefixCls = getPrefixCls('input-search', customizePrefixCls); const inputPrefixCls = getPrefixCls('input', customizeInputPrefixCls); let inputClassName; if (enterButton) { inputClassName = classNames(prefixCls, className, { [`${prefixCls}-enter-button`]: !!enterButton, [`${prefixCls}-${size}`]: !!size, }); } else { inputClassName = classNames(prefixCls, className); } return ( ); }; render() { return {this.renderSearch}; } }