frontend.js
4.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
(function($) {
FLBuilderContactForm = function( settings )
{
this.settings = settings;
this.nodeClass = '.fl-node-' + settings.id;
this._init();
};
FLBuilderContactForm.prototype = {
settings : {},
nodeClass : '',
_init: function()
{
$( this.nodeClass + ' .fl-button' ).click( $.proxy( this._submit, this ) );
},
_submit: function( e )
{
var theForm = $(this.nodeClass + ' .fl-contact-form'),
submit = $(this.nodeClass + ' .fl-button'),
name = $(this.nodeClass + ' .fl-name input'),
email = $(this.nodeClass + ' .fl-email input'),
phone = $(this.nodeClass + ' .fl-phone input'),
subject = $(this.nodeClass + ' .fl-subject input'),
message = $(this.nodeClass + ' .fl-message textarea'),
ajaxurl = FLBuilderLayoutConfig.paths.wpAjaxUrl,
email_regex = /\S+@\S+\.\S+/,
isValid = true,
postId = theForm.closest( '.fl-builder-content' ).data( 'post-id' ),
templateId = theForm.data( 'template-id' ),
templateNodeId = theForm.data( 'template-node-id' ),
nodeId = theForm.closest( '.fl-module' ).data( 'node' );
e.preventDefault();
// End if button is disabled (sent already)
if (submit.hasClass('fl-disabled')) {
return;
}
// validate the name
if(name.length) {
if (name.val() === '') {
isValid = false;
name.parent().addClass('fl-error');
}
else if (name.parent().hasClass('fl-error')) {
name.parent().removeClass('fl-error');
}
}
// validate the email
if(email.length) {
if (email.val() === '' || !email_regex.test(email.val())) {
isValid = false;
email.parent().addClass('fl-error');
}
else if (email.parent().hasClass('fl-error')) {
email.parent().removeClass('fl-error');
}
}
// validate the subject..just make sure it's there
if(subject.length) {
if (subject.val() === '') {
isValid = false;
subject.parent().addClass('fl-error');
}
else if (subject.parent().hasClass('fl-error')) {
subject.parent().removeClass('fl-error');
}
}
// validate the phone..just make sure it's there
if(phone.length) {
if (phone.val() === '') {
isValid = false;
phone.parent().addClass('fl-error');
}
else if (phone.parent().hasClass('fl-error')) {
phone.parent().removeClass('fl-error');
}
}
// validate the message..just make sure it's there
if (message.val() === '') {
isValid = false;
message.parent().addClass('fl-error');
}
else if (message.parent().hasClass('fl-error')) {
message.parent().removeClass('fl-error');
}
// end if we're invalid, otherwise go on..
if (!isValid) {
return false;
}
else {
// disable send button
submit.addClass('fl-disabled');
// post the form data
$.post(ajaxurl, {
action : 'fl_builder_email',
name : name.val(),
subject : subject.val(),
email : email.val(),
phone : phone.val(),
message : message.val(),
post_id : postId,
template_id : templateId,
template_node_id : templateNodeId,
node_id : nodeId
}, $.proxy( this._submitComplete, this ) );
}
},
_submitComplete: function( response )
{
var urlField = $( this.nodeClass + ' .fl-success-url' ),
noMessage = $( this.nodeClass + ' .fl-success-none' );
// On success show the success message
if (response === '1') {
$( this.nodeClass + ' .fl-send-error' ).fadeOut();
if ( urlField.length > 0 ) {
window.location.href = urlField.val();
}
else if ( noMessage.length > 0 ) {
noMessage.fadeIn();
}
else {
$( this.nodeClass + ' .fl-contact-form' ).hide();
$( this.nodeClass + ' .fl-success-msg' ).fadeIn();
}
}
// On failure show fail message and re-enable the send button
else {
$(this.nodeClass + ' .fl-button').removeClass('fl-disabled');
$(this.nodeClass + ' .fl-send-error').fadeIn();
return false;
}
}
};
})(jQuery);