mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-16 19:33:11 +02:00
Bug/v2/onboarding slides fix (#5005)
# Description of Changes - Stop onboarding from appearing before logging in - Also (should've done this in a different PR) fixed a small bug in settings when changing logo --- ## 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. --------- Co-authored-by: Anthony Stirling <[email protected]> Co-authored-by: Connor Yoh <[email protected]>
This commit is contained in:
co-authored by
Anthony Stirling
Connor Yoh
parent
2277a94c91
commit
f8386843d4
@@ -34,7 +34,7 @@ export default function InitialOnboardingModal(props: InitialOnboardingModalProp
|
|||||||
return (
|
return (
|
||||||
<div className={styles.heroIconsContainer}>
|
<div className={styles.heroIconsContainer}>
|
||||||
<div className={styles.iconWrapper}>
|
<div className={styles.iconWrapper}>
|
||||||
<img src={`${BASE_PATH}/branding/StirlingLogoLegacy.svg`} alt="Stirling icon" className={styles.downloadIcon} />
|
<img src={`${BASE_PATH}/modern-logo/logo512.png`} alt="Stirling icon" className={styles.downloadIcon} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import { useAppConfig } from '@app/contexts/AppConfigContext';
|
|||||||
import { useCookieConsentContext } from '@app/contexts/CookieConsentContext';
|
import { useCookieConsentContext } from '@app/contexts/CookieConsentContext';
|
||||||
import { useOnboarding } from '@app/contexts/OnboardingContext';
|
import { useOnboarding } from '@app/contexts/OnboardingContext';
|
||||||
import type { LicenseNotice } from '@app/types/types';
|
import type { LicenseNotice } from '@app/types/types';
|
||||||
import { useNavigate } from 'react-router-dom';
|
import { useNavigate, useLocation } from 'react-router-dom';
|
||||||
import {
|
import {
|
||||||
ONBOARDING_SESSION_BLOCK_KEY,
|
ONBOARDING_SESSION_BLOCK_KEY,
|
||||||
ONBOARDING_SESSION_EVENT,
|
ONBOARDING_SESSION_EVENT,
|
||||||
@@ -13,6 +13,15 @@ import {
|
|||||||
} from '@app/constants/events';
|
} from '@app/constants/events';
|
||||||
import { useServerExperience } from '@app/hooks/useServerExperience';
|
import { useServerExperience } from '@app/hooks/useServerExperience';
|
||||||
|
|
||||||
|
// Auth routes where onboarding should NOT show
|
||||||
|
const AUTH_ROUTES = ['/login', '/signup', '/auth', '/invite'];
|
||||||
|
|
||||||
|
// Check if user has an auth token (to avoid flash before redirect)
|
||||||
|
function hasAuthToken(): boolean {
|
||||||
|
if (typeof window === 'undefined') return false;
|
||||||
|
return !!localStorage.getItem('stirling_jwt');
|
||||||
|
}
|
||||||
|
|
||||||
interface InitialModalHandlers {
|
interface InitialModalHandlers {
|
||||||
opened: boolean;
|
opened: boolean;
|
||||||
onLicenseNoticeUpdate: (notice: LicenseNotice) => void;
|
onLicenseNoticeUpdate: (notice: LicenseNotice) => void;
|
||||||
@@ -29,11 +38,30 @@ interface ServerLicenseModalHandlers {
|
|||||||
|
|
||||||
export function useOnboardingFlow() {
|
export function useOnboardingFlow() {
|
||||||
const { preferences, updatePreference } = usePreferences();
|
const { preferences, updatePreference } = usePreferences();
|
||||||
const { config } = useAppConfig();
|
const { config, loading: configLoading } = useAppConfig();
|
||||||
const { showCookieConsent, isReady: isCookieConsentReady } = useCookieConsentContext();
|
const { showCookieConsent, isReady: isCookieConsentReady } = useCookieConsentContext();
|
||||||
const { completeTour, tourType, isOpen } = useOnboarding();
|
const { completeTour, tourType, isOpen } = useOnboarding();
|
||||||
|
const location = useLocation();
|
||||||
|
|
||||||
const shouldShowIntro = !preferences.hasSeenIntroOnboarding;
|
// Check if we're on an auth route (login, signup, etc.)
|
||||||
|
const isOnAuthRoute = AUTH_ROUTES.some(route => location.pathname.startsWith(route));
|
||||||
|
|
||||||
|
// Check if login is enabled but user doesn't have a token
|
||||||
|
// This prevents a flash of the modal before redirect to /login
|
||||||
|
const loginEnabled = config?.enableLogin === true;
|
||||||
|
const isUnauthenticatedWithLoginEnabled = loginEnabled && !hasAuthToken();
|
||||||
|
|
||||||
|
// Don't show intro onboarding:
|
||||||
|
// 1. On explicit auth routes (/login, /signup, etc.)
|
||||||
|
// 2. While config is still loading
|
||||||
|
// 3. When login is enabled but user isn't authenticated (would redirect to /login)
|
||||||
|
// This ensures:
|
||||||
|
// - If login is enabled: user must be logged in before seeing onboarding
|
||||||
|
// - If login is disabled: homepage must have rendered first
|
||||||
|
const shouldShowIntro = !preferences.hasSeenIntroOnboarding
|
||||||
|
&& !isOnAuthRoute
|
||||||
|
&& !configLoading
|
||||||
|
&& !isUnauthenticatedWithLoginEnabled;
|
||||||
const isAdminUser = !!config?.isAdmin;
|
const isAdminUser = !!config?.isAdmin;
|
||||||
const { hasPaidLicense } = useServerExperience();
|
const { hasPaidLicense } = useServerExperience();
|
||||||
|
|
||||||
|
|||||||
@@ -2,9 +2,9 @@ import { AppProviders as CoreAppProviders, AppProvidersProps } from "@core/compo
|
|||||||
import { AuthProvider } from "@app/auth/UseSession";
|
import { AuthProvider } from "@app/auth/UseSession";
|
||||||
import { LicenseProvider } from "@app/contexts/LicenseContext";
|
import { LicenseProvider } from "@app/contexts/LicenseContext";
|
||||||
import { CheckoutProvider } from "@app/contexts/CheckoutContext";
|
import { CheckoutProvider } from "@app/contexts/CheckoutContext";
|
||||||
import { UpdateSeatsProvider } from "@app/contexts/UpdateSeatsContext"
|
|
||||||
import { UpgradeBannerInitializer } from "@app/components/shared/UpgradeBannerInitializer";
|
import { UpgradeBannerInitializer } from "@app/components/shared/UpgradeBannerInitializer";
|
||||||
import { ServerExperienceProvider } from "@app/contexts/ServerExperienceContext";
|
import { ServerExperienceProvider } from "@app/contexts/ServerExperienceContext";
|
||||||
|
import { UpdateSeatsProvider } from "@app/contexts/UpdateSeatsContext";
|
||||||
|
|
||||||
export function AppProviders({ children, appConfigRetryOptions, appConfigProviderProps }: AppProvidersProps) {
|
export function AppProviders({ children, appConfigRetryOptions, appConfigProviderProps }: AppProvidersProps) {
|
||||||
return (
|
return (
|
||||||
|
|||||||
+21
-5
@@ -54,6 +54,7 @@ export default function AdminGeneralSection() {
|
|||||||
const [originalSettingsSnapshot, setOriginalSettingsSnapshot] = useState<string>('');
|
const [originalSettingsSnapshot, setOriginalSettingsSnapshot] = useState<string>('');
|
||||||
const [isDirty, setLocalIsDirty] = useState(false);
|
const [isDirty, setLocalIsDirty] = useState(false);
|
||||||
const isInitialLoad = useRef(true);
|
const isInitialLoad = useRef(true);
|
||||||
|
const justSavedRef = useRef(false);
|
||||||
|
|
||||||
const {
|
const {
|
||||||
settings,
|
settings,
|
||||||
@@ -158,9 +159,12 @@ export default function AdminGeneralSection() {
|
|||||||
}
|
}
|
||||||
}, [loginEnabled, fetchSettings]);
|
}, [loginEnabled, fetchSettings]);
|
||||||
|
|
||||||
// Snapshot original settings after initial load and sync local preference with server
|
// Snapshot original settings after initial load OR after successful save (when refetch completes)
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!loading && isInitialLoad.current && Object.keys(settings).length > 0) {
|
if (loading || Object.keys(settings).length === 0) return;
|
||||||
|
|
||||||
|
// After initial load: set snapshot and sync preference
|
||||||
|
if (isInitialLoad.current) {
|
||||||
setOriginalSettingsSnapshot(JSON.stringify(settings));
|
setOriginalSettingsSnapshot(JSON.stringify(settings));
|
||||||
|
|
||||||
// Sync local preference with server setting on initial load to ensure they're in sync
|
// Sync local preference with server setting on initial load to ensure they're in sync
|
||||||
@@ -170,8 +174,17 @@ export default function AdminGeneralSection() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
isInitialLoad.current = false;
|
isInitialLoad.current = false;
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}, [loading, settings, loginEnabled, updatePreference]);
|
|
||||||
|
// After save: update snapshot to new server state so dirty tracking is accurate
|
||||||
|
if (justSavedRef.current) {
|
||||||
|
setOriginalSettingsSnapshot(JSON.stringify(settings));
|
||||||
|
setLocalIsDirty(false);
|
||||||
|
setIsDirty(false);
|
||||||
|
justSavedRef.current = false;
|
||||||
|
}
|
||||||
|
}, [loading, settings, loginEnabled, updatePreference, setIsDirty]);
|
||||||
|
|
||||||
// Track dirty state by comparing current settings to snapshot
|
// Track dirty state by comparing current settings to snapshot
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@@ -238,6 +251,9 @@ export default function AdminGeneralSection() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
// Mark that we just saved - the snapshot will be updated when refetch completes
|
||||||
|
justSavedRef.current = true;
|
||||||
|
|
||||||
await saveSettings();
|
await saveSettings();
|
||||||
|
|
||||||
// Update local preference after successful save so the app reflects the saved logo style
|
// Update local preference after successful save so the app reflects the saved logo style
|
||||||
@@ -245,12 +261,12 @@ export default function AdminGeneralSection() {
|
|||||||
updatePreference('logoVariant', settings.ui.logoStyle);
|
updatePreference('logoVariant', settings.ui.logoStyle);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update snapshot to current settings after successful save
|
// Clear dirty state immediately (snapshot will be updated by effect when refetch completes)
|
||||||
setOriginalSettingsSnapshot(JSON.stringify(settings));
|
|
||||||
setLocalIsDirty(false);
|
setLocalIsDirty(false);
|
||||||
markClean();
|
markClean();
|
||||||
showRestartModal();
|
showRestartModal();
|
||||||
} catch (_error) {
|
} catch (_error) {
|
||||||
|
justSavedRef.current = false;
|
||||||
alert({
|
alert({
|
||||||
alertType: 'error',
|
alertType: 'error',
|
||||||
title: t('admin.error', 'Error'),
|
title: t('admin.error', 'Error'),
|
||||||
|
|||||||
@@ -222,6 +222,7 @@ const AdminPlanSection: React.FC = () => {
|
|||||||
buttonColor="orange.7"
|
buttonColor="orange.7"
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<AvailablePlansSection
|
<AvailablePlansSection
|
||||||
plans={plans}
|
plans={plans}
|
||||||
currentLicenseInfo={licenseInfo}
|
currentLicenseInfo={licenseInfo}
|
||||||
|
|||||||
Reference in New Issue
Block a user