@mapbox/react-click-to-select
Version:
a higher-order component that selects elements contained within it on click
47 lines (34 loc) • 1.11 kB
Markdown
# react-click-to-select
A React component that selects the text / elements contained within
when they're clicked.
[]()
[](https://github.com/mapbox/react-click-to-select/blob/master/LICENSE.txt)
## install
npm install --save @mapbox/react-click-to-select
## use
```jsx
<ClickToSelect>
this text will be selected when clicked
</ClickToSelect>
```
By default ClickToSelect contains the children within a span element, but you
can use a div instead:
```jsx
<ClickToSelect containerElement="div">
<p>
this text will be selected when clicked
</p>
</ClickToSelect>
```
You can pass a function that will be called when text is selected. This is useful for doing things like showing a tooltip with a prompt to copy.
```jsx
<ClickToSelect onSelect={myFunc}>
<p>
this text will be selected when clicked
</p>
</ClickToSelect>
```
This avoids React warnings:
```jsconsole
validateDOMNesting(...): <div> cannot appear as a descendant of <p>.
```