CodeIgniter_Gforms/assets/js/edit.js

182 lines
7.6 KiB
JavaScript
Raw Normal View History

2024-07-16 10:46:16 +00:00
$(document).ready(function() {
console.log('jQuery is ready');
let questionCount = 0;
$('#add-question').click(function() {
questionCount++;
2024-07-16 12:41:54 +00:00
2024-07-16 10:46:16 +00:00
// Clone the question template
var newQuestion = $('#question-template').clone();
newQuestion.removeAttr('id');
newQuestion.attr('data-question-type', 'multiple-choice'); // Set default question type
newQuestion.find('.question-box_header_question').attr('placeholder', 'Question ' + questionCount);
2024-07-16 12:41:54 +00:00
newQuestion.find('.question-type-image').attr('src', base_url + 'assets/images/circle.png');
newQuestion.find('.question-type-image').attr('alt', 'Circle for Multiple Choice');
// Clear question text and remove existing options
newQuestion.find('.question-box_header_question').val('');
newQuestion.find('.question-box_option-block').each(function(index) {
if (index === 0) {
// Keep the first option placeholder text, clear others
$(this).find('.question-box_option-block_option-text').val('').attr('placeholder', 'Option 1');
} else {
$(this).remove();
}
});
newQuestion.find('.question-box_option-block:first').next('br').remove();
newQuestion.find('#new-options').children('br').remove();
2024-07-16 10:46:16 +00:00
newQuestion.show(); // Ensure the cloned template is visible
2024-07-16 12:41:54 +00:00
2024-07-16 10:46:16 +00:00
// Append the cloned question to the form container
2024-07-16 12:41:54 +00:00
$('#questions-container').append(newQuestion);
2024-07-16 10:46:16 +00:00
});
2024-07-16 12:41:54 +00:00
//add new option
$(document).on('click', '.add-option', function() {
2024-07-16 10:46:16 +00:00
const questionBox = $(this).closest('.question-box');
const currentQuestionType = questionBox.attr('data-question-type');
let optionCount = questionBox.find('.question-box_option-block').length + 1;
2024-07-16 12:41:54 +00:00
var newOption = $('#option-template .question-box_option-block').clone();
2024-07-16 10:46:16 +00:00
newOption.find('input').val('');
newOption.find('input').attr('placeholder', 'Option ' + optionCount);
2024-07-16 12:41:54 +00:00
2024-07-16 10:46:16 +00:00
if (currentQuestionType === 'multiple-choice') {
2024-07-16 12:41:54 +00:00
newOption.find('.question-type-image').attr('src', base_url + 'assets/images/circle.png');
newOption.find('.question-type-image').attr('alt', 'Circle for Multiple Choice');
2024-07-16 10:46:16 +00:00
} else if (currentQuestionType === 'checkbox') {
2024-07-16 12:41:54 +00:00
newOption.find('.question-type-image').attr('src', base_url + 'assets/images/square.png');
newOption.find('.question-type-image').attr('alt', 'Square for Checkbox');
2024-07-16 10:46:16 +00:00
}
2024-07-23 03:03:15 +00:00
else if (currentQuestionType === 'dropdown') {
newOption.find('.question-type-image').attr('src', base_url + 'assets/images/down-arrow.png');
newOption.find('.question-type-image').attr('alt', 'down-arrow for dropdown');
}
2024-07-16 12:41:54 +00:00
// Check if the close button already exists before appending it
if (optionCount > 1 && newOption.find('.question-box_option-block_option-close').length === 0) {
newOption.append('<button class="question-box_option-block_option-close"><img src="' + base_url + 'assets/images/close.png" alt="close option"></button>');
}
// Append new option to the options container
questionBox.find('#new-options').append(newOption);
// Append <br> tag if it's not the last option
2024-07-16 10:46:16 +00:00
if (optionCount > 1) {
2024-07-16 12:41:54 +00:00
questionBox.find('#new-options').append('<br>');
2024-07-16 10:46:16 +00:00
}
2024-07-16 12:41:54 +00:00
});
// Remove an option from a question
$(document).on('click', '.question-box_option-block_option-close', function() {
$(this).closest('.question-box_option-block').next('br').remove();
$(this).closest('.question-box_option-block').remove();
});
2024-07-16 10:46:16 +00:00
2024-07-16 12:41:54 +00:00
// Delete a question
$(document).on('click', '.delete-question', function() {
$(this).closest('.question-box').next('br').remove();
$(this).closest('.question-box').remove();
2024-07-16 10:46:16 +00:00
});
2024-07-16 12:41:54 +00:00
// Duplicate a question
$(document).on('click', '.duplicate-question', function() {
const originalQuestion = $(this).closest('.question-box');
const duplicateQuestion = originalQuestion.clone();
duplicateQuestion.removeAttr('id');
duplicateQuestion.show();
originalQuestion.after(duplicateQuestion).after('<br>');
});
// Handle question type change
$(document).on('change', '.question-box_header_question-type_select', function() {
const selectedType = $(this).val();
const questionBox = $(this).closest('.question-box');
const images = questionBox.find('.question-type-image');
const optionsContainer = questionBox.find('.options-container');
const shortAnswerContainer = questionBox.find('.question-box_short-answer');
if (selectedType === 'multiple-choice') {
images.attr('src', base_url + 'assets/images/circle.png');
images.attr('alt', 'Circle for Multiple Choice');
optionsContainer.show();
shortAnswerContainer.hide();
} else if (selectedType === 'checkbox') {
images.attr('src', base_url + 'assets/images/square.png');
images.attr('alt', 'Square for Checkbox');
optionsContainer.show();
shortAnswerContainer.hide();
2024-07-23 03:03:15 +00:00
}
else if (selectedType === 'dropdown') {
images.attr('src', base_url + 'assets/images/down-arrow.png');
images.attr('alt', 'down-arrow for dropdown');
optionsContainer.show();
shortAnswerContainer.hide();
}
else if (selectedType === 'paragraph') {
2024-07-16 12:41:54 +00:00
images.attr('src', '');
images.attr('alt', '');
optionsContainer.hide();
shortAnswerContainer.show();
}
questionBox.attr('data-question-type', selectedType);
}).trigger('change');
$('#update-form').click(function() {
2024-07-16 19:20:43 +00:00
var form_id = $(this).data('form_id');
2024-07-16 12:41:54 +00:00
var formData = {
title: $('#form-title').val(),
description: $('#form-desc').val(),
questions: []
};
$('.question-box').each(function() {
var questionBox = $(this);
var questionData = {
question_text: questionBox.find('.question-box_header_question').val(),
question_type: questionBox.find('.question-box_header_question-type_select').val(),
2024-07-23 03:03:15 +00:00
required: questionBox.find('.required-checkbox').is(':checked') ? 1 : 0,
2024-07-16 12:41:54 +00:00
options: []
};
2024-07-16 10:46:16 +00:00
2024-07-16 12:41:54 +00:00
if (questionData.question_type !== 'paragraph') {
questionBox.find('.question-box_option-block').each(function() {
var optionData = {
option_text: $(this).find('.question-box_option-block_option-text').val()
};
questionData.options.push(optionData);
});
}
formData.questions.push(questionData);
});
2024-07-16 19:20:43 +00:00
console.log('Form Data:', formData);
var url = base_url + 'edit_form/' + form_id;
console.log('AJAX URL:', url);
2024-07-16 12:41:54 +00:00
$.ajax({
2024-07-16 19:20:43 +00:00
url: url,
2024-07-16 12:41:54 +00:00
type: 'POST',
data: { formData: JSON.stringify(formData) },
success: function(response) {
console.log('Form data updated successfully:', response);
window.location.href = base_url + 'my_drafts';
},
error: function(xhr, status, error) {
console.error('Error updating form data:', error);
2024-07-16 19:20:43 +00:00
console.log('XHR:', xhr);
console.log('Status:', status);
2024-07-16 12:41:54 +00:00
}
});
});
2024-07-16 19:20:43 +00:00
2024-07-16 10:46:16 +00:00
});