rc-clipboard-copy
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

Install

  • module
npm install rc-clipboard-copy
  • script
<script src="dist/rc-clipboard-copy.iife.js"></script>

Usage

  • use as component
import { ClipboardImage, ClipboardText } from "rc-clipboard-copy";
const App = () => {
  const [imageRef, setImageRef] = React.useState();
  return (
    <div>
      <img ref={(ref) => setImageRef(ref)} src="./assets/logo.png" />
      <ClipboardImage
        target={imageRef}
        onChange={(s, e) => {
          console.log("status", s);
          if (e) {
            console.error(s, e);
          }
        }}
      >
        <button>copy image</button>
      </ClipboardImage>
      <ClipboardText
        target={"hello world"}
        methods={["execCommand", "clipboard"]}
        onChange={(s, e) => {
          console.log("status", s);
          if (e) {
            console.error(s, e);
          }
        }}
      >
        <button>copy text by specific methods</button>
      </ClipboardText>
    </div>
  );
};
  • use hooks
import { useCopyText } from "rc-clipboard-copy";
const App = () => {
  const { copy, error, status } = useCopyText({});
  return (
    <div>
      <button onClick={() => copy("hello word 2")}>copy text</button>
    </div>
  );
};

Broswer Support

This library relies on ClipboardItem and execCommand APIs. See all supports in Can I Use

Func

  • copy image (include image element & image src) 👌
  • copy canvas element👌
  • copy plain text 👌
  • copy both ❌

Readme

Keywords

Package Sidebar

Install

npm i rc-clipboard-copy

Weekly Downloads

3

Version

1.0.2

License

MIT

Unpacked Size

44.5 kB

Total Files

13

Last publish

Collaborators

  • ephemeron