Trovato il modo migliore per farlo. intendo il modo più veloce: w3school
https://www.w3schools.com/howto/howto_js_copy_clipboard.asp
All'interno di un componente funzionale di reazione. Creare una funzione denominata 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>
</>
Se non usi React, w3schools ha anche un modo fantastico per farlo con la descrizione dei comandi inclusa: https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_copy_clipboard2
Se si utilizza React, una cosa interessante da fare: utilizzare un Toastify per avvisare il messaggio.
https://github.com/fkhadra/react-toastify Questa è la lib molto facile da usare. Dopo l'installazione, potresti essere in grado di cambiare questa linea:
alert(`Email copied: ${copyText.value} `)
Per qualcosa come:
toast.success(`Email Copied: ${copyText.value} `)
Se si desidera utilizzarlo, non dimenticare di installare toastify. importa ToastContainer e brinda anche ai CSS:
import { ToastContainer, toast } from "react-toastify"
import "react-toastify/dist/ReactToastify.css"
e aggiungi il contenitore toast all'interno di return.
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>
</>
)
}