Menemukan cara terbaik untuk melakukannya. maksud saya cara tercepat: w3school
https://www.w3schools.com/howto/howto_js_copy_clipboard.asp
Di dalam komponen fungsional bereaksi. Buat fungsi bernama 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>
</>
Jika tidak menggunakan Bereaksi, w3schools juga memiliki satu cara keren untuk melakukan ini dengan tooltip termasuk: https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_copy_clipboard2
Jika menggunakan Bereaksi, pikirkanlah hal yang harus dilakukan: Gunakan Toastify untuk mengingatkan pesan.
https://github.com/fkhadra/react-toastify Ini adalah lib yang sangat mudah digunakan. Setelah instalasi, Anda mungkin dapat mengubah baris ini:
alert(`Email copied: ${copyText.value} `)
Untuk sesuatu seperti:
toast.success(`Email Copied: ${copyText.value} `)
Jika Anda ingin menggunakannya, jangan lupa untuk Menginstal toastify. impor ToastContainer dan juga toasts css:
import { ToastContainer, toast } from "react-toastify"
import "react-toastify/dist/ReactToastify.css"
dan tambahkan wadah roti panggang kembali.
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>
</>
)
}