$(document).ready(function() { let index = 1; let activeSection = null; // Add option function function addOption(type, container) { let optionIndex = container.children().length + 1; let optionHtml; if (type === 'multiple-choice' || type === 'checkboxes') { optionHtml = `
×
`; } else if (type === 'dropdown') { optionHtml = `
×
`; } container.append(optionHtml); } //Form section function function createFormSection() { let newSection = `
${index === 1 ? '
' : ''}
`; $('#form-container').append(newSection); index++; positionAddSectionButton(); } function positionAddSectionButton() { if (activeSection) { let position = activeSection.position(); let buttonWidth = $('#add-section-btn').outerWidth(); let buttonHeight = $('#add-section-btn').outerHeight(); $('#add-section-btn').css({ position: 'absolute', left: position.left - buttonWidth - 47 + 'px', top: position.top + activeSection.height() / 2 - buttonHeight / 2 + 'px' }); } } //Event handler is triggered // creates a new form section;sets it as active;respositions the add section button $('#add-section-btn').on('click', function() { createFormSection(); $('.form-section').removeClass('active'); activeSection = $('.form-section').last(); activeSection.addClass('active'); positionAddSectionButton(); }); // It updates the options container based on the selected type, adding the necessary input fields or buttons. $(document).on('change', '.custom-select', function() { let type = $(this).val(); let container = $(this).closest('.form-section').find('.options-container'); container.empty(); $(this).closest('.form-section').find('.add-option-btn').remove(); if (type === 'short-answer') { container.append(''); } else if (type === 'paragraph') { container.append(''); } else { addOption(type, container); $(this).closest('.form-section').append(''); } }); // add option event handler // adds a new option to the options container and updates the option numbers $(document).on('click', '.add-option-btn', function() { let type = $(this).closest('.form-section').find('.custom-select').val(); let container = $(this).closest('.form-section').find('.options-container'); addOption(type, container); }); // removes the section;updates the active section;repositions add section button $(document).on('click', '.delete-section-icon', function() { let section = $(this).closest('.form-section'); let prevSection = section.prev('.form-section'); let nextSection = section.next('.form-section'); section.remove(); if (section.hasClass('active')) { activeSection = null; } if (prevSection.length > 0) { prevSection.find('.delete-section-icon').appendTo(prevSection.find('.form-section')); activeSection = prevSection;row } else if (nextSection.length > 0) { nextSection.find('.delete-section-icon').appendTo(nextSection.find('.form-header')); activeSection = nextSection; } positionAddSectionButton(); }); // delele option $(document).on('click', '.delete-option-icon', function() { let option = $(this).closest('.option'); let container = option.closest('.options-container'); option.remove(); }); // Event handler for required toggle button $(document).on('click', '.required-toggle', function() { $(this).closest('.form-section').toggleClass('required'); }); $(document).on('click', '.required-toggle', function() { $(this).closest('.form-section').toggleClass('required'); }); // Preview button functionality $('#preview-btn').on('click', function() { let previewWindow = window.open('', '_blank'); let previewContent = ` Form Preview

Untitled Form

`; $('.form-section').each(function() { previewContent += '
'; previewContent += '
'; previewContent += ''; previewContent += '
'; let type = $(this).find('.custom-select').val(); let optionsContainer = $(this).find('.options-container'); if (type === 'multiple-choice') { optionsContainer.find('.option').each(function() { previewContent += `
`; }); } else if (type === 'checkboxes') { optionsContainer.find('.option').each(function() { previewContent += `
`; }); } else if (type === 'short-answer') { previewContent += ''; } else if (type === 'paragraph') { previewContent += ''; } else if (type === 'dropdown') { let dropdownHtml = ''; previewContent += dropdownHtml; } previewContent += '
'; }); previewContent += `
`; previewWindow.document.write(previewContent); previewWindow.document.close(); }); // Activate the section;repositions add section button $(document).on('click', '.form-section', function() { $('.form-section').removeClass('active'); $(this).addClass('active'); activeSection = $(this); positionAddSectionButton(); }); $('#form-container').sortable({ placeholder: 'ui-state-highlight', start: function (event, ui) { ui.placeholder.height(ui.item.height()); }, stop: function (event, ui) { positionAddSectionButton(); } }); function collectFormData() { var formData = { questions:[] }; $('.form-section').each(function() { var questionData = { text : $(this).find('.untitled-question').val(), type : $(this).find('.custom-select').val(), required :$(this).find('.required-toggle').is(':checked'), options:[] }; $(this).find('.option-label').each(function() { questionData.options.push($(this).val()); }); formData.questions.push(questionData); }); console.log(formData); return formData; } $('#submit-btn').on('click', function() { let formData = collectFormData(); console.log(formData); $.ajax({ url: base_url + 'New_form_controller/submit_form', type: 'POST', data: {formData:formData}, dataType: 'JSON', success: function(response) { alert('Form submitted successfully!'); console.log(response); }, error: function(error) { alert('Error submitting form!'); console.log(error); } }); }); $('#form-container').disableSelection(); });