import { ActionButtons } from '@automattic/onboarding';
import clsx from 'clsx';
import { localize } from 'i18n-calypso';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { connect } from 'react-redux';
import FormattedHeader from 'calypso/components/formatted-header';
import flows from 'calypso/signup/config/flows';
import NavigationLink from 'calypso/signup/navigation-link';
import { isUserLoggedIn } from 'calypso/state/current-user/selectors';
import getCurrentQueryArguments from 'calypso/state/selectors/get-current-query-arguments';
import HelpCenterStepButton from '../help-center-step-button';
import './style.scss';
class StepWrapper extends Component {
static propTypes = {
shouldHideNavButtons: PropTypes.bool,
translate: PropTypes.func.isRequired,
hideFormattedHeader: PropTypes.bool,
headerImageUrl: PropTypes.string,
hideBack: PropTypes.bool,
hideSkip: PropTypes.bool,
hideNext: PropTypes.bool,
isSticky: PropTypes.bool,
// Allows to force a back button in the first step for example.
// You should only force this when you're passing a backUrl.
allowBackFirstStep: PropTypes.bool,
skipLabelText: PropTypes.string,
skipHeadingText: PropTypes.string,
skipButtonAlign: PropTypes.oneOf( [ 'top', 'bottom' ] ),
nextLabelText: PropTypes.string,
// Displays an
above the skip button and adds more white space
isLargeSkipLayout: PropTypes.bool,
isExternalBackUrl: PropTypes.bool,
headerButton: PropTypes.node,
isWideLayout: PropTypes.bool,
isFullLayout: PropTypes.bool,
isHorizontalLayout: PropTypes.bool,
queryParams: PropTypes.object,
customizedActionButtons: PropTypes.element,
userLoggedIn: PropTypes.bool,
};
static defaultProps = {
allowBackFirstStep: false,
skipButtonAlign: 'bottom',
hideNext: true,
};
renderBack() {
if ( this.props.shouldHideNavButtons ) {
return null;
}
return (
);
}
renderSkip( { borderless, forwardIcon } ) {
const {
shouldHideNavButtons,
skipHeadingText,
skipLabelText,
defaultDependencies,
flowName,
stepName,
goToNextStep,
} = this.props;
if ( shouldHideNavButtons || ! goToNextStep ) {
return null;
}
return (
{ skipHeadingText &&
{ skipHeadingText }
}
);
}
renderNext() {
const {
shouldHideNavButtons,
nextLabelText,
defaultDependencies,
flowName,
stepName,
forwardUrl,
goToNextStep,
translate,
} = this.props;
if ( shouldHideNavButtons || ! goToNextStep ) {
return null;
}
return (
);
}
headerText() {
if ( this.props.positionInFlow === 0 ) {
if ( this.props.headerText !== undefined ) {
return this.props.headerText;
}
return this.props.translate( 'Let’s get started' );
}
if ( this.props.fallbackHeaderText !== undefined ) {
return this.props.fallbackHeaderText;
}
}
subHeaderText() {
if ( this.props.positionInFlow === 0 ) {
if ( this.props.subHeaderText !== undefined ) {
return this.props.subHeaderText;
}
return this.props.translate( 'Welcome to the best place for your WordPress website.' );
}
if ( this.props.fallbackSubHeaderText !== undefined ) {
return this.props.fallbackSubHeaderText;
}
}
render() {
const {
flowName,
stepContent,
headerButton,
headerContent,
hideFormattedHeader,
hideBack,
hideSkip,
hideNext,
isLargeSkipLayout,
isWideLayout,
isFullLayout,
skipButtonAlign,
align,
headerImageUrl,
isHorizontalLayout,
customizedActionButtons,
isExtraWideLayout,
isSticky,
userLoggedIn,
} = this.props;
const backButton = ! hideBack && this.renderBack();
const skipButton =
! hideSkip &&
skipButtonAlign === 'top' &&
this.renderSkip( { borderless: true, forwardIcon: null } );
const nextButton = ! hideNext && this.renderNext();
const hasNavigation = backButton || skipButton || nextButton || customizedActionButtons;
const classes = clsx( 'step-wrapper', this.props.className, {
'is-horizontal-layout': isHorizontalLayout,
'is-wide-layout': isWideLayout,
'is-extra-wide-layout': isExtraWideLayout,
'is-full-layout': isFullLayout,
'is-large-skip-layout': isLargeSkipLayout,
'has-navigation': hasNavigation,
} );
const flow = flows.getFlow( flowName, userLoggedIn );
let sticky = null;
if ( isSticky !== undefined ) {
sticky = isSticky;
}
const isHelpCenterLinkEnabled = flow?.enabledHelpCenterLocales && userLoggedIn;
return (
<>
{ backButton }
{ skipButton }
{ nextButton }
{ customizedActionButtons }
{ isHelpCenterLinkEnabled && (
) }
{ ! hideFormattedHeader && (
{ headerImageUrl && (
) }
{ headerContent && (
{ headerContent }
) }
{ headerButton && (
{ headerButton }
) }
) }
{ stepContent }
{ ! hideSkip && skipButtonAlign === 'bottom' && (
{ isLargeSkipLayout &&
}
{ this.renderSkip( { borderless: true } ) }
) }
>
);
}
}
export default connect( ( state, ownProps ) => {
const backToParam = getCurrentQueryArguments( state )?.back_to?.toString();
const backTo = backToParam?.startsWith( '/' ) ? backToParam : undefined;
let backUrl = ownProps.backUrl;
// Fallback to back_to from the query string only if the current step is the first step.
if ( ! backUrl && ownProps.positionInFlow === 0 ) {
backUrl = backTo;
}
return {
backUrl,
userLoggedIn: isUserLoggedIn( state ),
};
} )( localize( StepWrapper ) );