2016-07-12 11:11:11 -07:00
jq = jQuery . noConflict ( ) ;
jq ( document ) . ready ( function ( jq ) {
jq ( 'form#recaptcha' ) . on ( 'submit' , function ( event ) {
2016-07-11 14:56:40 -07:00
event . stopImmediatePropagation ( ) ;
event . stopPropagation ( ) ;
2016-07-12 11:11:11 -07:00
jq . post ( jq ( this ) . attr ( 'action' ) , jq ( this ) . serialize ( ) , function ( response ) {
2016-07-11 14:56:40 -07:00
data = JSON . parse ( response ) ;
if ( false === data . valid ) {
data . message . every ( function ( d ) {
UIkit . notify ( '<i class="uk-icon-medium uk-icon-frown-o uk-icon-justify"></i> ' + d , {
pos : 'bottom-center' ,
status : 'danger'
} ) ;
2016-07-12 11:11:11 -07:00
} ) ;
2016-07-11 14:56:40 -07:00
} else if ( true === data . valid ) {
2016-07-12 11:11:11 -07:00
var divRoot = jq ( '<div />' ) ,
h1 = jq ( '<h1 />' ) ,
href = jq ( '<a />' ) ,
phone = jq ( '.hidden-phone' ) ;
2016-07-11 14:56:40 -07:00
href
. attr ( 'href' , 'tel:' + data . message . phone )
. text ( data . message . phone ) ;
h1 . append ( href ) ;
phone . attr ( 'href' , 'tel:' + data . message . phone ) ;
phone . text ( data . message . phone ) ;
divRoot . append ( h1 ) ;
2016-07-12 11:11:11 -07:00
jq ( '#recaptcha-wrapper' ) . replaceWith ( divRoot ) ;
2016-07-11 14:56:40 -07:00
}
} ) ;
2016-07-13 14:29:34 -07:00
} ) ; // Phone form
jq ( 'form[name=contact]' ) . on ( 'submit' , function ( event ) {
jq . post ( jq ( this ) . attr ( 'action' ) , jq ( this ) . serialize ( ) , function ( response ) {
if ( response . status !== 'success' ) {
jq ( '#' + response . id ) . addClass ( 'uk-form-danger' ) ;
UIkit . notify ( '<i class="uk-icon uk-icon-frown-o uk-icon-justify uk-margin-right"></i>' + response . message + ' (' + response . code + ')</div>' , {
pos : 'top-center' ,
status : 'danger'
} ) ;
console . log ( response ) ;
} else {
console . log ( response ) ;
UIkit . notify ( '<i class="uk-icon uk-icon-check uk-icon-justify uk-margin-right"></i> ' + response . message , {
pos : 'top-center' ,
status : 'success'
} ) ;
var $wrapper = jq ( '#contact-form' ) ,
$button = jq ( '<button class="uk-modal-close uk-button uk-button-massive uk-button-primary uk-align-center" type="button">Close</button>' ) ,
$thankYouText = jq ( '<p class="uk-text-lead uk-text-center">Thank you for your message.</p><p class="uk-text-center">I will get back to you as soon as possible.</p>' ) ;
$wrapper . empty ( ) . append ( $thankYouText ) . append ( $button ) ;
jq ( 'a[href="#contact-form-wrapper"]' ) . replaceWith ( 'eric@ericwheeler.net' ) ;
}
} ) ;
} ) ;
jq ( 'form[name=contact] input, form[name=contact] textarea' ) . on ( 'focus' , function ( ) {
if ( jq ( this ) . hasClass ( 'uk-form-danger' ) ) {
jq ( this ) . removeClass ( 'uk-form-danger' ) ;
}
2016-07-11 14:56:40 -07:00
} ) ;
} ) ;