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
|
import QRCode from 'qrcode.react';
import { useEffect, useState } from 'react';
import './style.css';
export const Card = () => {
const [network, setNetwork] = useState({
ssid: '',
password: '',
});
const [qrvalue, setQrvalue] = useState('');
const escape = (v) => {
const needsEscape = ['"', ';', ',', ':', '\\'];
let escaped = '';
for (let i = 0; i < v.length; i++) {
let c = v[i];
if (needsEscape.includes(c)) {
c = '\\' + c;
}
escaped += c;
}
return escaped;
};
const onPrint = () => {
if (network.password.length < 8) {
alert('Password must be atleast 8 characters');
} else {
window.print();
}
};
useEffect(() => {
const ssid = escape(network.ssid);
const password = escape(network.password);
setQrvalue(`WIFI:T:WPA;S:${ssid};P:${password};;`);
}, [network]);
return (
<div>
<fieldset id="print-area">
<legend></legend>
<h1>WiFi Login</h1>
<hr />
<div className="details">
<QRCode className="qrcode" value={qrvalue} size={175} />
<div className="text">
<label>Network name</label>
<textarea
id="ssid"
type="text"
maxLength="32"
placeholder="WiFi Network name"
value={network.ssid}
onChange={(e) => setNetwork({ ...network, ssid: e.target.value })}
/>
<label>Password</label>
<textarea
id="password"
type="text"
maxLength="63"
placeholder="Password"
value={network.password}
onChange={(e) =>
setNetwork({ ...network, password: e.target.value })
}
/>
</div>
</div>
<p>
<span role="img" aria-label="mobile-phone">
📸📱
</span>
Point your phone's camera at the QR Code to connect automatically
</p>
</fieldset>
<div className="print-btn">
<button onClick={onPrint}>Print</button>
</div>
</div>
);
};
|