123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- "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 * as React from 'react';
- import classNames from 'classnames';
- import RcMentions from 'rc-mentions';
- import { composeRef } from "rc-util/es/ref";
- import getAllowClear from '../_util/getAllowClear';
- import genPurePanel from '../_util/PurePanel';
- import { getMergedStatus, getStatusClassNames } from '../_util/statusUtils';
- import toList from '../_util/toList';
- import { devUseWarning } from '../_util/warning';
- import { ConfigContext } 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;
- }
- const InternalMentions = /*#__PURE__*/React.forwardRef((props, ref) => {
- const {
- prefixCls: customizePrefixCls,
- className,
- rootClassName,
- disabled,
- loading,
- filterOption,
- children,
- notFoundContent,
- options,
- status: customStatus,
- allowClear = false,
- popupClassName,
- style,
- variant: customVariant
- } = props,
- restProps = __rest(props, ["prefixCls", "className", "rootClassName", "disabled", "loading", "filterOption", "children", "notFoundContent", "options", "status", "allowClear", "popupClassName", "style", "variant"]);
- const [focused, setFocused] = React.useState(false);
- const innerRef = React.useRef(null);
- const mergedRef = composeRef(ref, innerRef);
- // =================== Warning =====================
- 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 = (...args) => {
- if (restProps.onFocus) {
- restProps.onFocus.apply(restProps, args);
- }
- setFocused(true);
- };
- const onBlur = (...args) => {
- if (restProps.onBlur) {
- restProps.onBlur.apply(restProps, args);
- }
- setFocused(false);
- };
- const notFoundContentEle = React.useMemo(() => {
- if (notFoundContent !== undefined) {
- return notFoundContent;
- }
- return (renderEmpty === null || renderEmpty === void 0 ? void 0 : renderEmpty('Select')) || /*#__PURE__*/React.createElement(DefaultRenderEmpty, {
- componentName: "Select"
- });
- }, [notFoundContent, renderEmpty]);
- const mentionOptions = React.useMemo(() => {
- if (loading) {
- return /*#__PURE__*/React.createElement(Option, {
- value: "ANTD_SEARCHING",
- disabled: true
- }, /*#__PURE__*/React.createElement(Spin, {
- size: "small"
- }));
- }
- return children;
- }, [loading, children]);
- const mergedOptions = loading ? [{
- value: 'ANTD_SEARCHING',
- disabled: true,
- label: /*#__PURE__*/React.createElement(Spin, {
- size: "small"
- })
- }] : options;
- const mentionsfilterOption = loading ? loadingFilterOption : filterOption;
- const prefixCls = getPrefixCls('mentions', customizePrefixCls);
- const mergedAllowClear = getAllowClear(allowClear);
- // Style
- const rootCls = useCSSVarCls(prefixCls);
- const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls, rootCls);
- const [variant, enableVariantCls] = useVariant('mentions', customVariant);
- const suffixNode = hasFeedback && /*#__PURE__*/React.createElement(React.Fragment, null, feedbackIcon);
- const mergedClassName = classNames(contextMentions === null || contextMentions === void 0 ? void 0 : contextMentions.className, className, rootClassName, cssVarCls, rootCls);
- const mentions = /*#__PURE__*/React.createElement(RcMentions, Object.assign({
- silent: loading,
- prefixCls: prefixCls,
- notFoundContent: notFoundContentEle,
- className: mergedClassName,
- disabled: disabled,
- allowClear: mergedAllowClear,
- direction: direction,
- style: Object.assign(Object.assign({}, contextMentions === null || contextMentions === void 0 ? void 0 : 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);
- return wrapCSSVar(mentions);
- });
- const Mentions = InternalMentions;
- if (process.env.NODE_ENV !== 'production') {
- Mentions.displayName = 'Mentions';
- }
- Mentions.Option = Option;
- // We don't care debug panel
- /* istanbul ignore next */
- const PurePanel = genPurePanel(Mentions, undefined, undefined, 'mentions');
- Mentions._InternalPanelDoNotUseOrYouWillBeFired = PurePanel;
- Mentions.getMentions = (value = '', config = {}) => {
- const {
- prefix = '@',
- split = ' '
- } = config;
- const prefixList = toList(prefix);
- return value.split(split).map((str = '') => {
- let hitPrefix = 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.length)
- };
- }
- return null;
- }).filter(entity => !!entity && !!entity.value);
- };
- export default Mentions;
|