ant-design/components/mention/index.tsx

152 lines
3.9 KiB
TypeScript
Raw Normal View History

import * as React from 'react';
import RcMention, { Nav, toString, toEditorState, getMentions } from 'rc-editor-mention';
2018-11-21 22:38:27 +08:00
import { polyfill } from 'react-lifecycles-compat';
import classNames from 'classnames';
import shallowequal from 'shallowequal';
2016-11-14 13:20:00 +08:00
import Icon from '../icon';
export type MentionPlacement = 'top' | 'bottom';
2016-07-04 10:31:27 +08:00
export interface MentionProps {
prefixCls?: string;
suggestionStyle?: React.CSSProperties;
2016-07-04 10:31:27 +08:00
suggestions?: Array<any>;
2018-07-21 07:42:29 +08:00
onSearchChange?: (value: string, trigger: string) => any;
onChange?: (contentState: any) => any;
2016-07-04 10:31:27 +08:00
notFoundContent?: any;
2018-07-21 07:42:29 +08:00
loading?: boolean;
style?: React.CSSProperties;
defaultValue?: any;
value?: any;
2016-07-18 17:58:55 +08:00
className?: string;
2018-07-21 07:42:29 +08:00
multiLines?: boolean;
prefix?: string | string[];
placeholder?: string;
getSuggestionContainer?: (triggerNode: Element) => HTMLElement;
2017-11-21 19:03:21 +08:00
onFocus?: React.FocusEventHandler<HTMLElement>;
onBlur?: React.FocusEventHandler<HTMLElement>;
2018-07-21 07:42:29 +08:00
onSelect?: (suggestion: string, data?: any) => any;
readOnly?: boolean;
disabled?: boolean;
placement?: MentionPlacement;
2016-07-04 10:31:27 +08:00
}
export interface MentionState {
suggestions?: Array<any>;
focus?: Boolean;
}
2018-11-21 22:38:27 +08:00
class Mention extends React.Component<MentionProps, MentionState> {
static getMentions = getMentions;
2016-07-04 10:31:27 +08:00
static defaultProps = {
prefixCls: 'ant-mention',
notFoundContent: '无匹配结果,轻敲空格完成输入',
loading: false,
multiLines: false,
placement: 'bottom',
2016-07-04 10:31:27 +08:00
};
static Nav = Nav;
static toString = toString;
static toContentState = toEditorState;
2018-11-21 22:38:27 +08:00
static getDerivedStateFromProps(nextProps: MentionProps, state: MentionState) {
const { suggestions } = nextProps;
if (!shallowequal(suggestions, state.suggestions)) {
return {
suggestions,
};
}
2018-12-01 23:06:05 +08:00
return null;
2018-11-21 22:38:27 +08:00
}
private mentionEle: any;
2017-11-21 19:03:21 +08:00
constructor(props: MentionProps) {
2016-07-04 10:31:27 +08:00
super(props);
this.state = {
suggestions: props.suggestions,
focus: false,
};
}
2017-11-21 19:03:21 +08:00
onSearchChange = (value: string, prefix: string) => {
2016-07-04 10:31:27 +08:00
if (this.props.onSearchChange) {
return this.props.onSearchChange(value, prefix);
2016-07-04 10:31:27 +08:00
}
return this.defaultSearchChange(value);
2018-12-07 16:17:45 +08:00
};
2016-07-04 10:31:27 +08:00
2017-11-21 19:03:21 +08:00
onChange = (editorState: any) => {
2016-07-04 10:31:27 +08:00
if (this.props.onChange) {
2016-07-19 12:31:03 +08:00
this.props.onChange(editorState);
2016-07-04 10:31:27 +08:00
}
2018-12-07 16:17:45 +08:00
};
2016-07-18 17:58:55 +08:00
2018-11-27 23:21:45 +08:00
defaultSearchChange(value: string): void {
2016-07-04 10:31:27 +08:00
const searchValue = value.toLowerCase();
2018-12-07 16:17:45 +08:00
const filteredSuggestions = (this.props.suggestions || []).filter(suggestion => {
if (suggestion.type && suggestion.type === Nav) {
return suggestion.props.value
? suggestion.props.value.toLowerCase().indexOf(searchValue) !== -1
: true;
}
return suggestion.toLowerCase().indexOf(searchValue) !== -1;
});
2016-07-04 10:31:27 +08:00
this.setState({
suggestions: filteredSuggestions,
});
}
2017-11-21 19:03:21 +08:00
onFocus = (ev: React.FocusEvent<HTMLElement>) => {
this.setState({
focus: true,
});
if (this.props.onFocus) {
this.props.onFocus(ev);
}
2018-12-07 16:17:45 +08:00
};
2018-12-16 22:41:04 +08:00
2017-11-21 19:03:21 +08:00
onBlur = (ev: React.FocusEvent<HTMLElement>) => {
this.setState({
focus: false,
});
if (this.props.onBlur) {
this.props.onBlur(ev);
}
2018-12-07 16:17:45 +08:00
};
2018-12-16 22:41:04 +08:00
focus = () => {
2018-03-06 20:59:03 +08:00
this.mentionEle._editor.focusEditor();
2018-12-07 16:17:45 +08:00
};
2018-12-16 22:41:04 +08:00
2017-11-21 19:03:21 +08:00
mentionRef = (ele: any) => {
this.mentionEle = ele;
2018-12-07 16:17:45 +08:00
};
2018-12-16 22:41:04 +08:00
2016-07-04 10:31:27 +08:00
render() {
const { className = '', prefixCls, loading, placement } = this.props;
2016-07-04 10:31:27 +08:00
const { suggestions, focus } = this.state;
const cls = classNames(className, {
2016-11-14 12:21:58 +08:00
[`${prefixCls}-active`]: focus,
[`${prefixCls}-placement-top`]: placement === 'top',
2016-07-04 10:31:27 +08:00
});
2018-12-07 16:17:45 +08:00
const notFoundContent = loading ? <Icon type="loading" /> : this.props.notFoundContent;
2016-07-18 17:58:55 +08:00
2016-11-14 12:21:58 +08:00
return (
<RcMention
2016-07-04 10:31:27 +08:00
{...this.props}
className={cls}
ref={this.mentionRef}
2016-11-14 12:21:58 +08:00
onSearchChange={this.onSearchChange}
onChange={this.onChange}
onFocus={this.onFocus}
onBlur={this.onBlur}
2016-07-18 17:58:55 +08:00
suggestions={suggestions}
2016-07-04 10:31:27 +08:00
notFoundContent={notFoundContent}
2016-11-14 12:21:58 +08:00
/>
);
2016-07-04 10:31:27 +08:00
}
}
2018-11-21 22:38:27 +08:00
2018-12-01 23:06:05 +08:00
polyfill(Mention);
export default Mention;