| import page from '@automattic/calypso-router'; |
| 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 LoggedOutFormLinkItem from 'calypso/components/logged-out-form/link-item'; |
| import LoggedOutFormLinks from 'calypso/components/logged-out-form/links'; |
| import searchSites from 'calypso/components/search-sites'; |
| import { urlToSlug } from 'calypso/lib/url'; |
| import { recordTracksEvent } from 'calypso/state/analytics/actions'; |
| import { checkUrl, dismissUrl } from 'calypso/state/jetpack-connect/actions'; |
| import { getConnectingSite, getJetpackSiteByUrl } from 'calypso/state/jetpack-connect/selectors'; |
| import getSites from 'calypso/state/selectors/get-sites'; |
| import { isRequestingSites } from 'calypso/state/sites/selectors'; |
| import { ALREADY_CONNECTED } from './connection-notice-types'; |
| import { IS_DOT_COM_GET_SEARCH } from './constants'; |
| import { FLOW_TYPES } from './flow-types'; |
| import HelpButton from './help-button'; |
| import jetpackConnection from './jetpack-connection'; |
| import MainHeader from './main-header'; |
| import MainWrapper from './main-wrapper'; |
| import { persistSession, retrieveMobileRedirect } from './persistence-utils'; |
| import SiteUrlInput from './site-url-input'; |
| import { cleanUrl } from './utils'; |
|
|
| export class SearchPurchase extends Component { |
| static propTypes = { |
| 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, |
| candidateSites: this.props.searchSites( this.props.url ), |
| } |
| : { |
| currentUrl: '', |
| shownUrl: '', |
| waitingForSites: false, |
| candidateSites: [], |
| }; |
|
|
| getCandidateSites( url ) { |
| this.props.searchSites( url ); |
| let candidateSites = []; |
|
|
| if ( this.props.sitesFound ) { |
| candidateSites = this.props.sitesFound.map( ( site ) => ( { |
| label: site.URL, |
| category: this.props.translate( 'Choose site' ), |
| } ) ); |
| } |
|
|
| this.setState( { candidateSites } ); |
| } |
|
|
| componentDidMount() { |
| if ( this.props.url ) { |
| this.checkUrl( cleanUrl( this.props.url ) ); |
| } |
|
|
| this.props.recordTracksEvent( 'calypso_jpc_url_view', { |
| jpc_from: 'jp_lp', |
| cta_id: this.props.ctaId, |
| cta_from: this.props.ctaFrom, |
| } ); |
| } |
|
|
| componentDidUpdate() { |
| const { status, processJpSite } = this.props; |
| const { currentUrl } = this.state; |
| const product = this.getProduct(); |
|
|
| if ( status === IS_DOT_COM_GET_SEARCH ) { |
| page.redirect( '/checkout/' + urlToSlug( this.state.currentUrl ) + '/' + product ); |
| } |
|
|
| if ( status === ALREADY_CONNECTED ) { |
| page.redirect( '/checkout/' + urlToSlug( this.state.currentUrl ) + '/' + product ); |
| } |
|
|
| processJpSite( currentUrl ); |
| } |
|
|
| handleUrlChange = ( url ) => { |
| this.setState( { |
| currentUrl: cleanUrl( url ), |
| shownUrl: url, |
| } ); |
|
|
| this.getCandidateSites( 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, |
| } ); |
| |
| persistSession( this.state.currentUrl ); |
|
|
| if ( this.props.isRequestingSites ) { |
| this.setState( { waitingForSites: true } ); |
| } else { |
| this.checkUrl( this.state.currentUrl ); |
| } |
| }; |
|
|
| handleOnClickTos = () => this.props.recordTracksEvent( 'calypso_jpc_tos_link_click' ); |
|
|
| renderFooter() { |
| const { translate } = this.props; |
| return ( |
| <LoggedOutFormLinks> |
| <LoggedOutFormLinkItem href="https://jetpack.com/support/installing-jetpack/"> |
| { translate( 'Install Jetpack manually' ) } |
| </LoggedOutFormLinkItem> |
| <HelpButton /> |
| </LoggedOutFormLinks> |
| ); |
| } |
|
|
| getProduct() { |
| const type = window.location.pathname.includes( 'monthly' ) && 'monthly'; |
| let product = ''; |
|
|
| if ( window.location.pathname.includes( 'jetpack_search' ) ) { |
| product = type ? 'jetpack_search_monthly' : 'jetpack_search'; |
| } |
|
|
| if ( window.location.pathname.includes( 'wpcom_search' ) ) { |
| product = type ? 'wpcom_search_monthly' : 'wpcom_search'; |
| } |
|
|
| return product; |
| } |
|
|
| renderSiteInput( status ) { |
| const product = this.getProduct(); |
| const isSearch = [ |
| 'jetpack_search', |
| 'wpcom_search', |
| 'jetpack_search_monthly', |
| 'wpcom_search_monthly', |
| ].includes( product ); |
|
|
| 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 |
| isSearch={ isSearch } |
| candidateSites={ this.state.candidateSites } |
| /> |
| </Card> |
| ); |
| } |
|
|
| render() { |
| const { renderFooter, status } = this.props; |
|
|
| return ( |
| <MainWrapper> |
| <div className="jetpack-connect__site-url-entry-container"> |
| <MainHeader type="jetpack_search" /> |
| |
| { this.renderSiteInput( status ) } |
| { renderFooter() } |
| </div> |
| </MainWrapper> |
| ); |
| } |
| } |
|
|
| const connectComponent = connect( |
| ( state ) => { |
| |
| |
| const mobileAppRedirect = retrieveMobileRedirect(); |
| const isMobileAppFlow = !! mobileAppRedirect; |
| const jetpackConnectSite = getConnectingSite( state ); |
| const siteData = jetpackConnectSite.data || {}; |
| const sites = getSites( state ); |
|
|
| const skipRemoteInstall = siteData.skipRemoteInstall; |
|
|
| return { |
| |
| getJetpackSiteByUrl: ( url ) => getJetpackSiteByUrl( state, url ), |
| isMobileAppFlow, |
| isRequestingSites: isRequestingSites( state ), |
| jetpackConnectSite, |
| mobileAppRedirect, |
| skipRemoteInstall, |
| siteHomeUrl: siteData.urlAfterRedirects || jetpackConnectSite.url, |
| sites, |
| }; |
| }, |
| { |
| checkUrl, |
| dismissUrl, |
| recordTracksEvent, |
| } |
| ); |
|
|
| export default jetpackConnection( connectComponent( searchSites( localize( SearchPurchase ) ) ) ); |
|
|