File size: 8,007 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
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 <hr> 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 (
<NavigationLink
direction="back"
goToPreviousStep={ this.props.goToPreviousStep }
flowName={ this.props.flowName }
positionInFlow={ this.props.positionInFlow }
stepName={ this.props.stepName }
stepSectionName={ this.props.stepSectionName }
backUrl={ this.props.backUrl }
rel={ this.props.isExternalBackUrl ? 'external' : '' }
labelText={ this.props.backLabelText }
allowBackFirstStep={ this.props.allowBackFirstStep || !! this.props.backUrl }
backIcon="chevron-left"
queryParams={ this.props.queryParams }
/>
);
}
renderSkip( { borderless, forwardIcon } ) {
const {
shouldHideNavButtons,
skipHeadingText,
skipLabelText,
defaultDependencies,
flowName,
stepName,
goToNextStep,
} = this.props;
if ( shouldHideNavButtons || ! goToNextStep ) {
return null;
}
return (
<div className="step-wrapper__skip-wrapper">
{ skipHeadingText && <div className="step-wrapper__skip-heading">{ skipHeadingText }</div> }
<NavigationLink
direction="forward"
goToNextStep={ goToNextStep }
defaultDependencies={ defaultDependencies }
flowName={ flowName }
stepName={ stepName }
labelText={ skipLabelText }
cssClass={ clsx( 'step-wrapper__navigation-link', 'has-underline', {
'has-skip-heading': skipHeadingText,
} ) }
borderless={ borderless }
forwardIcon={ forwardIcon }
/>
</div>
);
}
renderNext() {
const {
shouldHideNavButtons,
nextLabelText,
defaultDependencies,
flowName,
stepName,
forwardUrl,
goToNextStep,
translate,
} = this.props;
if ( shouldHideNavButtons || ! goToNextStep ) {
return null;
}
return (
<NavigationLink
direction="forward"
goToNextStep={ goToNextStep }
forwardUrl={ forwardUrl }
defaultDependencies={ defaultDependencies }
flowName={ flowName }
stepName={ stepName }
labelText={ nextLabelText || translate( 'Continue' ) }
cssClass="step-wrapper__navigation-link"
borderless={ false }
primary
forwardIcon={ null }
disabledTracksOnClick
/>
);
}
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 (
<>
<div className={ classes }>
<ActionButtons className="step-wrapper__navigation" sticky={ sticky }>
{ backButton }
{ skipButton }
{ nextButton }
{ customizedActionButtons }
{ isHelpCenterLinkEnabled && (
<HelpCenterStepButton
flowName={ flowName }
enabledLocales={ flow?.enabledHelpCenterLocales }
helpCenterButtonCopy={ flow?.helpCenterButtonCopy }
helpCenterButtonLink={ flow?.helpCenterButtonLink }
/>
) }
</ActionButtons>
{ ! hideFormattedHeader && (
<div className="step-wrapper__header">
<FormattedHeader
id="step-header"
headerText={ this.headerText() }
subHeaderText={ this.subHeaderText() }
align={ align }
brandFont
/>
{ headerImageUrl && (
<div className="step-wrapper__header-image">
<img src={ headerImageUrl } alt="" />
</div>
) }
{ headerContent && (
<div className="step-wrapper__header-content">{ headerContent }</div>
) }
{ headerButton && (
<div className="step-wrapper__header-button">{ headerButton }</div>
) }
</div>
) }
<div className="step-wrapper__content">{ stepContent }</div>
{ ! hideSkip && skipButtonAlign === 'bottom' && (
<div className="step-wrapper__buttons">
{ isLargeSkipLayout && <hr className="step-wrapper__skip-hr" /> }
{ this.renderSkip( { borderless: true } ) }
</div>
) }
</div>
</>
);
}
}
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 ) );
|