Encontré la mejor manera de hacerlo. Me refiero a la forma más rápida: w3school
https://www.w3schools.com/howto/howto_js_copy_clipboard.asp
Dentro de un componente funcional de reacción. Cree una función llamada handleCopy:
function handleCopy() {
// get the input Element ID. Save the reference into copyText
var copyText = document.getElementById("mail")
// select() will select all data from this input field filled
copyText.select()
copyText.setSelectionRange(0, 99999)
// execCommand() works just fine except IE 8. as w3schools mention
document.execCommand("copy")
// alert the copied value from text input
alert(`Email copied: ${copyText.value} `)
}
<>
<input
readOnly
type="text"
value="exemple@email.com"
id="mail"
/>
<button onClick={handleCopy}>Copy email</button>
</>
Si no usa React, w3schools también tiene una forma genial de hacerlo con información sobre herramientas incluida: https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_copy_clipboard2
Si usa React, una buena idea para hacer: use un Toastify para alertar el mensaje.
https://github.com/fkhadra/react-toastify Esta es la lib muy fácil de usar. Después de la instalación, puede cambiar esta línea:
alert(`Email copied: ${copyText.value} `)
Por algo como:
toast.success(`Email Copied: ${copyText.value} `)
Si desea usarlo, no olvide instalar toastify. importar ToastContainer y también tostadas css:
import { ToastContainer, toast } from "react-toastify"
import "react-toastify/dist/ReactToastify.css"
y agregue el contenedor de tostadas dentro del retorno.
import React from "react"
import { ToastContainer, toast } from "react-toastify"
import "react-toastify/dist/ReactToastify.css"
export default function Exemple() {
function handleCopy() {
var copyText = document.getElementById("mail")
copyText.select()
copyText.setSelectionRange(0, 99999)
document.execCommand("copy")
toast.success(`Hi! Now you can: ctrl+v: ${copyText.value} `)
}
return (
<>
<ToastContainer />
<Container>
<span>E-mail</span>
<input
readOnly
type="text"
value="myemail@exemple.com"
id="mail"
/>
<button onClick={handleCopy}>Copy Email</button>
</Container>
</>
)
}