Groundwork for un-shelving translations. Chrome's translator rewrites the rendered DOM directly, wrapping text nodes in <font> elements React has never heard of, and the next update can then call removeChild against a parent whose children have moved (facebook/react#11538). This is the structural defence against that, plus the setting the served language will read from. The language setting is `uiLanguage`, and it is deliberately not the `locale` field that already exists. That one is a formatting choice -- what calendar, clock and numerals to use -- and folding the two together would silently rewrite everybody's date format the first time they picked a language. German dates with an English interface is a real preference, and so is the reverse. It defaults to English when absent, which covers both a new account and every settings file written before this, and Accept-Language is not consulted: a served locale should be something the reader chose rather than something guessed and then written down as though they had. Only languages with strings shipped are offered, which today means English alone -- a picker entry without a catalogue behind it would leave the page claiming a language it is not in, which stops a reader translating a page they cannot read. `<html lang>` is set where applyTheme is set: at store module load, from the localStorage cache, before createRoot() has rendered anything. Not in an effect -- a lang that is briefly wrong is enough to raise the translate prompt on a page that needed none. There is no server-rendered alternative to reach for here: ihasmail serves a static shell and holds no account state, and the settings file lives in the reader's own JMAP Files, so reading it before the page existed would mean authenticating to Stalwart on every page load. The static lang="en" in index.html covers the first bytes; the store only ever corrects a reader who chose otherwise. Both halves are tested. translate="no" and class="notranslate" go on the narrow boundaries only: rendered email bodies, raw message source, attachment text, the generated and hand-edited Sieve, the brand and the login name. Not on <body> -- someone whose language ihasmail does not speak yet should still be able to translate the parts that are ours. Email bodies turn out to live in a shadow root, so React never reconciles them and they were never a crash risk; the marker there is about not rewriting what a sender actually wrote. Twenty-four fragile interpolation points were found with the TypeScript parser rather than grep, and fifteen refactored. Pluralisation and "count + label" pairs are collapsed into a single expression so the text is a lone child React updates with textContent, rather than a text node with conditional siblings to insert around. One of them -- InviteCard's {method === "REPLY" && organizer ? "" : ""} -- rendered an empty string either way and is simply gone. The boundary is scoped to the main content, so the header, folder tree and any open composer sit outside it and survive independently. It recovers by remounting the subtree, which costs nothing because everything inside re-derives from the stores, and it logs at info rather than error: a reader translating a page is expected and recovered from, and filing it as an error would put an entry in every console-reading reporter for behaviour that worked. It re-raises anything that is not a DOM mutation error, so a real bug still surfaces as one, and it gives up after three attempts rather than looping invisibly. Worth recording: the crash could not be reproduced on React 19.2.8. Wrapping 207-249 React-managed text nodes in <font>, exactly as the translator does, then driving in-place conditional toggles and navigations, left the app intact with the boundary never firing. The original issue is from React 16 and the reconciler has changed a great deal since. So this lands as defence whose premise is weaker than assumed rather than as a fix for something observed here, and the boundary is insurance rather than a load-bearing part. The notranslate markers and the collapsed interpolations stand on their own merits either way.
111 lines
5.3 KiB
TypeScript
111 lines
5.3 KiB
TypeScript
import { useEffect, useState, type FormEvent } from "react";
|
|
import { Eye, EyeOff, LogIn } from "lucide-react";
|
|
import { useSession } from "@/store/session";
|
|
import { ApiError } from "@/jmap/client";
|
|
import { DEFAULT_SOURCE_URL } from "@/lib/source";
|
|
import { APP_VERSION } from "@/lib/version";
|
|
|
|
export function LoginPage() {
|
|
const login = useSession((s) => s.login);
|
|
// The AGPL's offer has to reach everyone who interacts with the app over the
|
|
// network, and that includes whoever is looking at this form. The server says
|
|
// where its own source lives, so a modified deployment points at its own.
|
|
const [sourceUrl, setSourceUrl] = useState(DEFAULT_SOURCE_URL);
|
|
useEffect(() => {
|
|
let live = true;
|
|
fetch("/api/config")
|
|
.then((r) => (r.ok ? r.json() : null))
|
|
.then((c) => { if (live && c?.sourceUrl) setSourceUrl(c.sourceUrl as string); })
|
|
.catch(() => { /* the default stands */ });
|
|
return () => { live = false; };
|
|
}, []);
|
|
const [username, setUsername] = useState(() => localStorage.getItem("ihasmail:lastUser") ?? "");
|
|
const [password, setPassword] = useState("");
|
|
const [showPw, setShowPw] = useState(false);
|
|
const [trustDevice, setTrustDevice] = useState(false);
|
|
const [busy, setBusy] = useState(false);
|
|
const [error, setError] = useState<string | null>(null);
|
|
|
|
const submit = async (e: FormEvent) => {
|
|
e.preventDefault();
|
|
if (!username || !password) return;
|
|
setBusy(true);
|
|
setError(null);
|
|
try {
|
|
// No two-factor code: the field is not on this form until the flow works
|
|
// end to end, and the server treats an absent code as none given.
|
|
await login(username.trim(), password, "", trustDevice);
|
|
if (trustDevice) localStorage.setItem("ihasmail:lastUser", username.trim());
|
|
} catch (err) {
|
|
if (err instanceof ApiError) {
|
|
if (err.code === "invalid_credentials") {
|
|
setError("Invalid username or password.");
|
|
} else if (err.code === "rate_limited") setError("Too many attempts. Please wait a few minutes and try again.");
|
|
else setError(err.message || "Could not sign in.");
|
|
} else setError("Network error. Please check your connection.");
|
|
} finally {
|
|
setBusy(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="login-page">
|
|
<form className="login-card" onSubmit={submit}>
|
|
<div className="logo">
|
|
<img src="/img/logo.png" alt="" width={120} height={143} />
|
|
<h1 className="notranslate" translate="no">ihasmail</h1>
|
|
<p className="tagline">Fast, friendly webmail. Your mailbox, your way.</p>
|
|
</div>
|
|
{error && (
|
|
<div className="error-box mb-16" role="alert">
|
|
{error}
|
|
</div>
|
|
)}
|
|
<div className="field">
|
|
<label htmlFor="u">Email or username</label>
|
|
<input id="u" className="input" type="text" autoComplete="username" autoCapitalize="none" autoCorrect="off" spellCheck={false} value={username} onChange={(e) => setUsername(e.target.value)} autoFocus={!username} required />
|
|
</div>
|
|
<div className="field">
|
|
<label htmlFor="p">Password</label>
|
|
<div className="pw-wrap">
|
|
<input id="p" className="input" type={showPw ? "text" : "password"} autoComplete="current-password" value={password} onChange={(e) => setPassword(e.target.value)} autoFocus={Boolean(username)} required style={{ paddingRight: 40 }} />
|
|
<button type="button" className="icon-btn" onClick={() => setShowPw((v) => !v)} aria-label={showPw ? "Hide password" : "Show password"} tabIndex={-1}>
|
|
{showPw ? <EyeOff size={18} /> : <Eye size={18} />}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<label className="check" style={{ marginBottom: 4 }}>
|
|
<input type="checkbox" checked={trustDevice} onChange={(e) => setTrustDevice(e.target.checked)} />
|
|
<span>This is my own device</span>
|
|
</label>
|
|
<p className="hint" style={{ marginBottom: 12 }}>
|
|
{trustDevice
|
|
? "Stay signed in, and keep settings and recent addresses on this computer."
|
|
: "Signed out after 5 minutes of inactivity, and nothing is kept on this computer. Leave this unticked on a shared or public one."}
|
|
</p>
|
|
<button className="btn btn-primary btn-lg btn-block" type="submit" disabled={busy}>
|
|
{busy ? <span className="spinner" style={{ borderTopColor: "#fff" }} /> : <LogIn size={18} />}
|
|
{busy ? "Signing in…" : "Sign in"}
|
|
</button>
|
|
<p className="foot">
|
|
{/*
|
|
The version sits directly above the source link on purpose: the
|
|
AGPL's offer is for the source of *this* build, and naming the
|
|
build is what makes that offer something a person can act on. It
|
|
also means a bug report can name the build without anyone having
|
|
to sign in to find it.
|
|
|
|
One <p> with a break rather than two: .foot carries a 20px
|
|
margin-top, which a second paragraph would repeat as a gap.
|
|
*/}
|
|
<span className="notranslate" translate="no">ihasmail v{APP_VERSION}</span>
|
|
<br />
|
|
<a href="https://ihasmail.org" target="_blank" rel="noopener noreferrer">ihasmail.org</a>
|
|
{" · "}
|
|
<a href={sourceUrl} target="_blank" rel="noopener noreferrer">AGPL-3.0 source</a>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
);
|
|
}
|