Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { ProgressBar, WordPressLogo } from '@automattic/components';
import { useFlowProgress } from '@automattic/onboarding';
import { useTranslate } from 'i18n-calypso';
import './style.scss';
interface ProgressBarData {
flowName?: string;
stepName?: string;
}
interface Props {
progressBar?: ProgressBarData;
shouldShowLoadingScreen?: boolean;
rightComponent?: React.ReactNode;
logoComponent?: React.ReactNode;
pageTitle?: string;
}
const SignupHeader = ( {
shouldShowLoadingScreen,
rightComponent,
logoComponent,
progressBar = {},
pageTitle,
}: Props ) => {
const translate = useTranslate();
const VARIATION_TITLES: Record< string, string > = {
videopress: translate( 'Video' ),
};
const params = new URLSearchParams( window.location.search );
const variationName = params.get( 'variationName' );
const variationTitle = variationName && VARIATION_TITLES[ variationName ];
const showPageTitle = variationTitle || params.has( 'pageTitle' ) || Boolean( pageTitle );
const variablePageTitle = variationTitle || pageTitle || params.get( 'pageTitle' );
const flowProgress = useFlowProgress(
variationName ? { flowName: variationName, stepName: progressBar.stepName } : progressBar
);
const logoClasses = 'wordpress-logo';
return (
<>
<div className="signup-header" role="banner" aria-label="banner">
{ flowProgress && ! shouldShowLoadingScreen && flowProgress?.progress > 0 && (
<ProgressBar
className={ variationName ? variationName : progressBar.flowName }
value={ flowProgress.progress }
total={ flowProgress.count }
/>
) }
{ logoComponent || <WordPressLogo size={ 120 } className={ logoClasses } /> }
{ showPageTitle && <h1>{ variablePageTitle }</h1> }
{ /* This should show a sign in link instead of
the progressIndicator on the account step. */ }
<div className="signup-header__right">{ ! shouldShowLoadingScreen && rightComponent }</div>
</div>
</>
);
};
export default SignupHeader;