mapi-settings.js
150 lines
| 1 | ( function ( $ ) { |
| 2 | /** |
| 3 | * Print Google AdSense account alerts after connecting to the API or after removing an alert. |
| 4 | * |
| 5 | * @param {Object} alerts - The alerts to print. |
| 6 | */ |
| 7 | function printAlerts( alerts ) { |
| 8 | const $div = $( '#mapi-account-alerts' ); |
| 9 | $div.empty(); |
| 10 | if ( alerts.length ) { |
| 11 | $div.append( $( '<h3 />' ).html( AdsenseMAPI.alertsHeadingMsg ) ); |
| 12 | for ( const id in alerts.alerts ) { |
| 13 | const $alertBox = $( |
| 14 | '<div class="card advads-notice-block advads-error"/>' |
| 15 | ); |
| 16 | const $dismissButton = $( |
| 17 | ' <button type="button" class="mapi-dismiss-alert notice-dismiss" data-id="' + |
| 18 | alerts.alerts[ id ].id + |
| 19 | '"><span class="screen-reader-text">' + |
| 20 | AdsenseMAPI.alertsDismissMsg + |
| 21 | '</span></button>' |
| 22 | ); |
| 23 | let msg = alerts.alerts[ id ].message; |
| 24 | if ( |
| 25 | typeof AdsenseMAPI.alertsMsg[ alerts.alerts[ id ].id ] !== |
| 26 | 'undefined' |
| 27 | ) { |
| 28 | msg = AdsenseMAPI.alertsMsg[ alerts.alerts[ id ].id ]; |
| 29 | } |
| 30 | $alertBox.append( $dismissButton ); |
| 31 | $alertBox.append( msg ); |
| 32 | $div.append( $alertBox ); |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | $( document ).on( 'click', '.preventDefault', function ( ev ) { |
| 38 | ev.preventDefault(); |
| 39 | } ); |
| 40 | |
| 41 | $( document ).on( |
| 42 | 'keypress', |
| 43 | '#adsense input[type="text"]', |
| 44 | function ( ev ) { |
| 45 | if ( $( this ).hasClass( 'preventDefault' ) ) { |
| 46 | ev.preventDefault(); |
| 47 | return; |
| 48 | } |
| 49 | if ( ev.which === 13 || ev.keyCode === 13 ) { |
| 50 | $( '#adsense .advads-settings-tab-main-form #submit' ).trigger( |
| 51 | 'click' |
| 52 | ); |
| 53 | } |
| 54 | } |
| 55 | ); |
| 56 | |
| 57 | $( document ).on( 'click', '#revoke-token', function () { |
| 58 | $( '#gadsense-freeze-all' ).css( 'display', 'block' ); |
| 59 | const ID = $( '#adsense-id' ).val(); |
| 60 | $.ajax( { |
| 61 | url: ajaxurl, |
| 62 | type: 'post', |
| 63 | data: { |
| 64 | action: 'advads-mapi-revoke-token', |
| 65 | adsenseId: ID, |
| 66 | nonce: AdsenseMAPI.nonce, |
| 67 | }, |
| 68 | success() { |
| 69 | window.location.reload(); |
| 70 | }, |
| 71 | error() { |
| 72 | $( '#gadsense-freeze-all' ).css( 'display', 'none' ); |
| 73 | }, |
| 74 | } ); |
| 75 | } ); |
| 76 | |
| 77 | $( document ).on( 'click', '#adsense-manual-config', function () { |
| 78 | $( '#adsense .form-table tr' ).css( 'display', 'table-row' ); |
| 79 | $( '#adsense #auto-adsense-settings-div' ).css( 'display', 'none' ); |
| 80 | $( '#adsense #full-adsense-settings-div' ).css( 'display', 'block' ); |
| 81 | $( '#adsense-id' ).after( $( '#connect-adsense' ) ); |
| 82 | $( '#adsense #submit' ).parent().show(); |
| 83 | } ); |
| 84 | |
| 85 | // Open the code confirmation modal. |
| 86 | $( document ).on( 'click', '#connect-adsense', function () { |
| 87 | if ( $( this ).hasClass( 'disabled' ) ) { |
| 88 | return; |
| 89 | } |
| 90 | if ( 'undefined' !== typeof window.advadsMapiConnect ) { |
| 91 | window.advadsMapiConnect( 'open-google' ); |
| 92 | } |
| 93 | } ); |
| 94 | |
| 95 | $( document ).on( 'click', '.mapi-dismiss-alert', function ( ev ) { |
| 96 | ev.preventDefault(); |
| 97 | |
| 98 | const pubId = $( '#adsense-id' ).val(); |
| 99 | const alertId = $( this ).attr( 'data-id' ); |
| 100 | |
| 101 | $( '#gadsense-modal' ).css( 'display', 'block' ); |
| 102 | $( '#gadsense-modal-outer' ).css( 'display', 'none' ); |
| 103 | |
| 104 | $.ajax( { |
| 105 | url: ajaxurl, |
| 106 | type: 'post', |
| 107 | data: { |
| 108 | action: 'advads-mapi-dismiss-alert', |
| 109 | account: pubId, |
| 110 | id: alertId, |
| 111 | nonce: AdsenseMAPI.nonce, |
| 112 | }, |
| 113 | success( response ) { |
| 114 | if ( 'undefined' !== typeof response.alerts ) { |
| 115 | printAlerts( response ); |
| 116 | } |
| 117 | $( '#gadsense-modal' ).css( 'display', 'none' ); |
| 118 | $( '#gadsense-modal-outer' ).css( 'display', 'block' ); |
| 119 | }, |
| 120 | error() { |
| 121 | $( '#gadsense-modal' ).css( 'display', 'none' ); |
| 122 | $( '#gadsense-modal-outer' ).css( 'display', 'block' ); |
| 123 | }, |
| 124 | } ); |
| 125 | } ); |
| 126 | |
| 127 | $( document ).on( 'click', '.mapi-create-ads-txt', function ( ev ) { |
| 128 | ev.preventDefault(); |
| 129 | |
| 130 | const top = jQuery( '#advads-ads-txt-wrapper' ).offset().top; |
| 131 | window.scrollTo( 0, top ); |
| 132 | } ); |
| 133 | |
| 134 | $( document ).on( 'advadsMapiRefreshAlerts', function ( ev, response ) { |
| 135 | if ( |
| 136 | 'undefined' !== typeof response.status && |
| 137 | response.status && |
| 138 | response.alerts |
| 139 | ) { |
| 140 | printAlerts( response ); |
| 141 | } |
| 142 | } ); |
| 143 | |
| 144 | $( function () { |
| 145 | if ( $( '#adsense-id' ).val().trim() === '' ) { |
| 146 | $( '#adsense #submit' ).parent().css( 'display', 'none' ); |
| 147 | } |
| 148 | } ); |
| 149 | } )( window.jQuery ); |
| 150 |