React text ellipsify component
Demo
Installation
npm install --save react-ellipsis-text
API
EllipsisText
Props
EllipsisTextpropTypes = text: PropTypesstringisRequired length: PropTypesnumberisRequired tail: PropTypesstring tailClassName: PropTypesstring tooltip: PropTypesshape copyOnClick: PropTypesbool onAppear: PropTypesfunc onDisapepear: PropTypesfunc ;
-
text
: Text to display -
length
: Max length of text -
tail
: Trailing string (Default '...') -
tailClassName
: Trailing string element's class name -
tooltip
: Tooltip will be display when supplied -
tooltip.clipboard
: Original text will be copied into clipboard when tooltip is clicked. -
tooltip.onAppear
: Called when tooltip is shown. -
tooltip.onDisapepear
: Called when tooltip is hidden.
Usage example
"use strict"; ;; //allow react dev tools workwindowReact = React; Component { superprops; } { return <div> <EllipsisText text="1234567890" length="5" /> </div> ; } React; // It will be// <div>// <span><span>12</sapn><span class='more'>...</span></span>// </div>//
See example
npm installnpm run start:example
Tests
npm run test:local