mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-15 19:10:47 +02:00
# Description of Changes Changes the strategy for autoformatting to reject PRs if they are not formatted correctly instead of allowing them to merge and then spawning a new PR to fix the formatting. The old strategy just caused more work for us because we'd have to manually approve the followup PR and get it merged, which required 2 reviewers so in practice it rarely got done and just meant everyone's PRs ended up containing reformatting for unrelated files, which makes code review unnecessarily difficult. If the PR's code is not formatted correctly after this PR, a comment will be added automatically to tell the author how to run the formatter script to fix their code so it can go in. This also enables autoformatting for the frontend code, using Prettier. I've enabled it for pretty much everything in the frontend folder, other than 3rd party files and files it doesn't make sense for. I also excluded Markdown because it sounds likely to be more annoying to have to autoformat the Markdown in the frontend folder but nowhere else. Open to changing this though if people disagree. > [!note] > > Advice to reviewers: The first commit contains all of the actual logic I've introduced (CI changes, Prettier config, etc.) > The second commit is just the reformatting of the entire frontend folder. > The first commit needs proper review, the second one just give it a spot-check that it's doing what you'd expect.
82 lines
3.3 KiB
TypeScript
82 lines
3.3 KiB
TypeScript
import React, { useEffect, useMemo, useRef, useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import LoginRightCarousel from "@app/components/shared/LoginRightCarousel";
|
|
import buildLoginSlides from "@app/components/shared/loginSlides";
|
|
import styles from "@app/routes/authShared/AuthLayout.module.css";
|
|
import { useLogoVariant } from "@app/hooks/useLogoVariant";
|
|
import { useIsOverflowing } from "@app/hooks/useIsOverflowing";
|
|
import Footer from "@app/components/shared/Footer";
|
|
|
|
interface AuthLayoutProps {
|
|
children: React.ReactNode;
|
|
isEmailFormExpanded?: boolean;
|
|
}
|
|
|
|
export default function AuthLayout({ children, isEmailFormExpanded = false }: AuthLayoutProps) {
|
|
const { t } = useTranslation();
|
|
const cardRef = useRef<HTMLDivElement | null>(null);
|
|
const leftPanelRef = useRef<HTMLDivElement | null>(null);
|
|
const [hideRightPanel, setHideRightPanel] = useState(false);
|
|
const logoVariant = useLogoVariant();
|
|
const imageSlides = useMemo(() => buildLoginSlides(logoVariant, t), [logoVariant, t]);
|
|
const isOverflowing = useIsOverflowing(leftPanelRef);
|
|
|
|
// Use either overflow detection or email form expansion to determine scrollable state
|
|
const shouldBeScrollable = isOverflowing || isEmailFormExpanded;
|
|
|
|
// Force light mode on auth pages
|
|
useEffect(() => {
|
|
const htmlElement = document.documentElement;
|
|
const previousColorScheme = htmlElement.getAttribute("data-mantine-color-scheme");
|
|
|
|
// Set light mode
|
|
htmlElement.setAttribute("data-mantine-color-scheme", "light");
|
|
|
|
// Cleanup: restore previous theme when leaving auth pages
|
|
return () => {
|
|
if (previousColorScheme) {
|
|
htmlElement.setAttribute("data-mantine-color-scheme", previousColorScheme);
|
|
}
|
|
};
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
const update = () => {
|
|
// Use viewport to avoid hysteresis when the card is already in single-column mode
|
|
const viewportWidth = window.innerWidth;
|
|
const viewportHeight = window.innerHeight;
|
|
const cardWidthIfTwoCols = Math.min(1180, viewportWidth * 0.96); // matches min(73.75rem, 96vw)
|
|
const columnWidth = cardWidthIfTwoCols / 2;
|
|
const tooNarrow = columnWidth < 470;
|
|
const tooShort = viewportHeight < 740;
|
|
setHideRightPanel(tooNarrow || tooShort);
|
|
};
|
|
update();
|
|
window.addEventListener("resize", update);
|
|
window.addEventListener("orientationchange", update);
|
|
return () => {
|
|
window.removeEventListener("resize", update);
|
|
window.removeEventListener("orientationchange", update);
|
|
};
|
|
}, []);
|
|
|
|
return (
|
|
<div className={styles.authContainer}>
|
|
<div className={styles.authMain}>
|
|
<div ref={cardRef} className={`${styles.authCard} ${!hideRightPanel ? styles.authCardTwoColumns : ""}`}>
|
|
<div
|
|
ref={leftPanelRef}
|
|
className={`${styles.authLeftPanel} ${shouldBeScrollable ? styles.authLeftPanelScrollable : styles.authLeftPanelCentered}`}
|
|
>
|
|
<div className={styles.authContent}>{children}</div>
|
|
</div>
|
|
{!hideRightPanel && <LoginRightCarousel imageSlides={imageSlides} initialSeconds={5} slideSeconds={8} />}
|
|
</div>
|
|
</div>
|
|
<div style={{ width: "100vw", marginTop: "auto", marginLeft: "-1.5rem", marginRight: "-1.5rem" }}>
|
|
<Footer forceLightMode={true} analyticsEnabled />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|