187 lines
6.7 KiB
JavaScript
187 lines
6.7 KiB
JavaScript
"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';
|
|
import DisabledContext from '../config-provider/DisabledContext';
|
|
export const {
|
|
Option
|
|
} = RcMentions;
|
|
function loadingFilterOption() {
|
|
return true;
|
|
}
|
|
const InternalMentions = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
className,
|
|
rootClassName,
|
|
disabled: customDisabled,
|
|
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);
|
|
// ===================== Disabled =====================
|
|
const contextDisabled = React.useContext(DisabledContext);
|
|
const mergedDisabled = customDisabled !== null && customDisabled !== void 0 ? customDisabled : contextDisabled;
|
|
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: mergedDisabled,
|
|
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`]: mergedDisabled,
|
|
[`${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; |