blocks
7 years ago
build
7 years ago
fonts
8 years ago
genericons
10 years ago
images
11 years ago
img
11 years ago
jetpack-icons
11 years ago
lib
7 years ago
scss
11 years ago
social-logos
7 years ago
accessible-focus.js
8 years ago
class.jetpack-provision.php
7 years ago
facebook-embed.js
7 years ago
footer.php
7 years ago
gallery-settings.js
7 years ago
genericons.php
11 years ago
header.php
7 years ago
idc-notice.js
7 years ago
jetpack-admin.js
7 years ago
jetpack-connection-banner.js
7 years ago
jetpack-jitm.js
7 years ago
jetpack-modules.js
7 years ago
jetpack-modules.models.js
7 years ago
jetpack-modules.views.js
7 years ago
jetpack-server-sandbox.php
7 years ago
jetpack-strings.php
7 years ago
jquery.jetpack-resize.js
7 years ago
jquery.spin.js
8 years ago
postmessage.js
8 years ago
social-logos.php
9 years ago
spin.js
8 years ago
twitter-timeline.js
7 years ago
jetpack-jitm.js
230 lines
| 1 | jQuery( document ).ready( function( $ ) { |
| 2 | var templates = { |
| 3 | default: function( envelope ) { |
| 4 | var html = |
| 5 | '<div class="jitm-card jitm-banner ' + |
| 6 | ( envelope.CTA.message ? 'has-call-to-action' : '' ) + |
| 7 | ' is-upgrade-premium ' + |
| 8 | envelope.content.classes + |
| 9 | '" data-stats_url="' + |
| 10 | envelope.jitm_stats_url + |
| 11 | '">'; |
| 12 | html += '<div class="jitm-banner__icon-plan">' + envelope.content.icon + '</div>'; |
| 13 | html += '<div class="jitm-banner__content">'; |
| 14 | html += '<div class="jitm-banner__info">'; |
| 15 | html += '<div class="jitm-banner__title">' + envelope.content.message + '</div>'; |
| 16 | if ( envelope.content.description && envelope.content.description !== '' ) { |
| 17 | html += '<div class="jitm-banner__description">' + envelope.content.description; |
| 18 | if ( envelope.content.list.length > 0 ) { |
| 19 | html += '<ul class="banner__list">'; |
| 20 | for ( var i = 0; i < envelope.content.list.length; i++ ) { |
| 21 | var text = envelope.content.list[ i ].item; |
| 22 | |
| 23 | if ( envelope.content.list[ i ].url ) { |
| 24 | text = |
| 25 | '<a href="' + |
| 26 | envelope.content.list[ i ].url + |
| 27 | '" target="_blank" rel="noopener noreferrer" data-module="' + |
| 28 | envelope.feature_class + |
| 29 | '" data-jptracks-name="nudge_item_click" data-jptracks-prop="jitm-' + |
| 30 | envelope.id + |
| 31 | '">' + |
| 32 | text + |
| 33 | '</a>'; |
| 34 | } |
| 35 | |
| 36 | html += |
| 37 | '<li>' + |
| 38 | '<svg class="gridicon gridicons-checkmark" height="16" width="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g>' + |
| 39 | '<path d="M9 19.414l-6.707-6.707 1.414-1.414L9 16.586 20.293 5.293l1.414 1.414" /></g></svg>' + |
| 40 | text + |
| 41 | '</li>'; |
| 42 | } |
| 43 | } |
| 44 | html += '</div>'; |
| 45 | } |
| 46 | html += '</div>'; |
| 47 | if ( envelope.activate_module ) { |
| 48 | html += '<div class="jitm-banner__action" id="jitm-banner__activate">'; |
| 49 | html += |
| 50 | '<a href="#" data-module="' + |
| 51 | envelope.activate_module + |
| 52 | '" type="button" class="jitm-button is-compact is-primary jptracks" data-jptracks-name="nudge_click" data-jptracks-prop="jitm-' + |
| 53 | envelope.id + |
| 54 | '-activate_module">' + |
| 55 | window.jitm_config.activate_module_text + |
| 56 | '</a>'; |
| 57 | html += '</div>'; |
| 58 | } |
| 59 | if ( envelope.CTA.message ) { |
| 60 | var ctaClasses = 'jitm-button is-compact jptracks'; |
| 61 | if ( envelope.CTA.primary && null === envelope.activate_module ) { |
| 62 | ctaClasses += ' is-primary'; |
| 63 | } |
| 64 | |
| 65 | html += '<div class="jitm-banner__action">'; |
| 66 | html += |
| 67 | '<a href="' + |
| 68 | envelope.url + |
| 69 | '" target="' + |
| 70 | ( envelope.CTA.newWindow === false ? '_self' : '_blank' ) + |
| 71 | '" rel="noopener noreferrer" title="' + |
| 72 | envelope.CTA.message + |
| 73 | '" data-module="' + |
| 74 | envelope.feature_class + |
| 75 | '" type="button" class="' + |
| 76 | ctaClasses + |
| 77 | '" data-jptracks-name="nudge_click" data-jptracks-prop="jitm-' + |
| 78 | envelope.id + |
| 79 | '">' + |
| 80 | envelope.CTA.message + |
| 81 | '</a>'; |
| 82 | html += '</div>'; |
| 83 | } |
| 84 | html += |
| 85 | '<a href="#" data-module="' + |
| 86 | envelope.feature_class + |
| 87 | '" class="jitm-banner__dismiss"></a>'; |
| 88 | html += '</div>'; |
| 89 | html += '</div>'; |
| 90 | |
| 91 | return $( html ); |
| 92 | }, |
| 93 | }; |
| 94 | |
| 95 | var setJITMContent = function( $el, response, redirect ) { |
| 96 | var template; |
| 97 | |
| 98 | var render = function( $my_template ) { |
| 99 | return function( e ) { |
| 100 | e.preventDefault(); |
| 101 | |
| 102 | $my_template.hide(); |
| 103 | |
| 104 | $.ajax( { |
| 105 | url: window.jitm_config.api_root + 'jetpack/v4/jitm', |
| 106 | method: 'POST', // using DELETE without permalinks is broken in default nginx configuration |
| 107 | data: { |
| 108 | id: response.id, |
| 109 | feature_class: response.feature_class, |
| 110 | }, |
| 111 | } ); |
| 112 | }; |
| 113 | }; |
| 114 | |
| 115 | template = response.template; |
| 116 | |
| 117 | // if we don't have a template for this version, just use the default template |
| 118 | if ( ! template || ! templates[ template ] ) { |
| 119 | template = 'default'; |
| 120 | } |
| 121 | |
| 122 | response.url = response.url + '&redirect=' + redirect; |
| 123 | |
| 124 | var $template = templates[ template ]( response ); |
| 125 | $template.find( '.jitm-banner__dismiss' ).click( render( $template ) ); |
| 126 | |
| 127 | if ( $( '#jp-admin-notices' ).length > 0 ) { |
| 128 | // Add to Jetpack notices within the Jetpack settings app. |
| 129 | $el.innerHTML = $template; |
| 130 | |
| 131 | // If we already have a message, replace it. |
| 132 | if ( $( '#jp-admin-notices' ).find( '.jitm-card' ) ) { |
| 133 | $( '.jitm-card' ).replaceWith( $template ); |
| 134 | } |
| 135 | |
| 136 | // No existing JITM? Add ours to the top of the Jetpack admin notices. |
| 137 | $template.prependTo( $( '#jp-admin-notices' ) ); |
| 138 | } else { |
| 139 | // Replace placeholder div on other pages. |
| 140 | $el.replaceWith( $template ); |
| 141 | } |
| 142 | |
| 143 | // Handle Module activation button if it exists. |
| 144 | $template.find( '#jitm-banner__activate a' ).click( function() { |
| 145 | var $activate_button = $( this ); |
| 146 | |
| 147 | // Do not allow any requests if the button is disabled. |
| 148 | if ( $activate_button.attr( 'disabled' ) ) { |
| 149 | return false; |
| 150 | } |
| 151 | |
| 152 | // Make request to activate module. |
| 153 | $.ajax( { |
| 154 | url: |
| 155 | window.jitm_config.api_root + |
| 156 | 'jetpack/v4/module/' + |
| 157 | $activate_button.data( 'module' ) + |
| 158 | '/active', |
| 159 | method: 'POST', |
| 160 | beforeSend: function( xhr ) { |
| 161 | xhr.setRequestHeader( 'X-WP-Nonce', $el.data( 'nonce' ) ); |
| 162 | |
| 163 | // Change the button status to disabled as the change is in progress. |
| 164 | $( '#jitm-banner__activate a' ).text( window.jitm_config.activating_module_text ); |
| 165 | $( '#jitm-banner__activate a' ).attr( 'disabled', true ); |
| 166 | }, |
| 167 | } ).done( function() { |
| 168 | $( '#jitm-banner__activate a' ).text( window.jitm_config.activated_module_text ); |
| 169 | $( '#jitm-banner__activate a' ).attr( 'disabled', true ); |
| 170 | |
| 171 | // Hide the JITM after 2 seconds. |
| 172 | setTimeout( function() { |
| 173 | $template.fadeOut( 'slow' ); |
| 174 | }, 2000 ); |
| 175 | } ); |
| 176 | } ); |
| 177 | }; |
| 178 | |
| 179 | var reFetch = function() { |
| 180 | $( '.jetpack-jitm-message' ).each( function() { |
| 181 | var $el = $( this ); |
| 182 | |
| 183 | var message_path = $el.data( 'message-path' ); |
| 184 | var query = $el.data( 'query' ); |
| 185 | var redirect = $el.data( 'redirect' ); |
| 186 | var hash = location.hash; |
| 187 | |
| 188 | hash = hash.replace( /#\//, '_' ); |
| 189 | if ( '_dashboard' !== hash ) { |
| 190 | message_path = message_path.replace( |
| 191 | 'toplevel_page_jetpack', |
| 192 | 'toplevel_page_jetpack' + hash |
| 193 | ); |
| 194 | } |
| 195 | |
| 196 | $.get( window.jitm_config.api_root + 'jetpack/v4/jitm', { |
| 197 | message_path: message_path, |
| 198 | query: query, |
| 199 | _wpnonce: $el.data( 'nonce' ), |
| 200 | } ).then( function( response ) { |
| 201 | if ( 'object' === typeof response && response[ '1' ] ) { |
| 202 | response = [ response[ '1' ] ]; |
| 203 | } |
| 204 | |
| 205 | // properly handle the case of an empty array or no content set |
| 206 | if ( 0 === response.length || ! response[ 0 ].content ) { |
| 207 | return; |
| 208 | } |
| 209 | |
| 210 | // for now, always take the first response |
| 211 | setJITMContent( $el, response[ 0 ], redirect ); |
| 212 | } ); |
| 213 | } ); |
| 214 | }; |
| 215 | |
| 216 | reFetch(); |
| 217 | |
| 218 | $( window ).bind( 'hashchange', function( e ) { |
| 219 | var newURL = e.originalEvent.newURL; |
| 220 | |
| 221 | if ( newURL.indexOf( 'jetpack#/' ) >= 0 ) { |
| 222 | var jitm_card = document.querySelector( '.jitm-card' ); |
| 223 | if ( jitm_card ) { |
| 224 | jitm_card.remove(); |
| 225 | } |
| 226 | reFetch(); |
| 227 | } |
| 228 | } ); |
| 229 | } ); |
| 230 |