Add LoadingScreen for fullscreen, theme-specific loading

environments/review-loading-sc-m2qouo/deployments/25
Alex Gleason 2 years ago
parent 5f951b34ee
commit 84b04250ac
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

@ -0,0 +1,19 @@
import React from 'react';
import LandingGradient from 'soapbox/components/landing-gradient';
import { Spinner } from 'soapbox/components/ui';
/** Fullscreen loading indicator. */
const LoadingScreen: React.FC = () => {
return (
<div className='fixed h-screen w-screen bg-white dark:bg-slate-900'>
<LandingGradient />
<div className='fixed h-screen w-screen flex items-center justify-center z-10'>
<Spinner size={40} withText={false} />
</div>
</div>
);
};
export default LoadingScreen;

@ -14,7 +14,7 @@ import { loadSoapboxConfig, getSoapboxConfig } from 'soapbox/actions/soapbox';
import { fetchVerificationConfig } from 'soapbox/actions/verification';
import * as BuildConfig from 'soapbox/build_config';
import Helmet from 'soapbox/components/helmet';
import { Spinner } from 'soapbox/components/ui';
import LoadingScreen from 'soapbox/components/loading-screen';
import AuthLayout from 'soapbox/features/auth_layout';
import OnboardingWizard from 'soapbox/features/onboarding/onboarding-wizard';
import PublicLayout from 'soapbox/features/public_layout';
@ -126,13 +126,13 @@ const SoapboxMount = () => {
if (showLoading) {
return (
<div className='p-4 h-screen w-screen flex items-center justify-center'>
<>
<Helmet>
{themeCss && <style id='theme' type='text/css'>{`:root{${themeCss}}`}</style>}
</Helmet>
<Spinner size={40} withText={false} />
</div>
<LoadingScreen />
</>
);
}

Loading…
Cancel
Save