A React.js component for inserting Facebook-like mentions.
npm install react-splicer --saveSource code available on Github.
The component listens to user input events and displays a list of suggestions based on the original data set passed into it. Upon selection of any item in the list, this.props.transformFn is called and the result of this function is inserted into the input field.
this.props.callback is fired when the Enter key is pressed.
import React from 'react';
import Splicer from 'react-splicer';
/**
* Function is called when an item from the suggested results is selected.
* This is where you would want to manipulate the selected text before inserting
* it into the user input element.
*
* Examples could be adding ":" on either side of the selected text or in this
* case, creating a `span` element containing the text.
*
* @param {string}
*/
let transformFn = function(text) {
let el = document.createElement('span');
el.innerHTML = text;
el.setAttribute('class', 'mention');
el.setAttribute('contenteditable', false);
return el;
};
class App extends React.Component {
constructor() {
this._callback = this._callback.bind(this);
}
render() {
// The data set we are passing to our component.
let data = ['John', 'Johnny', 'Steve', 'Alex'];
// The number of characters that must be typed before searching
// for suggestions
let charCount = 2;
// Angle brackets are missing here. Am doing this as a workaround to
// not have them display as HTML
return Splicer
charCount={charCount}
data={data}
transformFn={transformFn}
callback={this._callback}
}
/**
* This is the function that gets fired when the ENTER key is pressed.
* Typically you would use this to do something with the contents of
* the user input element
*
*/
_callback(text) {
console.log('The callback was fired.');
}
};
React.render( , document.querySelector('#demo__app'));