2014-09-09 18:24:27 -07:00
|
|
|
(function() {
|
|
|
|
var donationForm = document.getElementById('donation-form');
|
2014-12-23 20:22:15 -08:00
|
|
|
|
|
|
|
function field(name) {
|
|
|
|
return donationForm.querySelector(
|
|
|
|
'input[name=donation\\[' + name + '\\]]');
|
|
|
|
}
|
2014-09-09 18:24:27 -07:00
|
|
|
|
|
|
|
var checkout = StripeCheckout.configure({
|
2014-09-09 19:06:38 -07:00
|
|
|
key: donationForm.getAttribute('data-checkout-publishable-key'),
|
2014-09-09 18:41:58 -07:00
|
|
|
image: donationForm.getAttribute('data-checkout-image'),
|
2014-09-09 18:24:27 -07:00
|
|
|
token: function(token) {
|
2014-12-23 20:22:15 -08:00
|
|
|
field('stripe_token').value = token.id;
|
|
|
|
field('stripe_token_type').value = token.type;
|
|
|
|
field('donor_email').value = token.email;
|
2014-09-09 18:24:27 -07:00
|
|
|
donationForm.submit();
|
2014-12-23 20:22:15 -08:00
|
|
|
},
|
|
|
|
bitcoin: true
|
2014-09-09 18:24:27 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
donationForm.addEventListener('submit', function(e) {
|
2014-12-23 20:22:15 -08:00
|
|
|
if (!field('stripe_token').value) {
|
2014-09-09 18:24:27 -07:00
|
|
|
e.preventDefault();
|
|
|
|
|
2017-01-05 15:47:12 -08:00
|
|
|
var amountChoice =
|
|
|
|
donationForm.querySelector('input[name=amount]:checked');
|
|
|
|
if (amountChoice.value === "custom") {
|
|
|
|
amountChoice = document.getElementById('amount-custom-value');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start parsing at the first digit in the string, to trim leading dollar
|
|
|
|
// signs and what have you.
|
2018-01-20 17:55:21 -08:00
|
|
|
var amountNumberString = (amountChoice.value.match(/[0-9].*/) || [""])[0];
|
2017-01-05 15:47:12 -08:00
|
|
|
var amount = Math.floor(parseFloat(amountNumberString) * 100);
|
2014-09-09 18:24:27 -07:00
|
|
|
|
|
|
|
if (!isNaN(amount)) {
|
2017-01-05 15:47:12 -08:00
|
|
|
field('amount').value = amountNumberString;
|
2014-09-09 18:24:27 -07:00
|
|
|
checkout.open({
|
|
|
|
name: 'Dress to Impress',
|
|
|
|
description: 'Donation (thank you!)',
|
2017-01-05 15:47:12 -08:00
|
|
|
amount: amount,
|
|
|
|
panelLabel: "Donate"
|
2014-09-09 18:24:27 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2015-09-26 13:17:36 -07:00
|
|
|
|
|
|
|
var toggle = document.getElementById('success-thanks-toggle-description');
|
2017-01-05 15:47:12 -08:00
|
|
|
if (toggle) {
|
|
|
|
toggle.addEventListener('click', function() {
|
|
|
|
var desc = document.getElementById('description');
|
|
|
|
var attr = 'data-show';
|
|
|
|
if (desc.hasAttribute(attr)) {
|
|
|
|
desc.removeAttribute(attr);
|
|
|
|
} else {
|
|
|
|
desc.setAttribute(attr, true);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
document.getElementById('amount-custom').addEventListener('change', function(e) {
|
|
|
|
if (e.target.checked) {
|
|
|
|
document.getElementById('amount-custom-value').focus();
|
2015-09-26 13:17:36 -07:00
|
|
|
}
|
|
|
|
});
|
2014-09-09 18:24:27 -07:00
|
|
|
})();
|