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'];
const tagSuggestions = ['1.0', '2.0'];
class MentionEditor extends React.Component {
state = {
suggestions: originSuggestions,
};
onSearchChange = (value, type) => {
const searchValue = value.toLowerCase();
console.log('>> onSearchChange', searchValue, type);
const list = type === '@' ? originSuggestions : tagSuggestions;
const filtered = list.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, ['@', '#'])
);
}
render() {
const { suggestions } = this.state;
return (
<Mention
style={{ width: 300 }}
onSearchChange={this.onSearchChange}
onChange={this.onChange}
placeholder=" @ 某人 "
onFocus={(e) => console.log('focus', e)}
onBlur={(e) => console.log('blur', e)}
suggestions={suggestions}
prefix={['@', '#']}
onSelect={this.onSelect}
/>
);
}
}
ReactDOM.render(<div>
<p> you can @ one of afc163, benjycui, yiminghe, jljsj33, simaQ, YuhangGe, dqaria, RaoHai</p>
<MentionEditor />
</div>, document.getElementById('__react-content'));