Changes for page Get in Touch About Your XWiki Project
Last modified by Alex Cotiugă on 2026/05/04 06:15
From version 13.130
edited by Alex Cotiugă
on 2026/05/02 08:37
on 2026/05/02 08:37
Change comment:
There is no comment for this version
To version 13.90
edited by Alex Cotiugă
on 2026/05/02 08:15
on 2026/05/02 08:15
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Objects (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,16 +14,3 @@ 1 -{{velocity wiki="false"}} 2 -#if ($xcontext.action == 'get') 3 - #set ($message = '') 4 - #set ($statusCode = 200) 5 - 6 - #set ($statusCode = 400) 7 - #set ($message = 'error') 8 - 9 - #set ($discard = $response.setStatus($statusCode)) 10 - #jsonResponse({'message': $message}) 11 -#end 12 -{{/velocity}} 13 - 14 14 {{velocity}} 15 15 #set ($discard = $xwiki.ssx.use('contact.WebHome')) 16 16 #set ($xobject = $doc.getObject('Agnease.Code.ContactForm.ContactFormClass')) ... ... @@ -18,7 +18,7 @@ 18 18 #set ($editing = true) 19 19 = Tell Us More About Your Project = 20 20 You do not need to have a full specification. A short description is enough to start the conversation. 21 -{{html clean="false"}} 8 +{{html clean="false" wiki="true"}} 22 22 <div class="row"> 23 23 <div class="xform col-xs-7"> 24 24 <form id="contactForm"> ... ... @@ -54,22 +54,6 @@ 54 54 ##<p>Your information will only be used to respond to this request. See the Privacy Policy for details.</p> 55 55 <input id="contactSubmit" type="submit" class="btn btn-primary" value="Send my request"> 56 56 </form> 57 - {{/html}} 58 - {{html clean="false" wiki="true"}} 59 - <div class="reviewNotifications"> 60 - <div class="hidden reviewNotificationSuccess"> 61 - 62 - {{success}}reviewNotification{{/success}} 63 - 64 - </div> 65 - <div class="hidden reviewNotificationError"> 66 - 67 - {{error}}reviewNotification{{/error}} 68 - 69 - </div> 70 - </div> 71 - {{/html}} 72 - {{html clean="false"}} 73 73 </div> 74 74 <div class="col-xs-5"> 75 75 <div class="widget"> ... ... @@ -91,6 +91,18 @@ 91 91 <li>If useful, we schedule a short call to discuss scope, timeline, and estimated effort.</li> 92 92 </ol> 93 93 </div> 65 + <div class="reviewNotifications"> 66 + <div class="hidden reviewNotificationSuccess"> 67 + 68 + {{success}}reviewNotification{{/success}} 69 + 70 + </div> 71 + <div class="hidden reviewNotificationError"> 72 + 73 + {{error}}reviewNotification{{/error}} 74 + 75 + </div> 76 + </div> 94 94 </div> 95 95 </div> 96 96 {{/html}}
- XWiki.JavaScriptExtension[0]
-
- code
-
... ... @@ -1,5 +1,5 @@ 1 1 require(['jquery'], function ($) { 2 - var serviceURL = new XWiki.Document('WebHome', 'content').getURL('get', ' outputSyntax=plain');2 + var serviceURL = new XWiki.Document('WebHome', 'content').getURL('get', 'xpage=plain'); 3 3 var form = $('#contactForm'); 4 4 var submitButton = $('#contactSubmit'); 5 5 ... ... @@ -6,13 +6,44 @@ 6 6 var successBox = $('.reviewNotificationSuccess'); 7 7 var errorBox = $('.reviewNotificationError'); 8 8 9 + var nameFieldName = 'Agnease.Code.ContactForm.ContactFormClass_0_name'; 10 + var emailFieldName = 'Agnease.Code.ContactForm.ContactFormClass_0_email'; 11 + 12 + function getFormData() { 13 + var data = {}; 14 + 15 + $.each(form.serializeArray(), function (_, field) { 16 + data[field.name] = field.value; 17 + }); 18 + console.log(data) 19 + 20 + return data; 21 + } 22 + 23 + function isValidEmail(value) { 24 + return /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(value); 25 + } 26 + 27 + function updateSubmitState() { 28 + var data = getFormData(); 29 + var name = $.trim(data[nameFieldName] || ''); 30 + var email = $.trim(data[emailFieldName] || ''); 31 + 32 + submitButton.prop('disabled', !(name.length > 0 && isValidEmail(email))); 33 + } 34 + 35 + form.on('input change keyup', 'input, textarea, select', updateSubmitState); 36 + updateSubmitState(); 37 + 9 9 form.on('submit', function (event) { 10 10 event.preventDefault(); 11 11 12 - var data = $.param(form.serializeArray()); 41 + var data = getFormData(); 42 + 43 + console.log(data) 13 13 14 14 submitButton.prop('disabled', true); 15 - 46 +/* 16 16 $.post({ 17 17 url: serviceURL, 18 18 data: data ... ... @@ -33,8 +33,7 @@ 33 33 if (successBox.is(':visible')) { 34 34 successBox.toggleClass('hidden'); 35 35 } 36 - }).always(function () { 37 37 submitButton.prop('disabled', false); 38 - }); 68 + });*/ 39 39 }); 40 40 });