|
1 |
| -(function ( $, undefined ) { |
2 |
| - var $form = $( 'form.checkout, form#order_review' ); |
| 1 | +(function ($, undefined) { |
| 2 | + var $form = $('form.checkout, form#order_review'); |
3 | 3 |
|
4 |
| - function hideError(){ |
| 4 | + function hideError() { |
5 | 5 | $(".woocommerce-error").remove();
|
6 | 6 | }
|
7 | 7 |
|
8 |
| - function showError(message){ |
9 |
| - if(!message){ |
| 8 | + function showError(message) { |
| 9 | + if (!message) { |
10 | 10 | return;
|
11 | 11 | }
|
12 | 12 | $(".woocommerce-error, input.omise_token").remove();
|
13 |
| - |
| 13 | + |
14 | 14 | $ulError = $("<ul>").addClass("woocommerce-error");
|
15 |
| - |
16 |
| - if($.isArray(message)){ |
17 |
| - $.each(message, function(i,v){ |
| 15 | + |
| 16 | + if ($.isArray(message)) { |
| 17 | + $.each(message, function (i, v) { |
18 | 18 | $ulError.append($("<li>" + v + "</li>"));
|
19 | 19 | })
|
20 |
| - }else{ |
| 20 | + } else { |
21 | 21 | $ulError.html("<li>" + message + "</li>");
|
22 | 22 | }
|
23 |
| - |
24 |
| - $form.prepend( $ulError ); |
25 |
| - $("html, body").animate({ scrollTop:0 },"slow"); |
| 23 | + |
| 24 | + $form.prepend($ulError); |
| 25 | + $("html, body").animate({ scrollTop: 0 }, "slow"); |
26 | 26 | }
|
27 |
| - |
28 |
| - function omiseFormHandler(){ |
29 |
| - function validSelection(){ |
| 27 | + |
| 28 | + function omiseFormHandler() { |
| 29 | + function validSelection() { |
30 | 30 | $card_list = $("input[name='card_id']");
|
31 | 31 | $selected_card_id = $("input[name='card_id']:checked");
|
32 | 32 | // there is some existing cards but nothing selected then warning
|
33 |
| - if($card_list.length > 0 && $selected_card_id.length === 0){ |
| 33 | + if ($card_list.length > 0 && $selected_card_id.length === 0) { |
34 | 34 | return false;
|
35 | 35 | }
|
36 |
| - |
| 36 | + |
37 | 37 | return true;
|
38 | 38 | }
|
39 |
| - |
40 |
| - function getSelectedCardId(){ |
| 39 | + |
| 40 | + function getSelectedCardId() { |
41 | 41 | $selected_card_id = $("input[name='card_id']:checked");
|
42 |
| - if($selected_card_id.length > 0){ |
| 42 | + if ($selected_card_id.length > 0) { |
43 | 43 | return $selected_card_id.val();
|
44 | 44 | }
|
45 |
| - |
| 45 | + |
46 | 46 | return "";
|
47 | 47 | }
|
48 |
| - |
49 |
| - if ( $( '#payment_method_omise' ).is( ':checked' ) ) { |
50 |
| - if( !validSelection() ){ |
51 |
| - showError( omise_params.no_card_selected ); |
| 48 | + |
| 49 | + if ($('#payment_method_omise').is(':checked')) { |
| 50 | + if (!validSelection()) { |
| 51 | + showError(omise_params.no_card_selected); |
52 | 52 | return false;
|
53 | 53 | }
|
54 |
| - |
55 |
| - if( getSelectedCardId() !== "" ) |
56 |
| - { |
| 54 | + |
| 55 | + if (getSelectedCardId() !== "") { |
57 | 56 | //submit the form right away if the card_id is not blank
|
58 | 57 | return true;
|
59 | 58 | }
|
60 |
| - |
61 |
| - if ( 0 === $( 'input.omise_token' ).length ) { |
| 59 | + |
| 60 | + if (0 === $('input.omise_token').length) { |
62 | 61 | $form.block({
|
63 | 62 | message: null,
|
64 | 63 | overlayCSS: {
|
|
73 | 72 | omise_card_number_field = 'number',
|
74 | 73 | omise_card_state_field = 'state',
|
75 | 74 | omise_card_fields = {
|
76 |
| - 'name' : $( '#omise_card_name' ), |
77 |
| - 'number' : $( '#omise_card_number' ), |
78 |
| - 'expiration_month' : $( '#omise_card_expiration_month' ), |
79 |
| - 'expiration_year' : $( '#omise_card_expiration_year' ), |
80 |
| - 'security_code' : $( '#omise_card_security_code' ), |
81 |
| - 'city' : $( '#billing_city' ), |
82 |
| - 'state' : $( '#billing_state' ), |
83 |
| - 'country' : $( '#billing_country' ), |
84 |
| - 'postal_code' : $( '#billing_postcode' ), |
85 |
| - 'street1' : $( '#billing_address_1' ) |
| 75 | + 'name': $('#omise_card_name'), |
| 76 | + 'number': $('#omise_card_number'), |
| 77 | + 'expiration_month': $('#omise_card_expiration_month'), |
| 78 | + 'expiration_year': $('#omise_card_expiration_year'), |
| 79 | + 'security_code': $('#omise_card_security_code'), |
| 80 | + 'city': $('#billing_city'), |
| 81 | + 'state': $('#billing_state'), |
| 82 | + 'country': $('#billing_country'), |
| 83 | + 'postal_code': $('#billing_postcode'), |
| 84 | + 'street1': $('#billing_address_1') |
86 | 85 | };
|
87 | 86 |
|
88 |
| - $.each( omise_card_fields, function( index, field ) { |
| 87 | + $.each(omise_card_fields, function (index, field) { |
89 | 88 | if (index === omise_card_state_field) {
|
90 |
| - omise_card[ index ] = field.find(":selected").text(); |
| 89 | + omise_card[index] = field.find(":selected").text(); |
91 | 90 | } else {
|
92 |
| - omise_card[ index ] = (index === omise_card_number_field) ? field.val().replace(/\s/g, '') : field.val(); |
| 91 | + omise_card[index] = (index === omise_card_number_field) ? field.val().replace(/\s/g, '') : field.val(); |
93 | 92 | }
|
94 | 93 |
|
95 |
| - if ( "" === omise_card[ index ] ) { |
96 |
| - errors.push( omise_params[ 'required_card_' + index ] ); |
| 94 | + if ("" === omise_card[index]) { |
| 95 | + errors.push(omise_params['required_card_' + index]); |
97 | 96 | }
|
98 |
| - } ); |
| 97 | + }); |
99 | 98 |
|
100 |
| - if ( errors.length > 0 ) { |
| 99 | + if (errors.length > 0) { |
101 | 100 | showError(errors);
|
102 | 101 | $form.unblock();
|
103 | 102 | return false;
|
104 | 103 | }
|
105 | 104 |
|
106 | 105 | hideError();
|
107 | 106 |
|
108 |
| - if(Omise){ |
| 107 | + if (Omise) { |
109 | 108 | Omise.setPublicKey(omise_params.key);
|
110 | 109 | Omise.createToken("card", omise_card, function (statusCode, response) {
|
111 | 110 | if (statusCode == 200) {
|
112 |
| - $.each( omise_card_fields, function( index, field ) { |
| 111 | + $.each(omise_card_fields, function (index, field) { |
113 | 112 | const sensitiveDataIndex = ['name', 'number', 'expiration_year', 'expiration_month', 'security_code'];
|
114 | 113 | if (sensitiveDataIndex.includes(index)) {
|
115 |
| - field.val( '' ); |
| 114 | + field.val(''); |
116 | 115 | }
|
117 |
| - } ); |
118 |
| - $form.append( '<input type="hidden" class="omise_token" name="omise_token" value="' + response.id + '"/>' ); |
| 116 | + }); |
| 117 | + $form.append('<input type="hidden" class="omise_token" name="omise_token" value="' + response.id + '"/>'); |
119 | 118 | $form.submit();
|
120 | 119 | } else {
|
121 | 120 | handleTokensApiError(response);
|
122 | 121 | };
|
123 | 122 | });
|
124 | 123 | } else {
|
125 |
| - showError( omise_params.cannot_load_omisejs + '<br/>' + omise_params.check_internet_connection ); |
| 124 | + showError(omise_params.cannot_load_omisejs + '<br/>' + omise_params.check_internet_connection); |
126 | 125 | $form.unblock();
|
127 | 126 | }
|
128 |
| - |
| 127 | + |
129 | 128 | return false;
|
130 | 129 | }
|
131 |
| - |
| 130 | + |
132 | 131 | }
|
133 | 132 | }
|
134 | 133 |
|
|
163 | 162 | document.getElementById('googlepay-text').classList.add('googlepay-selected');
|
164 | 163 |
|
165 | 164 | const form = document.querySelector('form.checkout');
|
166 |
| - const input = document.createElement('input'); |
| 165 | + const input = document.createElement('input'); |
167 | 166 | input.setAttribute('type', 'hidden');
|
168 | 167 | input.setAttribute('class', 'omise_token');
|
169 | 168 | input.setAttribute('name', 'omise_token');
|
170 | 169 | input.setAttribute('value', response.id);
|
171 |
| - form.appendChild(input) ; |
| 170 | + form.appendChild(input); |
172 | 171 | }
|
173 | 172 | else {
|
174 | 173 | handleTokensApiError(response)
|
|
178 | 177 | }
|
179 | 178 |
|
180 | 179 | function handleTokensApiError(response) {
|
181 |
| - if ( response.object && 'error' === response.object && 'invalid_card' === response.code ) { |
182 |
| - showError( omise_params.invalid_card + "<br/>" + response.message ); |
183 |
| - } else if(response.message){ |
184 |
| - showError( omise_params.cannot_create_token + "<br/>" + response.message ); |
185 |
| - }else if(response.responseJSON && response.responseJSON.message){ |
186 |
| - showError( omise_params.cannot_create_token + "<br/>" + response.responseJSON.message ); |
187 |
| - }else if(response.status==0){ |
188 |
| - showError( omise_params.cannot_create_token + "<br/>" + omise_params.cannot_connect_api + omise_params.retry_checkout ); |
189 |
| - }else { |
190 |
| - showError( omise_params.cannot_create_token + "<br/>" + omise_params.retry_checkout ); |
| 180 | + if (response.object && 'error' === response.object && 'invalid_card' === response.code) { |
| 181 | + showError(omise_params.invalid_card + "<br/>" + response.message); |
| 182 | + } else if (response.message) { |
| 183 | + showError(omise_params.cannot_create_token + "<br/>" + response.message); |
| 184 | + } else if (response.responseJSON && response.responseJSON.message) { |
| 185 | + showError(omise_params.cannot_create_token + "<br/>" + response.responseJSON.message); |
| 186 | + } else if (response.status == 0) { |
| 187 | + showError(omise_params.cannot_create_token + "<br/>" + omise_params.cannot_connect_api + omise_params.retry_checkout); |
| 188 | + } else { |
| 189 | + showError(omise_params.cannot_create_token + "<br/>" + omise_params.retry_checkout); |
191 | 190 | }
|
192 | 191 | $form.unblock();
|
193 | 192 | }
|
194 |
| - |
195 |
| - $(function(){ |
196 |
| - $( 'body' ).on( 'checkout_error', function () { |
197 |
| - $( '.omise_token' ).remove(); |
| 193 | + |
| 194 | + $(function () { |
| 195 | + $('body').on('checkout_error', function () { |
| 196 | + $('.omise_token').remove(); |
198 | 197 | });
|
199 |
| - |
200 |
| - $( 'form.checkout' ).unbind('checkout_place_order_omise'); |
201 |
| - $( 'form.checkout' ).on( 'checkout_place_order_omise', function () { |
| 198 | + |
| 199 | + $('form.checkout').unbind('checkout_place_order_omise'); |
| 200 | + $('form.checkout').on('checkout_place_order_omise', function () { |
202 | 201 | return omiseFormHandler();
|
203 | 202 | });
|
204 |
| - |
| 203 | + |
205 | 204 | /* Pay Page Form */
|
206 |
| - $( 'form#order_review' ).on( 'submit', function () { |
| 205 | + $('form#order_review').on('submit', function () { |
207 | 206 | return omiseFormHandler();
|
208 | 207 | });
|
209 |
| - |
| 208 | + |
210 | 209 | /* Both Forms */
|
211 |
| - $( 'form.checkout, form#order_review' ).on( 'change', '#omise_cc_form input', function() { |
212 |
| - $( '.omise_token' ).remove(); |
| 210 | + $('form.checkout, form#order_review').on('change', '#omise_cc_form input', function () { |
| 211 | + $('.omise_token').remove(); |
213 | 212 | });
|
214 | 213 |
|
215 | 214 | googlePay();
|
|
0 commit comments