Last active
November 4, 2016 13:22
-
-
Save reindert-vetter/e22a1d67c05b648c06128aeec84c2a39 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* LICENSE: This source file is subject to the Creative Commons License. | |
* It is available through the world-wide-web at this URL: | |
* http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US | |
* | |
* If you want to add improvements, please create a fork in our GitHub: | |
* https://github.com/myparcelnl | |
* | |
* @author Reindert Vetter <[email protected]> | |
* @copyright 2010-2016 MyParcel | |
* @license http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US CC BY-NC-ND 3.0 NL | |
* @link https://github.com/myparcelnl/magento1 | |
* @since File available since Release 1.6.0 | |
*/ | |
if(window.mypa == null || window.mypa == undefined){ | |
window.mypa = {}; | |
} | |
if(window.mypa.observer == null || window.mypa.observer == undefined){ | |
window.mypa.observer = {}; | |
} | |
if(window.mypa.fn == null || window.mypa.fn == undefined){ | |
window.mypa.fn = {}; | |
} | |
window.mypa.settings = {}; | |
var iframeDataLoaded, iframeLoaded, myParcelToggleOptions; | |
(function () { | |
var observer, saveShippingMethodTimeout, resizeIframeWidth; | |
observer = parent.mypajQuery.extend({ | |
input: "#mypa-input", | |
onlyRecipient: "input:checkbox[name='mypa-only-recipient']", | |
signed: "input:checkbox[name='mypa-signed']", | |
magentoMethods: "input:radio[name='shipping_method']", | |
magentoMethodMyParcel: "input:radio[id^='s_method_myparcel']", | |
payment: "input[name='payment[method]']", | |
billingPostalCode: "input[name='billing[postcode]']", | |
billingStreet1: "input[name='billing[street][0]']", | |
billingStreet2: "input[name='billing[street][1]']", | |
billingCountry: "select[name='billing[country_id]']", | |
postalCode: "input[name='billing[postcode]']", | |
street1: "input[name='shipping[street][0]']", | |
street2: "input[name='shipping[street][1]']", | |
country: "select[name='shipping[country_id]']" | |
}, window.mypa.observer); | |
iframeDataLoaded = function () { | |
if (mypajQuery(observer.magentoMethodMyParcel).is(":checked") == false && mypajQuery("input:radio[name='shipping_method']").is(":checked") == true) { | |
if (myParcelToggleOptions) { | |
mypajQuery('#mypa-load').hide(); | |
} else { | |
if (mypajQuery('#mypa-input').val() != '') { | |
mypajQuery('#mypa-input').val(null).change(); | |
} | |
} | |
} else { | |
if(mypajQuery('#mypa-input').val() != '') { | |
if(typeof mypajQuery(observer.magentoMethodMyParcel)[0] !== 'undefined') { | |
mypajQuery(observer.magentoMethodMyParcel)[0].checked = true; | |
mypajQuery('#mypa-load').show(); | |
} | |
} | |
} | |
if (typeof window.mypa.fn.fnCheckout != 'undefined') { | |
window.mypa.fn.fnCheckout.saveShippingMethod(); | |
} | |
/** | |
* If method is MyParcel | |
*/ | |
mypajQuery('#mypa-load').on('change', function () { | |
if(mypajQuery('#mypa-input').val() != '' && !myParcelToggleOptions) { | |
mypajQuery(observer.magentoMethodMyParcel)[0].checked = true; | |
} | |
if (typeof window.mypa.fn.fnCheckout != 'undefined') { | |
/** saveShippingMethodTimeout because he should not execute this function eight times in 1/10 seconds */ | |
clearTimeout(saveShippingMethodTimeout); | |
saveShippingMethodTimeout = setTimeout(function () { | |
window.mypa.fn.fnCheckout.saveShippingMethod(); | |
}, 100); | |
setTimeout( | |
window.mypa.fn.fnCheckout.hideLoader | |
, 2000); | |
} | |
}); | |
/** | |
* If method not is MyParcel | |
*/ | |
mypajQuery(observer.magentoMethods).on('click', function () { | |
if (mypajQuery(observer.magentoMethodMyParcel).is(":checked") == false) { | |
if (myParcelToggleOptions) { | |
mypajQuery('#mypa-load').hide(); | |
} else { | |
if (mypajQuery('#mypa-input').val() != '') { | |
mypajQuery('#mypa-input').val(null).change(); | |
} | |
} | |
} else { | |
iframeLoaded(); | |
} | |
}); | |
}; | |
iframeLoaded = function () { | |
if (mypajQuery(observer.magentoMethodMyParcel).is(":checked") != false) { | |
mypajQuery('#mypa-load').show(); | |
resizeIframeWidth(); | |
setTimeout(function () { | |
resizeIframeWidth(); | |
}, 500); | |
setTimeout(function () { | |
resizeIframeWidth(); | |
}, 500); | |
} | |
}; | |
/** | |
* Resizes the given iFrame width so it fits its content | |
* @param e The iframe to resize | |
*/ | |
resizeIframeWidth = function () { | |
setTimeout(function () { | |
mypajQuery('#myparcel-iframe').height(10); | |
mypajQuery('#myparcel-iframe').height(mypajQuery('#myparcel-iframe').contents().height()); | |
}, 100); | |
} | |
})(); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment