Server IP : 85.214.239.14 / Your IP : 18.118.33.239 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /var/www/wordpress/wp-content/plugins/really-simple-ssl/settings/src/Onboarding/ |
Upload File : |
import { useEffect } from "@wordpress/element"; import { __ } from '@wordpress/i18n'; import Icon from "../utils/Icon"; import Placeholder from '../Placeholder/Placeholder'; import useFields from "../Settings/FieldsData"; import useOnboardingData from "./OnboardingData"; import OnboardingControls from "./OnboardingControls"; import StepEmail from "./Steps/StepEmail"; import StepConfig from "./Steps/StepConfig"; import StepLicense from "./Steps/StepLicense"; import StepFeatures from "./Steps/StepFeatures"; import StepPlugins from "./Steps/StepPlugins"; import StepPro from "./Steps/StepPro"; import './PremiumItem.scss'; import './checkbox.scss'; import './onboarding.scss'; import DOMPurify from 'dompurify'; const Onboarding = ({isModal}) => { const { fetchFieldsData, fieldsLoaded} = useFields(); const { getSteps, error, networkwide, sslEnabled, dataLoaded, processing, currentStep, currentStepIndex, setCurrentStepIndex, networkActivationStatus, networkProgress, activateSSLNetworkWide, } = useOnboardingData(); useEffect( () => { if (networkwide && networkActivationStatus==='main_site_activated') { //run networkwide activation with a delay setTimeout( () => { activateSSLNetworkWide(); }, 1000); } }, [networkActivationStatus, networkProgress]) useEffect(() => { if ( !fieldsLoaded ) { fetchFieldsData(); } }, []); useEffect( () => { const run = async () => { await getSteps(false); if (dataLoaded && steps.length > 0) { setCurrentStepIndex(0); // Always start at the first step } } run(); }, []) if (error){ return ( <Placeholder lines="3" error={error}></Placeholder> ) } let processingClass = '';//processing ? 'rsssl-processing' : ''; //get 'other_host_type' field from fields return ( <> { !dataLoaded && <> <div className="rsssl-onboarding-placeholder"> <ul> <li><Icon name = "loading" color = 'grey' />{__("Fetching next step...", "really-simple-ssl")}</li> </ul> <Placeholder lines="3" ></Placeholder> </div> </> } { dataLoaded && <div className={ processingClass+" rsssl-"+currentStep.id }> { currentStep.id === 'activate_ssl' && <> <StepConfig isModal={isModal}/> </> } { currentStep.id === 'activate_license' && <> <StepLicense /> </> } { currentStep.id === 'features'&& <> <StepFeatures /> </> } { currentStep.id === 'email'&& <> <StepEmail /> </> } { currentStep.id === 'plugins' && <> <StepPlugins /> </> } { currentStep.id === 'pro' && <> <StepPro /> </> } { !isModal && <OnboardingControls isModal={false}/> } </div> } </> ) } export default Onboarding;