| import * as React from 'react'; |
| import classNames from 'classnames'; |
| import RcMentions from 'rc-mentions'; |
| import type { |
| DataDrivenOptionProps as MentionsOptionProps, |
| MentionsProps as RcMentionsProps, |
| MentionsRef as RcMentionsRef, |
| } from 'rc-mentions/lib/Mentions'; |
| import { composeRef } from 'rc-util/lib/ref'; |
|
|
| import getAllowClear from '../_util/getAllowClear'; |
| import genPurePanel from '../_util/PurePanel'; |
| import type { InputStatus } from '../_util/statusUtils'; |
| import { getMergedStatus, getStatusClassNames } from '../_util/statusUtils'; |
| import toList from '../_util/toList'; |
| import { devUseWarning } from '../_util/warning'; |
| import { ConfigContext } from '../config-provider'; |
| import type { Variant } from '../config-provider'; |
| import DefaultRenderEmpty from '../config-provider/defaultRenderEmpty'; |
| import useCSSVarCls from '../config-provider/hooks/useCSSVarCls'; |
| import { FormItemInputContext } from '../form/context'; |
| import useVariant from '../form/hooks/useVariants'; |
| import Spin from '../spin'; |
| import useStyle from './style'; |
|
|
| export const { Option } = RcMentions; |
|
|
| function loadingFilterOption() { |
| return true; |
| } |
|
|
| export type MentionPlacement = 'top' | 'bottom'; |
|
|
| export type { DataDrivenOptionProps as MentionsOptionProps } from 'rc-mentions/lib/Mentions'; |
|
|
| export interface OptionProps { |
| value: string; |
| children: React.ReactNode; |
| [key: string]: any; |
| } |
|
|
| export interface MentionProps extends Omit<RcMentionsProps, 'suffix'> { |
| rootClassName?: string; |
| loading?: boolean; |
| status?: InputStatus; |
| options?: MentionsOptionProps[]; |
| popupClassName?: string; |
| |
| |
| |
| |
| variant?: Variant; |
| } |
|
|
| export interface MentionsProps extends MentionProps {} |
|
|
| export interface MentionsRef extends RcMentionsRef {} |
|
|
| interface MentionsConfig { |
| prefix?: string | string[]; |
| split?: string; |
| } |
|
|
| interface MentionsEntity { |
| prefix: string; |
| value: string; |
| } |
|
|
| const InternalMentions = React.forwardRef<MentionsRef, MentionProps>((props, ref) => { |
| const { |
| prefixCls: customizePrefixCls, |
| className, |
| rootClassName, |
| disabled, |
| loading, |
| filterOption, |
| children, |
| notFoundContent, |
| options, |
| status: customStatus, |
| allowClear = false, |
| popupClassName, |
| style, |
| variant: customVariant, |
| ...restProps |
| } = props; |
| const [focused, setFocused] = React.useState(false); |
| const innerRef = React.useRef<MentionsRef>(null); |
| const mergedRef = composeRef(ref, innerRef); |
|
|
| |
| if (process.env.NODE_ENV !== 'production') { |
| const warning = devUseWarning('Mentions'); |
|
|
| warning.deprecated(!children, 'Mentions.Option', 'options'); |
| } |
|
|
| const { |
| getPrefixCls, |
| renderEmpty, |
| direction, |
| mentions: contextMentions, |
| } = React.useContext(ConfigContext); |
| const { |
| status: contextStatus, |
| hasFeedback, |
| feedbackIcon, |
| } = React.useContext(FormItemInputContext); |
| const mergedStatus = getMergedStatus(contextStatus, customStatus); |
|
|
| const onFocus: React.FocusEventHandler<HTMLTextAreaElement> = (...args) => { |
| if (restProps.onFocus) { |
| restProps.onFocus(...args); |
| } |
| setFocused(true); |
| }; |
|
|
| const onBlur: React.FocusEventHandler<HTMLTextAreaElement> = (...args) => { |
| if (restProps.onBlur) { |
| restProps.onBlur(...args); |
| } |
|
|
| setFocused(false); |
| }; |
|
|
| const notFoundContentEle = React.useMemo<React.ReactNode>(() => { |
| if (notFoundContent !== undefined) { |
| return notFoundContent; |
| } |
| return renderEmpty?.('Select') || <DefaultRenderEmpty componentName="Select" />; |
| }, [notFoundContent, renderEmpty]); |
|
|
| const mentionOptions = React.useMemo<React.ReactNode>(() => { |
| if (loading) { |
| return ( |
| <Option value="ANTD_SEARCHING" disabled> |
| <Spin size="small" /> |
| </Option> |
| ); |
| } |
| return children; |
| }, [loading, children]); |
|
|
| const mergedOptions = loading |
| ? [ |
| { |
| value: 'ANTD_SEARCHING', |
| disabled: true, |
| label: <Spin size="small" />, |
| }, |
| ] |
| : options; |
|
|
| const mentionsfilterOption = loading ? loadingFilterOption : filterOption; |
|
|
| const prefixCls = getPrefixCls('mentions', customizePrefixCls); |
|
|
| const mergedAllowClear = getAllowClear(allowClear); |
|
|
| |
| const rootCls = useCSSVarCls(prefixCls); |
| const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls, rootCls); |
|
|
| const [variant, enableVariantCls] = useVariant('mentions', customVariant); |
|
|
| const suffixNode = hasFeedback && <>{feedbackIcon}</>; |
|
|
| const mergedClassName = classNames( |
| contextMentions?.className, |
| className, |
| rootClassName, |
| cssVarCls, |
| rootCls, |
| ); |
|
|
| const mentions = ( |
| <RcMentions |
| silent={loading} |
| prefixCls={prefixCls} |
| notFoundContent={notFoundContentEle} |
| className={mergedClassName} |
| disabled={disabled} |
| allowClear={mergedAllowClear} |
| direction={direction} |
| style={{ ...contextMentions?.style, ...style }} |
| {...restProps} |
| filterOption={mentionsfilterOption} |
| onFocus={onFocus} |
| onBlur={onBlur} |
| dropdownClassName={classNames(popupClassName, rootClassName, hashId, cssVarCls, rootCls)} |
| ref={mergedRef} |
| options={mergedOptions} |
| suffix={suffixNode} |
| classNames={{ |
| mentions: classNames( |
| { |
| [`${prefixCls}-disabled`]: disabled, |
| [`${prefixCls}-focused`]: focused, |
| [`${prefixCls}-rtl`]: direction === 'rtl', |
| }, |
| hashId, |
| ), |
| variant: classNames( |
| { |
| [`${prefixCls}-${variant}`]: enableVariantCls, |
| }, |
| getStatusClassNames(prefixCls, mergedStatus), |
| ), |
| affixWrapper: hashId, |
| }} |
| > |
| {mentionOptions} |
| </RcMentions> |
| ); |
|
|
| return wrapCSSVar(mentions); |
| }); |
|
|
| type CompoundedComponent = typeof InternalMentions & { |
| Option: typeof Option; |
| _InternalPanelDoNotUseOrYouWillBeFired: typeof PurePanel; |
| getMentions: (value: string, config?: MentionsConfig) => MentionsEntity[]; |
| }; |
|
|
| const Mentions = InternalMentions as CompoundedComponent; |
|
|
| if (process.env.NODE_ENV !== 'production') { |
| Mentions.displayName = 'Mentions'; |
| } |
|
|
| Mentions.Option = Option; |
|
|
| |
| |
| const PurePanel = genPurePanel(Mentions, undefined, undefined, 'mentions'); |
| Mentions._InternalPanelDoNotUseOrYouWillBeFired = PurePanel; |
|
|
| Mentions.getMentions = (value = '', config: MentionsConfig = {}): MentionsEntity[] => { |
| const { prefix = '@', split = ' ' } = config; |
| const prefixList: string[] = toList(prefix); |
|
|
| return value |
| .split(split) |
| .map((str = ''): MentionsEntity | null => { |
| let hitPrefix: string | null = null; |
|
|
| prefixList.some((prefixStr) => { |
| const startStr = str.slice(0, prefixStr.length); |
| if (startStr === prefixStr) { |
| hitPrefix = prefixStr; |
| return true; |
| } |
| return false; |
| }); |
|
|
| if (hitPrefix !== null) { |
| return { |
| prefix: hitPrefix, |
| value: str.slice((hitPrefix as string).length), |
| }; |
| } |
| return null; |
| }) |
| .filter((entity): entity is MentionsEntity => !!entity && !!entity.value); |
| }; |
|
|
| export default Mentions; |
|
|