How to use copy-text-to-clipboard - 10 common examples

To help you get started, we’ve selected a few copy-text-to-clipboard examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github chaos-mesh / chaos-mesh / ui / src / components / RBACGenerator / index.tsx View on Github external
const copyRBAC = () => {
    copy(rbac, { target: containerRef.current! })

    dispatch(
      setAlert({
        type: 'success',
        message: intl.formatMessage({ id: 'common.copied' }),
      })
    )
  }
github faceit-enhancer / faceit-enhancer / src / content / features / copy-match-room-copy-server-data.js View on Github external
if (!element) {
    return
  }

  const elementHref = element.getAttribute('href')
  const serverConnectData =
    elementHref && connectRegExp.exec(decodeURI(elementHref))

  if (!serverConnectData) {
    return
  }

  store.set(roomId, true)

  copyToClipboard(serverConnectData[1])

  notifyIf('notifyMatchRoomAutoCopyServerData', {
    title: 'Server Connect Data Copied',
    message: 'Server connect data has been copied to your clipboard.'
  })
}
github ritz078 / transform / components / ConversionPanel.js View on Github external
copyCode = () => {
    const { resultValue } = this.state;
    copy(resultValue);

    this.setState({
      info: "Code copied to clipboard.",
      infoType: "success"
    });
  };
github yishn / tikzcd-editor / src / components / CodeBox.js View on Github external
handleCopyClick = () => {
        copyText(this.props.code)

        this.textareaElement.focus()
        this.textareaElement.select()
    }
github loic-sharma / BaGet / src / BaGet.UI / src / Upload.tsx View on Github external
private copyCommand = () =>
      CopyText(this.state.content.join("\n"));
github sindresorhus / refined-github / source / features / copy-file-path.js View on Github external
const handleClick = () => {
			const fileContents = select('.file-info a', file).textContent;
			copyToClipboard(fileContents);
		};
github cyralinc / approzium / docs / src / theme / CodeBlock / index.js View on Github external
const handleCopyCode = () => {
    copy(code);
    setShowCopied(true);

    setTimeout(() => setShowCopied(false), 2000);
  };
github netlify / netlify-cms / packages / netlify-cms-core / src / components / UI / ErrorBoundary.js View on Github external
       copyToClipboard(entry)}>
        {t('ui.errorBoundary.recoveredEntry.copyButtonLabel')}

copy-text-to-clipboard

Copy text to the clipboard in modern browsers (0.2 kB)

MIT
Latest version published 10 months ago

Package Health Score

69 / 100
Full package analysis

Popular copy-text-to-clipboard functions