Skip to content

WickyNilliams/react-clipboard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-clipboard

Component to allow the user to easily copy text. Based on the idea from Trello, described in this StackOverflow question: How does Trello access the user's clipboard?

Install

npm install react-clipboard --save

#or...

yarn add react-clipboard

Usage

See the example. Or play with a working example: https://codesandbox.io/s/24wyl020wp.

Props

propTypes : {
  value : React.PropTypes.string.isRequired, // the value to be copied
  className : React.PropTypes.string, // class to apply to the <textarea />
  style : React.PropTypes.object, // styles if you'd like to override the defaults
  onCopy : React.PropTypes.func // callback for when value is copied
}

Further info

This component renders a textarea, whose value is the value prop. On keydown, if the user hasn't currently selected any text on the page and the cmd or ctrl key is pressed, then the textarea is focussed and the text inside it is selected. When the user hits the c key, the text inside the textarea is copied.

Inline styling is used to visibly hide the textarea (this can be overriden via the style prop mentioned above)

About

Component to allow user to easily copy text to clipboard

Resources

License

Stars

Watchers

Forks

Packages

No packages published