import {useCallback, useEffect, useRef, useState} from 'react'; import Button from 'sentry/components/button'; import LoadingIndicator from 'sentry/components/loadingIndicator'; import ThemeAndStyleProvider from 'sentry/components/themeAndStyleProvider'; import {t} from 'sentry/locale'; import useApi from 'sentry/utils/useApi'; type Props = { hash?: boolean | string; }; function SetupWizard({hash = false}: Props) { const api = useApi(); const closeTimeoutRef = useRef(undefined); const [finished, setFinished] = useState(false); useEffect(() => { return () => { if (closeTimeoutRef.current) { window.clearTimeout(closeTimeoutRef.current); } }; }); useEffect(() => { return () => { window.clearTimeout(closeTimeoutRef.current); }; }); const checkFinished = useCallback(async () => { try { await api.requestPromise(`/wizard/${hash}/`); } catch { setFinished(true); window.clearTimeout(closeTimeoutRef.current); closeTimeoutRef.current = window.setTimeout(() => window.close(), 10000); } }, [api, hash]); useEffect(() => { const pollingInterval = window.setInterval(checkFinished, 1000); return () => window.clearInterval(pollingInterval); }, [checkFinished]); return (
{!finished ? (
{t('Waiting for wizard to connect')}
) : (
{t('Return to your terminal to complete your setup')}
{t('(This window will close in 10 seconds)')}
)}
); } export default SetupWizard;