npm i jsqr
And after that create a App.jsx
file and copy paste the following code
App.jsx
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 |
import React, { useState, useRef, useEffect } from 'react'; import jsQR from 'jsqr'; const QRCodeScanner = () => { const [scanResult, setScanResult] = useState(''); const [errorMessage, setErrorMessage] = useState(''); const [isCopied, setIsCopied] = useState(false); const [scanMode, setScanMode] = useState('upload'); // 'upload' or 'webcam' const [isScanning, setIsScanning] = useState(false); const fileInputRef = useRef(null); const videoRef = useRef(null); const canvasRef = useRef(null); const streamRef = useRef(null); // Clean up webcam stream when component unmounts useEffect(() => { return () => { if (streamRef.current) { const tracks = streamRef.current.getTracks(); tracks.forEach(track => track.stop()); } }; }, []); // Handle file upload const handleFileUpload = (e) => { const file = e.target.files[0]; setErrorMessage(''); if (!file) return; if (!file.type.match('image.*')) { setErrorMessage('Please select an image file'); return; } const reader = new FileReader(); reader.onload = (event) => { const img = new Image(); img.onload = () => processImage(img); img.src = event.target.result; }; reader.readAsDataURL(file); }; // Process image to find QR code const processImage = (img) => { const canvas = canvasRef.current; canvas.width = img.width; canvas.height = img.height; const ctx = canvas.getContext('2d'); ctx.drawImage(img, 0, 0); const imageData = ctx.getImageData(0, 0, canvas.width, canvas.height); const code = jsQR(imageData.data, imageData.width, imageData.height); if (code) { setScanResult(code.data); setErrorMessage(''); } else { setErrorMessage('No QR code found in the image'); setScanResult(''); } }; // Start webcam scanning const startWebcamScan = async () => { try { setErrorMessage(''); setIsScanning(true); const stream = await navigator.mediaDevices.getUserMedia({ video: { facingMode: "environment" } }); streamRef.current = stream; videoRef.current.srcObject = stream; videoRef.current.play(); requestAnimationFrame(scanVideoFrame); } catch (error) { setIsScanning(false); setErrorMessage(`Cannot access camera: ${error.message}`); } }; // Stop webcam scanning const stopWebcamScan = () => { if (streamRef.current) { const tracks = streamRef.current.getTracks(); tracks.forEach(track => track.stop()); streamRef.current = null; } setIsScanning(false); }; // Process video frames to find QR code const scanVideoFrame = () => { if (!isScanning) return; const video = videoRef.current; const canvas = canvasRef.current; if (video.readyState === video.HAVE_ENOUGH_DATA) { canvas.width = video.videoWidth; canvas.height = video.videoHeight; const ctx = canvas.getContext('2d'); ctx.drawImage(video, 0, 0); const imageData = ctx.getImageData(0, 0, canvas.width, canvas.height); const code = jsQR(imageData.data, imageData.width, imageData.height); if (code) { setScanResult(code.data); stopWebcamScan(); return; } } requestAnimationFrame(scanVideoFrame); }; // Switch between scanning modes const switchScanMode = (mode) => { if (mode === scanMode) return; // Clean up current mode if (scanMode === 'webcam' && isScanning) { stopWebcamScan(); } setScanMode(mode); setScanResult(''); setErrorMessage(''); if (mode === 'webcam') { startWebcamScan(); } }; // Copy result to clipboard const copyToClipboard = () => { if (!scanResult) return; navigator.clipboard.writeText(scanResult) .then(() => { setIsCopied(true); setTimeout(() => setIsCopied(false), 2000); }) .catch(err => { setErrorMessage(`Failed to copy: ${err.message}`); }); }; return ( <div className="max-w-md mx-auto p-6 bg-white rounded-lg shadow-lg"> <h1 className="text-2xl font-bold text-center mb-6">QR Code Scanner</h1> {/* Scan Mode Tabs */} <div className="flex mb-6 border-b"> <button onClick={() => switchScanMode('upload')} className={`py-2 px-4 ${scanMode === 'upload' ? 'border-b-2 border-blue-500 text-blue-500 font-medium' : 'text-gray-500'}`} > Upload Image </button> <button onClick={() => switchScanMode('webcam')} className={`py-2 px-4 ${scanMode === 'webcam' ? 'border-b-2 border-blue-500 text-blue-500 font-medium' : 'text-gray-500'}`} > Use Webcam </button> </div> {/* File Upload Interface */} {scanMode === 'upload' && ( <div className="mb-6"> <div className="flex items-center justify-center"> <label className="flex flex-col items-center px-4 py-6 bg-white text-blue-500 rounded-lg shadow-lg tracking-wide uppercase border border-blue-500 cursor-pointer hover:bg-blue-500 hover:text-white"> <svg className="w-8 h-8" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"> <path d="M16.88 9.1A4 4 0 0 1 16 17H5a5 5 0 0 1-1-9.9V7a3 3 0 0 1 4.52-2.59A4.98 4.98 0 0 1 17 8c0 .38-.04.74-.12 1.1zM11 11h3l-4-4-4 4h3v3h2v-3z" /> </svg> <span className="mt-2 text-base leading-normal">Select QR Image</span> <input type="file" accept="image/*" className="hidden" onChange={handleFileUpload} ref={fileInputRef} /> </label> </div> </div> )} {/* Webcam Interface */} {scanMode === 'webcam' && ( <div className="mb-6"> <div className="relative"> <video ref={videoRef} className="w-full h-64 bg-black object-cover" muted playsInline /> <div className="absolute inset-0 border-2 border-blue-500 border-dashed pointer-events-none"></div> </div> <div className="mt-4 text-center"> {isScanning ? ( <p className="text-sm text-gray-600">Scanning for QR Code...</p> ) : ( <button onClick={startWebcamScan} className="bg-blue-500 text-white px-4 py-2 rounded hover:bg-blue-600" style={{backgroundColor: '#3b82f6'}} > Start Scanning </button> )} </div> </div> )} {/* Hidden Canvas for Processing */} <canvas ref={canvasRef} className="hidden"></canvas> {/* Error Messages */} {errorMessage && ( <div className="mb-4 p-2 bg-red-100 text-red-700 rounded"> {errorMessage} </div> )} {/* Results Display */} {scanResult && ( <div className="mt-6"> <h2 className="text-lg font-semibold mb-2">Scan Result:</h2> <div className="flex"> <div className="flex-grow p-3 bg-gray-100 rounded-l border border-r-0 border-gray-300 break-all overflow-auto max-h-32"> {scanResult} </div> <button onClick={copyToClipboard} className="bg-gray-200 hover:bg-gray-300 px-3 rounded-r border border-gray-300 flex items-center justify-center" title="Copy to clipboard" > <svg xmlns="http://www.w3.org/2000/svg" className="h-5 w-5" viewBox="0 0 20 20" fill="currentColor"> <path d="M8 3a1 1 0 011-1h2a1 1 0 110 2H9a1 1 0 01-1-1z" /> <path d="M6 3a2 2 0 00-2 2v11a2 2 0 002 2h8a2 2 0 002-2V5a2 2 0 00-2-2 3 3 0 01-3 3H9a3 3 0 01-3-3z" /> </svg> </button> </div> {isCopied && ( <p className="text-sm text-green-600 mt-1">Copied to clipboard!</p> )} </div> )} {/* Scan Again Button (when result is shown) */} {scanResult && ( <div className="mt-4 text-center"> <button onClick={() => { setScanResult(''); setErrorMessage(''); if (scanMode === 'upload') { if (fileInputRef.current) fileInputRef.current.value = ''; } else if (scanMode === 'webcam') { startWebcamScan(); } }} className="bg-blue-500 text-white px-4 py-2 rounded hover:bg-blue-600" style={{backgroundColor: '#3b82f6'}} > Scan Another Code </button> </div> )} </div> ); }; export default QRCodeScanner; |