blocks
5 years ago
build
5 years ago
fonts
8 years ago
genericons
6 years ago
lib
5 years ago
social-logos
5 years ago
accessible-focus.js
5 years ago
class.jetpack-provision.php
6 years ago
connect-button.js
5 years ago
crowdsignal-shortcode.js
5 years ago
crowdsignal-survey.js
5 years ago
facebook-embed.js
5 years ago
footer.php
7 years ago
gallery-settings.js
5 years ago
genericons.php
11 years ago
header.php
7 years ago
idc-notice.js
5 years ago
jetpack-admin.js
5 years ago
jetpack-connection-banner.js
5 years ago
jetpack-deactivate-dialog.js
5 years ago
jetpack-jitm.js
5 years ago
jetpack-modules.js
5 years ago
jetpack-modules.models.js
6 years ago
jetpack-modules.views.js
5 years ago
jetpack-server-sandbox.php
6 years ago
jetpack-wizard-banner.js
5 years ago
jquery.jetpack-resize.js
5 years ago
polldaddy-shortcode.js
5 years ago
postmessage.js
8 years ago
social-logos.php
6 years ago
twitter-timeline.js
5 years ago
connect-button.js
172 lines
| 1 | /* global jpConnect */ |
| 2 | |
| 3 | jQuery( document ).ready( function ( $ ) { |
| 4 | var connectButton = $( '.jp-connect-button, .jp-banner__alt-connect-button' ).eq( 0 ); |
| 5 | var tosText = $( '.jp-connect-full__tos-blurb' ); |
| 6 | var jetpackConnectIframe = $( '<iframe class="jp-jetpack-connect__iframe" />' ); |
| 7 | var connectionHelpSections = $( |
| 8 | '#jetpack-connection-cards, .jp-connect-full__dismiss-paragraph, .jp-connect-full__testimonial' |
| 9 | ); |
| 10 | var connectButtonFrom = ''; |
| 11 | |
| 12 | connectButton.on( 'click', function ( event ) { |
| 13 | event.preventDefault(); |
| 14 | |
| 15 | if ( 'undefined' === typeof URLSearchParams ) { |
| 16 | connectButtonFrom = ''; |
| 17 | } else { |
| 18 | var searchParams = new URLSearchParams( $( this ).prop( 'search' ) ); |
| 19 | connectButtonFrom = searchParams && searchParams.get( 'from' ); |
| 20 | } |
| 21 | |
| 22 | if ( connectionHelpSections.length ) { |
| 23 | connectionHelpSections.fadeOut( 600 ); |
| 24 | } |
| 25 | |
| 26 | jetpackConnectButton.selectAndStartConnectionFlow(); |
| 27 | } ); |
| 28 | |
| 29 | var jetpackConnectButton = { |
| 30 | isRegistering: false, |
| 31 | isPaidPlan: false, |
| 32 | selectAndStartConnectionFlow: function () { |
| 33 | var connectionHelpSections = $( '#jetpack-connection-cards, .jp-connect-full__testimonial' ); |
| 34 | if ( connectionHelpSections.length ) { |
| 35 | connectionHelpSections.fadeOut( 600 ); |
| 36 | } |
| 37 | |
| 38 | if ( ! jetpackConnectButton.isRegistering ) { |
| 39 | if ( 'original' === jpConnect.forceVariation ) { |
| 40 | // Forcing original connection flow, `JETPACK_SHOULD_NOT_USE_CONNECTION_IFRAME = true` |
| 41 | // or we're dealing with Safari which has issues with handling 3rd party cookies. |
| 42 | jetpackConnectButton.handleOriginalFlow(); |
| 43 | } else { |
| 44 | // Default in-place connection flow. |
| 45 | jetpackConnectButton.handleConnectInPlaceFlow(); |
| 46 | } |
| 47 | } |
| 48 | }, |
| 49 | handleOriginalFlow: function () { |
| 50 | window.location = connectButton.attr( 'href' ); |
| 51 | }, |
| 52 | handleConnectInPlaceFlow: function () { |
| 53 | // Alternative connection buttons should redirect to the main one for the "connect in place" flow. |
| 54 | if ( connectButton.hasClass( 'jp-banner__alt-connect-button' ) ) { |
| 55 | window.location = jpConnect.connectInPlaceUrl; |
| 56 | return; |
| 57 | } |
| 58 | |
| 59 | jetpackConnectButton.isRegistering = true; |
| 60 | tosText.hide(); |
| 61 | connectButton.hide(); |
| 62 | jetpackConnectButton.triggerLoadingState(); |
| 63 | |
| 64 | var registerUrl = jpConnect.apiBaseUrl + '/connection/register'; |
| 65 | |
| 66 | // detect Calypso Env and add to API URL |
| 67 | if ( window.Initial_State && window.Initial_State.calypsoEnv ) { |
| 68 | registerUrl = |
| 69 | registerUrl + '?' + $.param( { calypso_env: window.Initial_State.calypsoEnv } ); |
| 70 | } |
| 71 | |
| 72 | $.ajax( { |
| 73 | url: registerUrl, |
| 74 | type: 'POST', |
| 75 | data: { |
| 76 | registration_nonce: jpConnect.registrationNonce, |
| 77 | _wpnonce: jpConnect.apiNonce, |
| 78 | }, |
| 79 | error: jetpackConnectButton.handleConnectionError, |
| 80 | success: jetpackConnectButton.handleConnectionSuccess, |
| 81 | } ); |
| 82 | }, |
| 83 | triggerLoadingState: function () { |
| 84 | var loadingText = $( '<span>' ) |
| 85 | .addClass( 'jp-connect-full__button-container-loading' ) |
| 86 | .text( jpConnect.buttonTextRegistering ) |
| 87 | .appendTo( '.jp-connect-full__button-container' ); |
| 88 | |
| 89 | var spinner = $( '<div>' ).addClass( 'jp-spinner' ); |
| 90 | var spinnerOuter = $( '<div>' ).addClass( 'jp-spinner__outer' ).appendTo( spinner ); |
| 91 | $( '<div>' ).addClass( 'jp-spinner__inner' ).appendTo( spinnerOuter ); |
| 92 | loadingText.after( spinner ); |
| 93 | }, |
| 94 | handleConnectionSuccess: function ( data ) { |
| 95 | jetpackConnectButton.fetchPlanType(); |
| 96 | window.addEventListener( 'message', jetpackConnectButton.receiveData ); |
| 97 | jetpackConnectIframe.attr( 'src', data.authorizeUrl + '&from=' + connectButtonFrom ); |
| 98 | jetpackConnectIframe.on( 'load', function () { |
| 99 | jetpackConnectIframe.show(); |
| 100 | $( '.jp-connect-full__button-container' ).hide(); |
| 101 | } ); |
| 102 | jetpackConnectIframe.hide(); |
| 103 | $( '.jp-connect-full__button-container' ).after( jetpackConnectIframe ); |
| 104 | |
| 105 | // At this point we are pretty sure if things work out that we will be loading the admin script |
| 106 | var link = document.createElement( 'link' ); |
| 107 | link.rel = 'preload'; |
| 108 | link.as = 'script'; |
| 109 | link.href = jpConnect.preFetchScript; |
| 110 | document.head.appendChild( link ); |
| 111 | }, |
| 112 | fetchPlanType: function () { |
| 113 | $.ajax( { |
| 114 | url: jpConnect.apiBaseUrl + '/site', |
| 115 | type: 'GET', |
| 116 | data: { |
| 117 | _wpnonce: jpConnect.apiSiteDataNonce, |
| 118 | }, |
| 119 | success: function ( data ) { |
| 120 | var siteData = JSON.parse( data.data ); |
| 121 | jetpackConnectButton.isPaidPlan = |
| 122 | siteData.options.is_pending_plan || ! siteData.plan.is_free; |
| 123 | }, |
| 124 | } ); |
| 125 | }, |
| 126 | receiveData: function ( event ) { |
| 127 | if ( |
| 128 | event.origin !== jpConnect.jetpackApiDomain || |
| 129 | event.source !== jetpackConnectIframe.get( 0 ).contentWindow |
| 130 | ) { |
| 131 | return; |
| 132 | } |
| 133 | |
| 134 | switch ( event.data ) { |
| 135 | case 'close': |
| 136 | window.removeEventListener( 'message', this.receiveData ); |
| 137 | jetpackConnectButton.handleAuthorizationComplete(); |
| 138 | break; |
| 139 | case 'wpcom_nocookie': |
| 140 | jetpackConnectIframe.hide(); |
| 141 | jetpackConnectButton.handleConnectionError(); |
| 142 | break; |
| 143 | } |
| 144 | }, |
| 145 | handleAuthorizationComplete: function () { |
| 146 | jetpackConnectButton.isRegistering = false; |
| 147 | |
| 148 | if ( jetpackConnectButton.isPaidPlan ) { |
| 149 | window.location.assign( jpConnect.dashboardUrl ); |
| 150 | // The Jetpack admin page has hashes in the URLs, so we need to reload the page after .assign() |
| 151 | window.location.reload( true ); |
| 152 | } else { |
| 153 | window.location.assign( jpConnect.plansPromptUrl ); |
| 154 | } |
| 155 | }, |
| 156 | handleConnectionError: function ( error ) { |
| 157 | jetpackConnectButton.isRegistering = false; |
| 158 | jetpackConnectButton.handleOriginalFlow(); |
| 159 | }, |
| 160 | }; |
| 161 | |
| 162 | // When we visit /wp-admin/admin.php?page=jetpack#/setup, immediately start the connection flow. |
| 163 | var hash = location.hash.replace( /#\//, '' ); |
| 164 | if ( 'setup' === hash ) { |
| 165 | if ( connectionHelpSections.length ) { |
| 166 | connectionHelpSections.hide(); |
| 167 | } |
| 168 | |
| 169 | jetpackConnectButton.selectAndStartConnectionFlow(); |
| 170 | } |
| 171 | } ); |
| 172 |