aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/WifiCard.js
diff options
context:
space:
mode:
authorBen Woodward <ben@bdw.to>2026-01-24 20:46:24 -0800
committerGitHub <noreply@github.com>2026-01-24 20:46:24 -0800
commite1927f633cab988ceeb8bcd51dd03aaa5b3f2392 (patch)
treea776d7287d2c9583151f2567d9cf4f22d010aeed /src/components/WifiCard.js
parentfbde2cd27669ac29e1c0bc9393f9a83ffa93f8c6 (diff)
Updates jan 2026 (#313)
* Update dependencies to latest versions and migrate to React 19 - Update all dependencies to latest versions - Migrate to React 19 createRoot API (replaces deprecated ReactDOM.render) - Update qrcode.react import to v4 named export (QRCodeSVG) * Format CSS with prettier * Add Hebrew translation * Add Slovak translation * Add Malagasy translation * Add Bangla translation * Init field * Change the logic concerning number of cards to print * fix/clean * Fix Increment-field-ID-in-the-print-area * Increment-field-ID-in-the-print-area * Review id implementation logic * Fix git commit * Handle Query parameter * Fix package.json * Fix query parameter for language * fix query parameter for language * Fix EncryptionModeChange query parameters // Error when non in query * Fix EncryptionModeChange query parameters // Error when empty in query * clean Setting.js don't need to import i18n * clean file App.js * first iteration for Hash * Add Esperanto translation * Update translations for Occitan 2 lines added * Update translations.js Added Swiss German to the Translations JavaScript-File * Update translations.js Removed custom Translations-Strings of my own Version. * Update README.md * Format translations.js with prettier --------- Co-authored-by: Ido Bronfeld <idobronfeld@gmail.com> Co-authored-by: Matej Kubinec <matej.kubinec@outlook.com> Co-authored-by: mpilasy <88362233+mpilasy@users.noreply.github.com> Co-authored-by: Tarek Hasan <94107336+Tarek-Hasan@users.noreply.github.com> Co-authored-by: ofostier <ofostier@gmail.com> Co-authored-by: zeecho <30541894+zeecho@users.noreply.github.com> Co-authored-by: Mejans <61360811+Mejans@users.noreply.github.com> Co-authored-by: Jan Zehnder <44242812+NZehnder@users.noreply.github.com>
Diffstat (limited to 'src/components/WifiCard.js')
-rw-r--r--src/components/WifiCard.js13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/components/WifiCard.js b/src/components/WifiCard.js
index 70e1189..e977ac8 100644
--- a/src/components/WifiCard.js
+++ b/src/components/WifiCard.js
@@ -8,7 +8,7 @@ import {
8 Text, 8 Text,
9 TextareaField, 9 TextareaField,
10} from 'evergreen-ui'; 10} from 'evergreen-ui';
11import QRCode from 'qrcode.react'; 11import { QRCodeSVG as QRCode } from 'qrcode.react';
12import { useEffect, useState } from 'react'; 12import { useEffect, useState } from 'react';
13import { useTranslation } from 'react-i18next'; 13import { useTranslation } from 'react-i18next';
14import logo from '../../src/images/wifi.png'; 14import logo from '../../src/images/wifi.png';
@@ -71,6 +71,9 @@ export const WifiCard = (props) => {
71 return !eapIdentityFieldLabel() ? '' : t('wifi.encryption.eapMethod'); 71 return !eapIdentityFieldLabel() ? '' : t('wifi.encryption.eapMethod');
72 }; 72 };
73 73
74 const keyid = props.keyid || '';
75 const suffixKeyID = (prefix) => `${prefix}-${keyid}`;
76
74 return ( 77 return (
75 <Card 78 <Card
76 className="card-print" 79 className="card-print"
@@ -102,7 +105,7 @@ export const WifiCard = (props) => {
102 105
103 <Pane width={'100%'}> 106 <Pane width={'100%'}>
104 <TextareaField 107 <TextareaField
105 id="ssid" 108 id={suffixKeyID('ssid')}
106 type="text" 109 type="text"
107 marginBottom={5} 110 marginBottom={5}
108 autoComplete="off" 111 autoComplete="off"
@@ -120,7 +123,7 @@ export const WifiCard = (props) => {
120 {props.settings.encryptionMode === 'WPA2-EAP' && ( 123 {props.settings.encryptionMode === 'WPA2-EAP' && (
121 <> 124 <>
122 <TextareaField 125 <TextareaField
123 id="eapmethod" 126 id={suffixKeyID('eapmethod')}
124 type="text" 127 type="text"
125 marginBottom={5} 128 marginBottom={5}
126 readOnly={true} 129 readOnly={true}
@@ -130,7 +133,7 @@ export const WifiCard = (props) => {
130 /> 133 />
131 134
132 <TextareaField 135 <TextareaField
133 id="identity" 136 id={suffixKeyID('identity')}
134 type="text" 137 type="text"
135 marginBottom={5} 138 marginBottom={5}
136 autoComplete="off" 139 autoComplete="off"
@@ -150,7 +153,7 @@ export const WifiCard = (props) => {
150 )} 153 )}
151 {!(props.settings.hidePassword || !props.settings.encryptionMode) && ( 154 {!(props.settings.hidePassword || !props.settings.encryptionMode) && (
152 <TextareaField 155 <TextareaField
153 id="password" 156 id={suffixKeyID('password')}
154 type="text" 157 type="text"
155 maxLength="63" 158 maxLength="63"
156 autoComplete="off" 159 autoComplete="off"