Socket
Socket
Sign inDemoInstall

react-clipboard

Package Overview
Dependencies
8
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-clipboard

component to allow user to easily copy text


Version published
Weekly downloads
65
decreased by-14.47%
Maintainers
1
Install size
157 kB
Created
Weekly downloads
 

Readme

Source

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.

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)

Keywords

FAQs

Last updated on 20 Sep 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc