Files
think-greaterchiangmai/think-backend.greaterchiangmai.com/public/assets/js/custom/utilities/modals/bidding.js
2025-11-11 14:55:29 +07:00

265 lines
8.8 KiB
JavaScript

"use strict";
// Class definition
var KTModalBidding = function () {
// Shared variables
var element;
var form;
var modal;
// Private functions
const initForm = () => {
// Dynamically create validation non-empty rule
const requiredFields = form.querySelectorAll('.required');
var detectedField;
var validationFields = {
fields: {},
plugins: {
trigger: new FormValidation.plugins.Trigger(),
bootstrap: new FormValidation.plugins.Bootstrap5({
rowSelector: '.fv-row',
eleInvalidClass: '',
eleValidClass: ''
})
}
}
// Detect required fields
requiredFields.forEach(el => {
const input = el.closest('.fv-row').querySelector('input');
if (input) {
detectedField = input;
}
const textarea = el.closest('.fv-row').querySelector('textarea');
if (textarea) {
detectedField = textarea;
}
const select = el.closest('.fv-row').querySelector('select');
if (select) {
detectedField = select;
}
// Add validation rule
const name = detectedField.getAttribute('name');
validationFields.fields[name] = {
validators: {
notEmpty: {
message: el.innerText + ' is required'
}
}
}
});
// Init form validation rules. For more info check the FormValidation plugin's official documentation:https://formvalidation.io/
var validator = FormValidation.formValidation(
form,
validationFields
);
// Submit button handler
const submitButton = form.querySelector('[data-kt-modal-action-type="submit"]');
submitButton.addEventListener('click', function (e) {
// Prevent default button action
e.preventDefault();
// Validate form before submit
if (validator) {
validator.validate().then(function (status) {
console.log('validated!');
if (status == 'Valid') {
// Show loading indication
submitButton.setAttribute('data-kt-indicator', 'on');
// Disable button to avoid multiple click
submitButton.disabled = true;
// Simulate form submission. For more info check the plugin's official documentation: https://sweetalert2.github.io/
setTimeout(function () {
// Remove loading indication
submitButton.removeAttribute('data-kt-indicator');
// Enable button
submitButton.disabled = false;
// Show popup confirmation
Swal.fire({
text: "Form has been successfully submitted!",
icon: "success",
buttonsStyling: false,
confirmButtonText: "Ok, got it!",
customClass: {
confirmButton: "btn btn-primary"
}
}).then(function () {
//form.submit(); // Submit form
form.reset();
modal.hide();
});
}, 2000);
} else {
// Show popup error
Swal.fire({
text: "Oops! There are some error(s) detected.",
icon: "error",
buttonsStyling: false,
confirmButtonText: "Ok, got it!",
customClass: {
confirmButton: "btn btn-primary"
}
});
}
});
}
});
}
// Init Select2 template options
const initSelect2Templates = () => {
const elements = form.querySelectorAll('[data-kt-modal-bidding-type] select');
if (!elements) {
return;
}
// Format options
const format = (item) => {
if (!item.id) {
return item.text;
}
var url = 'assets/media/' + item.element.getAttribute('data-kt-bidding-modal-option-icon');
var img = $("<img>", {
class: "rounded-circle me-2",
width: 26,
src: url
});
var span = $("<span>", {
text: " " + item.text
});
span.prepend(img);
return span;
}
elements.forEach(el => {
// Init Select2 --- more info: https://select2.org/
$(el).select2({
minimumResultsForSearch: Infinity,
templateResult: function (item) {
return format(item);
}
});
});
}
// Handle bid options
const handleBidOptions = () => {
const options = form.querySelectorAll('[data-kt-modal-bidding="option"]');
const inputEl = form.querySelector('[name="bid_amount"]');
options.forEach(option => {
option.addEventListener('click', e => {
e.preventDefault();
inputEl.value = e.target.innerText;
});
});
}
// Handle currency selector
const handleCurrencySelector = () => {
const element = form.querySelector('.form-select[name="currency_type"]');
// Select2 event listener
$(element).on('select2:select', function (e) {
const value = e.params.data;
swapCurrency(value);
});
const swapCurrency = (target) => {
console.log(target);
const currencies = form.querySelectorAll('[data-kt-modal-bidding-type]');
currencies.forEach(currency => {
currency.classList.add('d-none');
if (currency.getAttribute('data-kt-modal-bidding-type') === target.id) {
currency.classList.remove('d-none');
}
});
}
}
// Handle cancel modal
const handleCancelAction = () => {
const cancelButton = element.querySelector('[data-kt-modal-action-type="cancel"]');
const closeButton = element.querySelector('[data-kt-modal-action-type="close"]');
cancelButton.addEventListener('click', e => {
cancelAction(e);
});
closeButton.addEventListener('click', e => {
cancelAction(e);
});
const cancelAction = (e) => {
e.preventDefault();
Swal.fire({
text: "Are you sure you would like to cancel?",
icon: "warning",
showCancelButton: true,
buttonsStyling: false,
confirmButtonText: "Yes, cancel it!",
cancelButtonText: "No, return",
customClass: {
confirmButton: "btn btn-primary",
cancelButton: "btn btn-active-light"
}
}).then(function (result) {
if (result.value) {
form.reset(); // Reset form
modal.hide(); // Hide modal
} else if (result.dismiss === 'cancel') {
Swal.fire({
text: "Your form has not been cancelled!.",
icon: "error",
buttonsStyling: false,
confirmButtonText: "Ok, got it!",
customClass: {
confirmButton: "btn btn-primary",
}
});
}
});
}
}
// Public methods
return {
init: function () {
// Elements
element = document.querySelector('#kt_modal_bidding');
form = document.getElementById('kt_modal_bidding_form');
modal = new bootstrap.Modal(element);
if (!form) {
return;
}
initForm();
initSelect2Templates();
handleBidOptions();
handleCurrencySelector();
handleCancelAction();
}
};
}();
// On document ready
KTUtil.onDOMContentLoaded(function () {
KTModalBidding.init();
});