mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
API: - Replace string concatenation with template literals (batch, pipeline, tool-factory, content-aware-resize, passport-photo, remove-background) - Remove unused imports (teams, color-adjustments, image-enhancement) - Replace non-null assertions with guard clauses in bg-effects and stitch - Use optional chaining in docs route Image-engine: - Remove unused OutputFormat imports (compress, convert) - Use local variables instead of reassigning parameters (optimize-for-web, sharpen) Web: - Fix useExhaustiveDependencies: remove genuinely redundant deps, add biome-ignore comments for intentional patterns (src prop, cleanup fns) - Replace non-null assertions with null-safe alternatives - Add accessible titles to inline SVGs (color-settings, image-enhancement-settings) - Fix noLabelWithoutControl: associate labels via htmlFor/id or use <span> (image-to-base64-settings, edit-metadata-settings, qr-generate-settings) - Replace div[role="button"] with <button> (pdf-to-image-settings) - Use stable keys instead of array indices (collage-preview, collage-settings) - Fix noStaticElementInteractions in collage-preview (role="none") - Remove unused function parameters and imports
231 lines
8.8 KiB
TypeScript
231 lines
8.8 KiB
TypeScript
import { type FormEvent, useState } from "react";
|
|
import { formatHeaders } from "@/lib/api";
|
|
|
|
/**
|
|
* Trigger the browser's "Save Password" prompt by submitting a real form
|
|
* with the new credentials and causing a page navigation.
|
|
*
|
|
* Safari (and most browsers) only offer to save passwords when they detect:
|
|
* 1. A real HTMLFormElement.submit() call (not fetch / XHR)
|
|
* 2. Visible input fields with autocomplete="username" + "new-password"
|
|
* 3. An actual page navigation following the submission
|
|
*
|
|
* We POST to "/" which the SPA serves as index.html. The browser sees the
|
|
* form submission + navigation and prompts to save.
|
|
*/
|
|
function triggerBrowserPasswordSave(username: string, password: string) {
|
|
const form = document.createElement("form");
|
|
form.method = "POST";
|
|
form.action = "/";
|
|
form.style.position = "fixed";
|
|
form.style.top = "-9999px";
|
|
|
|
const uField = document.createElement("input");
|
|
uField.type = "text";
|
|
uField.name = "username";
|
|
uField.autocomplete = "username";
|
|
uField.value = username;
|
|
form.appendChild(uField);
|
|
|
|
const pField = document.createElement("input");
|
|
pField.type = "password";
|
|
pField.name = "password";
|
|
pField.autocomplete = "new-password";
|
|
pField.value = password;
|
|
form.appendChild(pField);
|
|
|
|
document.body.appendChild(form);
|
|
form.submit();
|
|
// The form.submit() causes a full page navigation to "/", so no cleanup needed.
|
|
}
|
|
|
|
function generatePassword(): string {
|
|
const upper = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
|
const lower = "abcdefghijklmnopqrstuvwxyz";
|
|
const digits = "0123456789";
|
|
const all = upper + lower + digits;
|
|
// Guarantee at least one of each required character class
|
|
const required = [
|
|
upper[Math.floor(Math.random() * upper.length)],
|
|
lower[Math.floor(Math.random() * lower.length)],
|
|
digits[Math.floor(Math.random() * digits.length)],
|
|
];
|
|
const rest = Array.from({ length: 13 }, () => all[Math.floor(Math.random() * all.length)]);
|
|
// Shuffle so the required chars aren't always at the start
|
|
const chars = [...required, ...rest];
|
|
for (let i = chars.length - 1; i > 0; i--) {
|
|
const j = Math.floor(Math.random() * (i + 1));
|
|
[chars[i], chars[j]] = [chars[j], chars[i]];
|
|
}
|
|
return chars.join("");
|
|
}
|
|
|
|
export function ChangePasswordPage() {
|
|
const [currentPassword, setCurrentPassword] = useState("");
|
|
const [newPassword, setNewPassword] = useState("");
|
|
const [confirmPassword, setConfirmPassword] = useState("");
|
|
const [error, setError] = useState("");
|
|
const [loading, setLoading] = useState(false);
|
|
const [showGenerated, setShowGenerated] = useState(false);
|
|
|
|
const handleGenerate = () => {
|
|
const pw = generatePassword();
|
|
setNewPassword(pw);
|
|
setConfirmPassword(pw);
|
|
setShowGenerated(true);
|
|
};
|
|
|
|
const handleSubmit = async (e: FormEvent) => {
|
|
e.preventDefault();
|
|
setError("");
|
|
|
|
if (newPassword !== confirmPassword) {
|
|
setError("Passwords do not match");
|
|
return;
|
|
}
|
|
|
|
setLoading(true);
|
|
try {
|
|
const res = await fetch("/api/auth/change-password", {
|
|
method: "POST",
|
|
headers: formatHeaders({ "Content-Type": "application/json" }),
|
|
body: JSON.stringify({ currentPassword, newPassword }),
|
|
});
|
|
|
|
if (!res.ok) {
|
|
const data = await res.json().catch(() => ({}));
|
|
setError(data.error || "Failed to change password");
|
|
return;
|
|
}
|
|
|
|
// Trigger browser password save prompt via real form submission + navigation
|
|
const username = localStorage.getItem("ashim-username") || "admin";
|
|
triggerBrowserPasswordSave(username, newPassword);
|
|
return; // navigation happens inside triggerBrowserPasswordSave
|
|
} catch {
|
|
setError("Connection error");
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="flex h-screen bg-background">
|
|
<div className="flex-1 flex items-center justify-center p-8">
|
|
<div className="w-full max-w-md space-y-8">
|
|
<div>
|
|
<h1 className="text-3xl font-bold text-foreground">
|
|
<span className="text-primary">ashim</span>
|
|
</h1>
|
|
<h2 className="text-2xl font-bold mt-4 text-foreground">Change your password</h2>
|
|
<p className="text-sm text-muted-foreground mt-2">
|
|
You need to set a new password before continuing. Your password must be at least 8
|
|
characters with uppercase, lowercase, and a number.
|
|
</p>
|
|
</div>
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
<div>
|
|
<label htmlFor="username" className="block text-sm font-medium mb-1 text-foreground">
|
|
Username
|
|
</label>
|
|
<input
|
|
id="username"
|
|
type="text"
|
|
name="username"
|
|
autoComplete="username"
|
|
value={localStorage.getItem("ashim-username") || "admin"}
|
|
readOnly
|
|
className="w-full px-4 py-3 rounded-lg border border-border bg-muted text-muted-foreground cursor-not-allowed"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label
|
|
htmlFor="current-password"
|
|
className="block text-sm font-medium mb-1 text-foreground"
|
|
>
|
|
Current password
|
|
</label>
|
|
<input
|
|
id="current-password"
|
|
type="password"
|
|
autoComplete="current-password"
|
|
value={currentPassword}
|
|
onChange={(e) => setCurrentPassword(e.target.value)}
|
|
placeholder="Enter current password"
|
|
className="w-full px-4 py-3 rounded-lg border border-border bg-background text-foreground focus:outline-none focus:ring-2 focus:ring-primary/20"
|
|
required
|
|
/>
|
|
</div>
|
|
<div>
|
|
<div className="flex items-center justify-between mb-1">
|
|
<label htmlFor="new-password" className="text-sm font-medium text-foreground">
|
|
New password
|
|
</label>
|
|
<button
|
|
type="button"
|
|
onClick={handleGenerate}
|
|
className="text-xs text-primary hover:text-primary/80 font-medium"
|
|
>
|
|
Generate strong password
|
|
</button>
|
|
</div>
|
|
<input
|
|
id="new-password"
|
|
type={showGenerated ? "text" : "password"}
|
|
autoComplete="new-password"
|
|
value={newPassword}
|
|
onChange={(e) => {
|
|
setNewPassword(e.target.value);
|
|
setShowGenerated(false);
|
|
}}
|
|
placeholder="At least 8 characters"
|
|
className={`w-full px-4 py-3 rounded-lg border border-border bg-background text-foreground focus:outline-none focus:ring-2 focus:ring-primary/20 ${showGenerated ? "font-mono text-sm" : ""}`}
|
|
required
|
|
minLength={8}
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label
|
|
htmlFor="confirm-password"
|
|
className="block text-sm font-medium mb-1 text-foreground"
|
|
>
|
|
Confirm new password
|
|
</label>
|
|
<input
|
|
id="confirm-password"
|
|
type={showGenerated ? "text" : "password"}
|
|
autoComplete="new-password"
|
|
value={confirmPassword}
|
|
onChange={(e) => {
|
|
setConfirmPassword(e.target.value);
|
|
setShowGenerated(false);
|
|
}}
|
|
placeholder="Repeat new password"
|
|
className={`w-full px-4 py-3 rounded-lg border border-border bg-background text-foreground focus:outline-none focus:ring-2 focus:ring-primary/20 ${showGenerated ? "font-mono text-sm" : ""}`}
|
|
required
|
|
minLength={8}
|
|
/>
|
|
</div>
|
|
{error && <p className="text-sm text-destructive">{error}</p>}
|
|
<button
|
|
type="submit"
|
|
disabled={loading || !currentPassword || !newPassword || !confirmPassword}
|
|
className="w-full py-3 rounded-lg bg-primary/80 text-primary-foreground font-medium hover:bg-primary transition-colors disabled:opacity-50 disabled:cursor-not-allowed"
|
|
>
|
|
{loading ? "Changing..." : "Change password"}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div className="hidden lg:flex flex-1 bg-primary/90 items-center justify-center p-12 text-white rounded-l-3xl">
|
|
<div className="max-w-lg space-y-6 text-center">
|
|
<h2 className="text-3xl font-bold">Almost there</h2>
|
|
<p className="text-lg text-white/80">
|
|
Set a strong password to secure your account, then you are good to go.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|