File size: 4,413 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 |
import { Card } from '@automattic/components';
import { localize } from 'i18n-calypso';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { connect } from 'react-redux';
import LocaleSuggestions from 'calypso/components/locale-suggestions';
import { FLOW_TYPES } from 'calypso/jetpack-connect/flow-types';
import { recordTracksEvent } from 'calypso/state/analytics/actions';
import { isUserLoggedIn } from 'calypso/state/current-user/selectors';
import { checkUrl } from 'calypso/state/jetpack-connect/actions';
import { getJetpackSiteByUrl } from 'calypso/state/jetpack-connect/selectors';
import { isRequestingSites } from 'calypso/state/sites/selectors';
import jetpackConnection from './jetpack-connection';
import MainHeader from './main-header';
import MainWrapper from './main-wrapper';
import { persistSession } from './persistence-utils';
import SiteUrlInput from './site-url-input';
import { cleanUrl } from './utils';
export class JetpackConnectMain extends Component {
static propTypes = {
locale: PropTypes.string,
path: PropTypes.string,
type: PropTypes.oneOf( [ ...FLOW_TYPES, false ] ),
url: PropTypes.string,
processJpSite: PropTypes.func,
};
state = this.props.url
? {
currentUrl: cleanUrl( this.props.url ),
shownUrl: this.props.url,
waitingForSites: false,
}
: {
currentUrl: '',
shownUrl: '',
waitingForSites: false,
};
componentDidMount() {
if ( this.props.url ) {
this.checkUrl( cleanUrl( this.props.url ) );
}
let from = 'direct';
if ( this.props.type === 'install' ) {
from = 'jpdotcom';
}
this.props.recordTracksEvent( 'calypso_jpc_url_view', {
jpc_from: from,
cta_id: this.props.ctaId,
cta_from: this.props.ctaFrom,
} );
}
componentDidUpdate() {
const { processJpSite } = this.props;
const { currentUrl } = this.state;
processJpSite( currentUrl );
}
handleUrlChange = ( event ) => {
const url = event.target.value;
this.setState( {
currentUrl: cleanUrl( url ),
shownUrl: url,
} );
};
checkUrl( url ) {
return this.props.checkUrl( url, !! this.props.getJetpackSiteByUrl( url ) );
}
handleUrlSubmit = () => {
this.props.recordTracksEvent( 'calypso_jpc_url_submit', {
jetpack_url: this.state.currentUrl,
} );
// Track that connection was started by button-click, so we can auto-approve at auth step.
persistSession( this.state.currentUrl );
// Set state to show spinner only if we're installing.
// We don't want to show a spinner if user tries to connect a
// site that's already connected before fetching sites.
if ( this.props.isRequestingSites && this.isInstall() ) {
this.setState( { waitingForSites: true } );
} else {
this.checkUrl( this.state.currentUrl );
}
};
handleOnClickTos = () => this.props.recordTracksEvent( 'calypso_jpc_tos_link_click' );
isInstall() {
return FLOW_TYPES.includes( this.props.type );
}
renderSiteInput( status ) {
return (
<Card className="jetpack-connect__site-url-input-container">
{ this.props.renderNotices() }
<SiteUrlInput
url={ this.state.shownUrl }
onTosClick={ this.handleOnClickTos }
onChange={ this.handleUrlChange }
onSubmit={ this.handleUrlSubmit }
isError={ status }
isFetching={ this.props.isCurrentUrlFetching || this.state.waitingForSites }
isInstall={ this.isInstall() }
/>
</Card>
);
}
renderLocaleSuggestions() {
if ( this.props.isLoggedIn || ! this.props.locale ) {
return;
}
return <LocaleSuggestions path={ this.props.path } locale={ this.props.locale } />;
}
render() {
const { renderFooter, status, type, canGoBack, goBack } = this.props;
return (
<MainWrapper useCompactLogo compactBackButton={ canGoBack && goBack }>
{ this.renderLocaleSuggestions() }
<div className="jetpack-connect__site-url-entry-container">
<MainHeader type={ type } />
{ this.renderSiteInput( status ) }
{ renderFooter() }
</div>
</MainWrapper>
);
}
}
const connectComponent = connect(
( state ) => ( {
// eslint-disable-next-line wpcalypso/redux-no-bound-selectors
getJetpackSiteByUrl: ( url ) => getJetpackSiteByUrl( state, url ),
isLoggedIn: isUserLoggedIn( state ),
isRequestingSites: isRequestingSites( state ),
} ),
{ checkUrl, recordTracksEvent }
);
export default jetpackConnection( connectComponent( localize( JetpackConnectMain ) ) );
|