mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-10 03:26:38 -05:00
61 lines
1.9 KiB
JavaScript
61 lines
1.9 KiB
JavaScript
// contact form functionality
|
|
function contactFormInit() {
|
|
var $form = $('#contact-form'),
|
|
$input = $form.find(':input'),
|
|
$notify = $('#notification'),
|
|
contact = {},
|
|
submitting = false;
|
|
|
|
var getContactData = function() {
|
|
contact = {
|
|
name: $('#name').val(),
|
|
email: $('#email').val(),
|
|
message: $('#message').val(),
|
|
_token: $('#token').val()
|
|
};
|
|
};
|
|
|
|
$('#submit').on('click', function(e) {
|
|
e.preventDefault();
|
|
var $submit = $(this);
|
|
|
|
if (!submitting) {
|
|
submitting = true;
|
|
getContactData();
|
|
|
|
$.ajax({
|
|
type: 'POST',
|
|
url: '/contact-submit',
|
|
data: contact
|
|
}).always(function(response) {
|
|
$form.find('.error').removeClass('error');
|
|
$notify.removeClass('visible');
|
|
|
|
if (response === 'success') {
|
|
$input.attr('disabled', true);
|
|
$submit.addClass('disabled');
|
|
$notify.text('Thanks for your message!').addClass('success').addClass('visible');
|
|
} else {
|
|
var responseJSON = response.responseJSON,
|
|
errors = 0;
|
|
|
|
// add the error class to fields that haven't been filled out
|
|
for (var prop in responseJSON) {
|
|
if (responseJSON.hasOwnProperty(prop)) {
|
|
$('#' + prop).addClass('error');
|
|
errors++;
|
|
}
|
|
}
|
|
|
|
if (errors > 0) {
|
|
$notify.find('span').text(errors);
|
|
$notify.addClass('visible');
|
|
}
|
|
|
|
// re-enable submitting
|
|
submitting = false;
|
|
}
|
|
});
|
|
}
|
|
});
|
|
}
|