J'ai trouvé la meilleure façon de le faire. je veux dire le moyen le plus rapide: w3school
https://www.w3schools.com/howto/howto_js_copy_clipboard.asp
À l'intérieur d'un composant fonctionnel de réaction. Créez une fonction nommée 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 vous n'utilisez pas React, w3schools a également un moyen intéressant de le faire avec l'info-bulle incluse: https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_copy_clipboard2
Si vous utilisez React, pensez à faire: utilisez un Toastify pour alerter le message.
https://github.com/fkhadra/react-toastify C'est la librairie très facile à utiliser. Après l'installation, vous pourrez peut-être modifier cette ligne:
alert(`Email copied: ${copyText.value} `)
Pour quelque chose comme:
toast.success(`Email Copied: ${copyText.value} `)
Si vous souhaitez l'utiliser, n'oubliez pas d'installer toastify. import ToastContainer et toasts css:
import { ToastContainer, toast } from "react-toastify"
import "react-toastify/dist/ReactToastify.css"
et ajoutez le contenant de pain grillé à l'intérieur du retour.
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>
</>
)
}