Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
onSearchChange = ({ value }) => {
this.setState({
suggestions: defaultSuggestionsFilter(
value,
this.props.mentions.toArray()
)
});
};
onSearchChange = ({ value }) => {
this.props.onSearchChange(value);
this.setState({
suggestions: defaultSuggestionsFilter(
value,
this.props.mentions.toArray()
)
});
};
constructor(props) {
super(props);
this.state = {
editorState: createStateFromHTML(
EditorState.createEmpty(),
props.defaultContent
),
collectedMentions: [],
suggestions: this.props.mentions.toArray(),
templatesState: null
};
this.mentionPlugin = createMentionPlugin({
mentionPrefix: '@'
});
}