mention ui component for react
// use jsx to render html, do not modify simple.html
import 'rc-editor-mention/assets/index.css';
import React from 'react';
import ReactDOM from 'react-dom';
import Mention, { toString, getMentions } from 'rc-editor-mention';
const originSuggestions = ['afc163', 'benjycui', 'yiminghe', 'jljsj33', 'dqaria', 'RaoHai'];
class MentionEditor extends React.Component {
state = {
suggestions: originSuggestions,
};
onSearchChange = (value) => {
const searchValue = value.toLowerCase();
const filtered = originSuggestions.filter(suggestion =>
suggestion.toLowerCase().indexOf(searchValue) !== -1
);
this.setState({
suggestions: filtered,
});
}
onSelect = (value, suggestion) => {
console.log('>> onSelect', value, suggestion);
}
onChange = (editorState) => {
console.log('>> mentionChange',
toString(editorState, { encode: true }),
getMentions(editorState)
);
}
getSuggestionContainer = () => {
return this.refs.wrapper;
}
render() {
const { suggestions } = this.state;
return (
<div ref="wrapper" style={{ position: 'relative' }}>
<Mention style={{ width: 300 }}
onSearchChange={this.onSearchChange}
onChange={this.onChange}
placeholder=" @ 某人 "
getSuggestionContainer={this.getSuggestionContainer}
suggestions={suggestions} prefix="@"
onSelect={this.onSelect}
/>
</div>
);
}
}
ReactDOM.render(<div>
<p> you can @ one of afc163, benjycui, yiminghe, jljsj33, simaQ, YuhangGe, dqaria, RaoHai</p>
<MentionEditor />
</div>, document.getElementById('__react-content'));