mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-16 03:20:46 +02:00
# Description of Changes <img width="2056" height="1084" alt="Screenshot 2025-11-25 at 3 54 11 PM" src="https://github.com/user-attachments/assets/32c0b69a-4799-49f2-be8b-d75bba5e6aac" /> --- ## Checklist ### General - [ ] I have read the [Contribution Guidelines](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/CONTRIBUTING.md) - [ ] I have read the [Stirling-PDF Developer Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/DeveloperGuide.md) (if applicable) - [ ] I have read the [How to add new languages to Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/HowToAddNewLanguage.md) (if applicable) - [ ] I have performed a self-review of my own code - [ ] My changes generate no new warnings ### Documentation - [ ] I have updated relevant docs on [Stirling-PDF's doc repo](https://github.com/Stirling-Tools/Stirling-Tools.github.io/blob/main/docs/) (if functionality has heavily changed) - [ ] I have read the section [Add New Translation Tags](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/HowToAddNewLanguage.md#add-new-translation-tags) (for new translation tags only) ### Translations (if applicable) - [ ] I ran [`scripts/counter_translation.py`](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/docs/counter_translation.md) ### UI Changes (if applicable) - [ ] Screenshots or videos demonstrating the UI changes are attached (e.g., as comments or direct attachments in the PR) ### Testing (if applicable) - [ ] I have tested my changes locally. Refer to the [Testing Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/DeveloperGuide.md#6-testing) for more details.
73 lines
2.5 KiB
TypeScript
73 lines
2.5 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';
|
|
|
|
interface AuthLayoutProps {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
export default function AuthLayout({ children }: AuthLayoutProps) {
|
|
const { t } = useTranslation();
|
|
const cardRef = useRef<HTMLDivElement | null>(null);
|
|
const [hideRightPanel, setHideRightPanel] = useState(false);
|
|
const logoVariant = useLogoVariant();
|
|
const imageSlides = useMemo(() => buildLoginSlides(logoVariant, t), [logoVariant, t]);
|
|
|
|
// 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
|
|
ref={cardRef}
|
|
className={`${styles.authCard} ${!hideRightPanel ? styles.authCardTwoColumns : ''}`}
|
|
>
|
|
<div className={styles.authLeftPanel}>
|
|
<div className={styles.authContent}>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
{!hideRightPanel && (
|
|
<LoginRightCarousel imageSlides={imageSlides} initialSeconds={5} slideSeconds={8} />
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|