mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-09-13 04:08:22 +02:00
## Move editor under `frontend/editor/`
Pure restructure: `frontend/` becomes the workspace, `frontend/editor/`
holds
the PDF editor. 1775 file renames + 40 wiring edits. No logic changes.
### Why
`frontend/` is currently the editor — its `src/`, `public/`,
`src-tauri/`,
config files all sit at the root. Promoting `frontend/` to a
workspace and putting the editor in a sibling folder leaves room for
future
apps to drop in alongside it, sharing one `package.json` /
`node_modules` /
lint config / Storybook.
### What moves
frontend/
├── editor/ ← NEW: everything editor-specific
│ ├── src/ ← was frontend/src/
│ ├── public/ ← was frontend/public/
│ ├── src-tauri/ ← was frontend/src-tauri/
│ ├── index.html, vite.config.ts, vitest.config.ts, playwright.config.ts
│ ├── tsconfig*.json, tailwind.config.js, postcss.config.js
│ ├── scripts/
│ ├── .env, .env.desktop, .env.saas
│ └── DeveloperGuide.md
├── package.json, package-lock.json, node_modules/ ← workspace install
├── eslint.config.mjs, .prettierrc, .prettierignore ← shared tooling
├── .gitignore
└── README.md
### Wiring edits (40 files)
- `.taskfiles/frontend.yml`, `desktop.yml`, `e2e.yml`
- `build.gradle`, `app/core/build.gradle`
- `eslint.config.mjs`, `frontend/package.json`, `.gitignore`,
`.prettierignore`
- `docker/frontend/Dockerfile`
- 8 `.github/workflows/*.yml`, plus `.github/dependabot.yml`,
`.github/config/.files.yaml`, `.github/labeler-config-srvaroa.yml`
- `scripts/translations/**`
- Docs: `AGENTS.md`, `CLAUDE.md`, `ADDING_TOOLS.md`,
`DeveloperGuide.md`,
`WINDOWS_SIGNING.md`, `devGuide/HowToAddNewLanguage.md`,
`frontend/README.md`,
`frontend/editor/DeveloperGuide.md`
Plus 3 renamed + edited: `editor/vite.config.ts` (env path +
node_modules
walk-up), `editor/scripts/setup-env.mts` (renamed from `.ts` for
`import.meta.url`), `editor/scripts/build-provisioner.mjs` (resolve
src-tauri
relative to script).
### Verification
| Check | Result |
|---|---|
| `task frontend:typecheck:all` (6 variants) | exit 0 |
| `task frontend:lint` (eslint + dpdm) | exit 0 |
| `task frontend:format:check` | exit 0 |
| `task frontend:test` | 657 tests pass, 50 files |
| `task frontend:build:{core,proprietary,saas,desktop,prototypes}` | all
green |
| `task desktop:build` | full Tauri pipeline →
`Stirling-PDF_2.11.0_x64_en-US.msi` |
| `playwright test --list --project=stubbed` | 172 tests discovered |
`task desktop:build` exercises the heaviest path — Rust + WiX + MSI
bundle
against the moved `editor/src-tauri/`. If anything in the restructure
was
wrong it wouldn't have built.
### Test plan
- [ ] `frontend-validation.yml` green
- [ ] `e2e-stubbed.yml` green
- [ ] `tauri-build.yml` green on at least one platform
- [ ] `check_toml.yml` runs on a translation-touching PR
---------
Co-authored-by: Claude Opus 4.7 (1M context) <[email protected]>
270 lines
8.3 KiB
TypeScript
270 lines
8.3 KiB
TypeScript
import { useState, useEffect } from "react";
|
|
import { useNavigate, useLocation } from "react-router-dom";
|
|
import { signInAnonymously } from "@app/auth/supabase";
|
|
import { useAuth } from "@app/auth/UseSession";
|
|
import { useTranslation } from "@app/hooks/useTranslation";
|
|
import { useDocumentMeta } from "@app/hooks/useDocumentMeta";
|
|
import { getBaseUrl } from "@app/constants/app";
|
|
import AuthLayout from "@app/routes/authShared/AuthLayout";
|
|
import "@app/routes/authShared/auth.css";
|
|
import "@app/routes/authShared/saas-auth.css";
|
|
import GuestSignInButton from "@app/routes/authShared/GuestSignInButton";
|
|
import { alert } from "@app/components/toast";
|
|
|
|
// Import signup components
|
|
import LoginHeader from "@app/routes/login/LoginHeader";
|
|
import ErrorMessage from "@app/routes/login/ErrorMessage";
|
|
import OAuthButtons from "@app/routes/login/OAuthButtons";
|
|
import DividerWithText from "@app/components/shared/DividerWithText";
|
|
import SignupForm from "@app/routes/signup/SignupForm";
|
|
import {
|
|
useSignupFormValidation,
|
|
SignupFieldErrors,
|
|
} from "@app/routes/signup/SignupFormValidation";
|
|
import { useAuthService } from "@app/routes/signup/AuthService";
|
|
|
|
export default function Signup() {
|
|
const navigate = useNavigate();
|
|
const location = useLocation();
|
|
const { session, loading, refreshSession } = useAuth();
|
|
const { t } = useTranslation();
|
|
const [isSigningUp, setIsSigningUp] = useState(false);
|
|
const [error, setError] = useState<string | null>(null);
|
|
const [showEmailForm, setShowEmailForm] = useState(false);
|
|
const [name, setName] = useState(undefined as string | undefined);
|
|
const [email, setEmail] = useState("");
|
|
const [password, setPassword] = useState("");
|
|
const [confirmPassword, setConfirmPassword] = useState("");
|
|
const [agree, setAgree] = useState(true);
|
|
const [fieldErrors, setFieldErrors] = useState<SignupFieldErrors>({});
|
|
|
|
// Check if we were redirected here with an auto-auth error
|
|
useEffect(() => {
|
|
const state = location.state as { autoAuthError?: string } | null;
|
|
if (state?.autoAuthError) {
|
|
setError(`Unable to access tool: ${state.autoAuthError}`);
|
|
}
|
|
}, [location.state]);
|
|
|
|
// Redirect back to original tool URL once session appears (after auto-anon completes)
|
|
useEffect(() => {
|
|
if (!loading && session) {
|
|
const state = location.state as {
|
|
from?: { pathname?: string; search?: string; hash?: string };
|
|
} | null;
|
|
const from = state?.from;
|
|
if (
|
|
from?.pathname &&
|
|
from.pathname !== "/signup" &&
|
|
from.pathname !== "/login"
|
|
) {
|
|
const target = `${from.pathname}${from.search ?? ""}${from.hash ?? ""}`;
|
|
console.log("[Signup] Session detected, redirecting back to:", target);
|
|
navigate(target, { replace: true });
|
|
}
|
|
}
|
|
}, [loading, session, location.state, navigate]);
|
|
|
|
const handleAnonymousSignIn = async () => {
|
|
try {
|
|
setIsSigningUp(true);
|
|
setError(null);
|
|
|
|
console.log("[Signup] Initiating anonymous sign-in...");
|
|
const { data } = await signInAnonymously();
|
|
|
|
if (data.user) {
|
|
console.log(
|
|
"[Signup] Anonymous sign-in successful, refreshing session...",
|
|
);
|
|
|
|
// Refresh session to ensure backend endpoints are properly synchronized
|
|
await refreshSession();
|
|
|
|
console.log("[Signup] Session refreshed, redirecting to home page");
|
|
// Redirect to home page after successful anonymous login and session refresh
|
|
navigate("/");
|
|
}
|
|
} catch (err) {
|
|
console.error("[Signup] Anonymous sign-in unexpected error:", err);
|
|
setError(
|
|
`Unexpected error: ${err instanceof Error ? err.message : "Unknown error"}`,
|
|
);
|
|
} finally {
|
|
setIsSigningUp(false);
|
|
}
|
|
};
|
|
|
|
const baseUrl = getBaseUrl();
|
|
|
|
// Set document meta
|
|
useDocumentMeta({
|
|
title: `${t("signup.title", "Create an account")} - Stirling PDF`,
|
|
description: t(
|
|
"app.description",
|
|
"The Free Adobe Acrobat alternative (10M+ Downloads)",
|
|
),
|
|
ogTitle: `${t("signup.title", "Create an account")} - Stirling PDF`,
|
|
ogDescription: t(
|
|
"app.description",
|
|
"The Free Adobe Acrobat alternative (10M+ Downloads)",
|
|
),
|
|
ogImage: `${baseUrl}/og_images/home.png`,
|
|
ogUrl: `${window.location.origin}${window.location.pathname}`,
|
|
});
|
|
|
|
const { validateSignupForm } = useSignupFormValidation();
|
|
const { signUp, signInWithProvider } = useAuthService();
|
|
|
|
const handleSignUp = async () => {
|
|
const validation = validateSignupForm(
|
|
email,
|
|
password,
|
|
confirmPassword,
|
|
name,
|
|
);
|
|
if (!validation.isValid) {
|
|
setError(validation.error);
|
|
setFieldErrors(validation.fieldErrors || {});
|
|
return;
|
|
}
|
|
|
|
try {
|
|
setIsSigningUp(true);
|
|
setError(null);
|
|
setFieldErrors({});
|
|
|
|
const result = await signUp(email, password, name);
|
|
|
|
if (result.requiresEmailConfirmation) {
|
|
alert({
|
|
alertType: "success",
|
|
title: t("signup.checkEmailConfirmation"),
|
|
location: "top-right",
|
|
isPersistentPopup: true,
|
|
});
|
|
} else {
|
|
alert({
|
|
alertType: "success",
|
|
title: t("signup.accountCreatedSuccessfully"),
|
|
location: "top-right",
|
|
durationMs: 3000,
|
|
});
|
|
setTimeout(() => navigate("/login"), 2000);
|
|
}
|
|
} catch (err) {
|
|
console.error("[Signup] Unexpected error:", err);
|
|
setError(
|
|
err instanceof Error
|
|
? err.message
|
|
: t("signup.unexpectedError", { message: "Unknown error" }),
|
|
);
|
|
} finally {
|
|
setIsSigningUp(false);
|
|
}
|
|
};
|
|
|
|
const handleProviderSignIn = async (
|
|
provider: "github" | "google" | "apple" | "azure",
|
|
) => {
|
|
try {
|
|
setIsSigningUp(true);
|
|
setError(null);
|
|
await signInWithProvider(provider);
|
|
} catch (err) {
|
|
setError(
|
|
err instanceof Error
|
|
? err.message
|
|
: t("signup.unexpectedError", { message: "Unknown error" }),
|
|
);
|
|
} finally {
|
|
setIsSigningUp(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<AuthLayout isEmailFormExpanded={showEmailForm}>
|
|
<LoginHeader title={t("signup.title")} subtitle={t("signup.subtitle")} />
|
|
|
|
<ErrorMessage error={error} />
|
|
|
|
{/* OAuth first */}
|
|
<div style={{ marginBottom: "0.5rem" }}>
|
|
<OAuthButtons
|
|
onProviderClick={handleProviderSignIn}
|
|
isSubmitting={isSigningUp}
|
|
layout="fullwidth"
|
|
/>
|
|
</div>
|
|
|
|
{/* Divider between OAuth and Email */}
|
|
<div style={{ margin: "0.5rem 0" }}>
|
|
<DividerWithText
|
|
text={t("signup.or", "or")}
|
|
respondsToDarkMode={false}
|
|
opacity={0.4}
|
|
/>
|
|
</div>
|
|
|
|
{/* Use Email Instead button (toggles email form) */}
|
|
<div className="auth-section">
|
|
<button
|
|
type="button"
|
|
disabled={isSigningUp}
|
|
onClick={() => setShowEmailForm((v) => !v)}
|
|
className="w-full px-4 py-[0.75rem] rounded-[0.625rem] text-base font-semibold mb-2 cursor-pointer border-0 disabled:opacity-50 disabled:cursor-not-allowed auth-cta-button"
|
|
>
|
|
{t("signup.useEmailInstead", "Use Email Instead")}
|
|
</button>
|
|
</div>
|
|
|
|
{showEmailForm && (
|
|
<SignupForm
|
|
name={name}
|
|
email={email}
|
|
password={password}
|
|
confirmPassword={confirmPassword}
|
|
agree={agree}
|
|
setName={setName}
|
|
setEmail={setEmail}
|
|
setPassword={setPassword}
|
|
setConfirmPassword={setConfirmPassword}
|
|
setAgree={setAgree}
|
|
onSubmit={handleSignUp}
|
|
isSubmitting={isSigningUp}
|
|
fieldErrors={fieldErrors}
|
|
/>
|
|
)}
|
|
|
|
<div className="auth-section-sm">
|
|
<DividerWithText
|
|
text={t("signup.or", "or")}
|
|
respondsToDarkMode={false}
|
|
opacity={0.4}
|
|
/>
|
|
</div>
|
|
|
|
<GuestSignInButton
|
|
onClick={handleAnonymousSignIn}
|
|
disabled={isSigningUp}
|
|
label={
|
|
isSigningUp
|
|
? t("login.signingIn", "Signing in...")
|
|
: t("login.signInAnonymously", "Sign in as a Guest")
|
|
}
|
|
/>
|
|
|
|
{/* Bottom row */}
|
|
<div className="auth-bottom-right">
|
|
<button
|
|
type="button"
|
|
onClick={() => navigate("/login")}
|
|
className="auth-link-black"
|
|
>
|
|
{t("login.logIn", "Log In")}
|
|
</button>
|
|
</div>
|
|
</AuthLayout>
|
|
);
|
|
}
|