|
|
import config from '@automattic/calypso-config'; |
|
|
import { FormLabel } from '@automattic/components'; |
|
|
import { getLanguage } from '@automattic/i18n-utils'; |
|
|
import debugFactory from 'debug'; |
|
|
import { localize } from 'i18n-calypso'; |
|
|
import { includes, isEmpty, map } from 'lodash'; |
|
|
import { Component } from 'react'; |
|
|
import { connect } from 'react-redux'; |
|
|
import FormButton from 'calypso/components/forms/form-button'; |
|
|
import FormTextInput from 'calypso/components/forms/form-text-input'; |
|
|
import LoggedOutForm from 'calypso/components/logged-out-form'; |
|
|
import LoggedOutFormFooter from 'calypso/components/logged-out-form/footer'; |
|
|
import { recordTracksEvent } from 'calypso/lib/analytics/tracks'; |
|
|
import formState from 'calypso/lib/form-state'; |
|
|
import { getLocaleSlug } from 'calypso/lib/i18n-utils'; |
|
|
import { login } from 'calypso/lib/paths'; |
|
|
import wpcom from 'calypso/lib/wp'; |
|
|
import StepWrapper from 'calypso/signup/step-wrapper'; |
|
|
import ValidationFieldset from 'calypso/signup/validation-fieldset'; |
|
|
import { saveSignupStep, submitSignupStep } from 'calypso/state/signup/progress/actions'; |
|
|
import './style.scss'; |
|
|
|
|
|
const debug = debugFactory( 'calypso:steps:site' ); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const VALIDATION_DELAY_AFTER_FIELD_CHANGES = 1500; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let siteUrlsSearched = []; |
|
|
let timesValidationFailed = 0; |
|
|
|
|
|
class Site extends Component { |
|
|
static displayName = 'Site'; |
|
|
|
|
|
constructor( props ) { |
|
|
super( props ); |
|
|
|
|
|
let initialState; |
|
|
|
|
|
if ( props.step && props.step.form ) { |
|
|
initialState = props.step.form; |
|
|
|
|
|
if ( ! isEmpty( props.step.errors ) ) { |
|
|
initialState = formState.setFieldErrors( |
|
|
formState.setFieldsValidating( initialState ), |
|
|
{ |
|
|
site: props.step.errors[ 0 ].message, |
|
|
}, |
|
|
true |
|
|
); |
|
|
} |
|
|
} |
|
|
|
|
|
this.formStateController = new formState.Controller( { |
|
|
fieldNames: [ 'site' ], |
|
|
sanitizerFunction: this.sanitize, |
|
|
validatorFunction: this.validate, |
|
|
onNewState: this.setFormState, |
|
|
onError: this.handleFormControllerError, |
|
|
debounceWait: VALIDATION_DELAY_AFTER_FIELD_CHANGES, |
|
|
hideFieldErrorsOnChange: true, |
|
|
initialState: initialState, |
|
|
} ); |
|
|
|
|
|
this.state = { |
|
|
form: this.formStateController.getInitialState(), |
|
|
submitting: false, |
|
|
}; |
|
|
} |
|
|
|
|
|
componentWillUnmount() { |
|
|
this.save(); |
|
|
} |
|
|
|
|
|
sanitizeSubdomain = ( domain ) => { |
|
|
if ( ! domain ) { |
|
|
return domain; |
|
|
} |
|
|
return domain.replace( /[^a-zA-Z0-9]/g, '' ).toLowerCase(); |
|
|
}; |
|
|
|
|
|
sanitize = ( fields, onComplete ) => { |
|
|
const sanitizedSubdomain = this.sanitizeSubdomain( fields.site ); |
|
|
if ( fields.site !== sanitizedSubdomain ) { |
|
|
onComplete( { site: sanitizedSubdomain } ); |
|
|
} |
|
|
}; |
|
|
|
|
|
validate = ( fields, onComplete ) => { |
|
|
const locale = getLocaleSlug(); |
|
|
wpcom.req.post( |
|
|
'/sites/new', |
|
|
{ |
|
|
blog_name: fields.site, |
|
|
blog_title: fields.site, |
|
|
validate: true, |
|
|
locale, |
|
|
lang_id: getLanguage( locale ).value, |
|
|
client_id: config( 'wpcom_signup_id' ), |
|
|
client_secret: config( 'wpcom_signup_key' ), |
|
|
}, |
|
|
function ( error, response ) { |
|
|
let messages = {}; |
|
|
|
|
|
debug( error, response ); |
|
|
|
|
|
if ( error && error.message ) { |
|
|
if ( fields.site && ! includes( siteUrlsSearched, fields.site ) ) { |
|
|
siteUrlsSearched.push( fields.site ); |
|
|
|
|
|
recordTracksEvent( 'calypso_signup_site_url_validation_failed', { |
|
|
error: error.error, |
|
|
site_url: fields.site, |
|
|
} ); |
|
|
} |
|
|
|
|
|
timesValidationFailed++; |
|
|
|
|
|
messages = { |
|
|
site: { |
|
|
[ error.error ]: error.message, |
|
|
}, |
|
|
}; |
|
|
} |
|
|
onComplete( null, messages ); |
|
|
} |
|
|
); |
|
|
}; |
|
|
|
|
|
setFormState = ( state ) => { |
|
|
this.setState( { form: state } ); |
|
|
}; |
|
|
|
|
|
resetAnalyticsData = () => { |
|
|
siteUrlsSearched = []; |
|
|
timesValidationFailed = 0; |
|
|
}; |
|
|
|
|
|
handleSubmit = ( event ) => { |
|
|
event.preventDefault(); |
|
|
|
|
|
this.setState( { submitting: true } ); |
|
|
|
|
|
this.formStateController.handleSubmit( ( hasErrors ) => { |
|
|
const site = formState.getFieldValue( this.state.form, 'site' ); |
|
|
|
|
|
this.setState( { submitting: false } ); |
|
|
|
|
|
if ( hasErrors ) { |
|
|
return; |
|
|
} |
|
|
|
|
|
recordTracksEvent( 'calypso_signup_site_step_submit', { |
|
|
unique_site_urls_searched: siteUrlsSearched.length, |
|
|
times_validation_failed: timesValidationFailed, |
|
|
} ); |
|
|
|
|
|
this.resetAnalyticsData(); |
|
|
|
|
|
this.props.submitSignupStep( { |
|
|
stepName: this.props.stepName, |
|
|
form: this.state.form, |
|
|
site, |
|
|
} ); |
|
|
|
|
|
this.props.goToNextStep(); |
|
|
} ); |
|
|
}; |
|
|
|
|
|
handleBlur = () => { |
|
|
this.formStateController.sanitize(); |
|
|
this.formStateController.validate(); |
|
|
this.save(); |
|
|
}; |
|
|
|
|
|
save = () => { |
|
|
this.props.saveSignupStep( { |
|
|
stepName: 'site', |
|
|
form: this.state.form, |
|
|
} ); |
|
|
}; |
|
|
|
|
|
handleChangeEvent = ( event ) => { |
|
|
this.formStateController.handleFieldChange( { |
|
|
name: event.target.name, |
|
|
value: event.target.value, |
|
|
} ); |
|
|
}; |
|
|
|
|
|
handleFormControllerError = ( error ) => { |
|
|
if ( error ) { |
|
|
throw error; |
|
|
} |
|
|
}; |
|
|
|
|
|
getErrorMessagesWithLogin = ( fieldName ) => { |
|
|
const link = login( { redirectTo: window.location.href } ); |
|
|
const messages = formState.getFieldErrorMessages( this.state.form, fieldName ); |
|
|
|
|
|
if ( ! messages ) { |
|
|
return; |
|
|
} |
|
|
|
|
|
return map( messages, ( message, error_code ) => { |
|
|
if ( error_code === 'blog_name_reserved' ) { |
|
|
return ( |
|
|
<span> |
|
|
<p> |
|
|
{ message } |
|
|
|
|
|
{ this.props.translate( |
|
|
'Is this your username? {{a}}Log in now to claim this site address{{/a}}.', |
|
|
{ |
|
|
components: { |
|
|
a: <a href={ link } />, |
|
|
}, |
|
|
} |
|
|
) } |
|
|
</p> |
|
|
</span> |
|
|
); |
|
|
} |
|
|
return message; |
|
|
} ); |
|
|
}; |
|
|
|
|
|
formFields = () => { |
|
|
const fieldDisabled = this.state.submitting; |
|
|
|
|
|
return ( |
|
|
<ValidationFieldset errorMessages={ this.getErrorMessagesWithLogin( 'site' ) }> |
|
|
<FormLabel htmlFor="site">{ this.props.translate( 'Choose a site address' ) }</FormLabel> |
|
|
<FormTextInput |
|
|
autoFocus // eslint-disable-line jsx-a11y/no-autofocus |
|
|
autoCapitalize="off" |
|
|
className="site__site-url" |
|
|
disabled={ fieldDisabled } |
|
|
name="site" |
|
|
value={ formState.getFieldValue( this.state.form, 'site' ) } |
|
|
isError={ formState.isFieldInvalid( this.state.form, 'site' ) } |
|
|
isValid={ formState.isFieldValid( this.state.form, 'site' ) } |
|
|
onBlur={ this.handleBlur } |
|
|
onChange={ this.handleChangeEvent } |
|
|
/> |
|
|
<span className="site__wordpress-domain-suffix">.wordpress.com</span> |
|
|
</ValidationFieldset> |
|
|
); |
|
|
}; |
|
|
|
|
|
buttonText = () => { |
|
|
if ( this.props.step && 'completed' === this.props.step.status ) { |
|
|
return this.props.translate( 'Site created - Go to next step' ); |
|
|
} |
|
|
|
|
|
if ( this.state.submitting ) { |
|
|
return this.props.translate( 'Creating your site…' ); |
|
|
} |
|
|
|
|
|
return this.props.translate( 'Create My Site' ); |
|
|
}; |
|
|
|
|
|
formFooter = () => { |
|
|
return <FormButton>{ this.buttonText() }</FormButton>; |
|
|
}; |
|
|
|
|
|
renderSiteForm = () => { |
|
|
return ( |
|
|
<LoggedOutForm onSubmit={ this.handleSubmit } noValidate> |
|
|
{ this.formFields() } |
|
|
|
|
|
<LoggedOutFormFooter>{ this.formFooter() }</LoggedOutFormFooter> |
|
|
</LoggedOutForm> |
|
|
); |
|
|
}; |
|
|
|
|
|
render() { |
|
|
return ( |
|
|
<StepWrapper |
|
|
flowName={ this.props.flowName } |
|
|
stepName={ this.props.stepName } |
|
|
positionInFlow={ this.props.positionInFlow } |
|
|
fallbackHeaderText={ this.props.translate( 'Create your site.' ) } |
|
|
stepContent={ this.renderSiteForm() } |
|
|
/> |
|
|
); |
|
|
} |
|
|
} |
|
|
|
|
|
export default connect( null, { saveSignupStep, submitSignupStep } )( localize( Site ) ); |
|
|
|