HEX
Server: nginx/1.24.0
System: Linux DGT-WORDPRESS-VM-SERVER 6.14.0-1014-azure #14~24.04.1-Ubuntu SMP Fri Oct 3 20:52:11 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 8.4.12
Disabled: NONE
Upload Files
File: /mnt/data/dreamsrent-wp-demo/wp-content/plugins/dreamsrent-booking/admin/js/script.js
/*
Author       : Dreamguys
Template Name: Dreams Rent - Bootstrap Template
Version      : 1.0
*/

(function($) {
	"use strict";
	
	var $slimScrolls = $('.slimscroll');
	var $wrapper = $('.main-wrapper');
	

	// Sticky Header
	$(window).scroll(function(){
		var sticky = $('.header'),
			scroll = $(window).scrollTop();
		if (scroll >= 50) sticky.addClass('fixed');
		else sticky.removeClass('fixed');
	  });
	  

	 
	// Sidebar
	
	if($(window).width() <= 991) {
		var Sidemenu = function() {
			this.$menuItem = $('.main-nav a');
		};

		function init() {
			var $this = Sidemenu;
			$('.main-nav a').on('click', function(e) {
				if($(this).parent().hasClass('has-submenu')) {
					e.preventDefault();
				}
				if(!$(this).hasClass('submenu')) {
					$('ul', $(this).parents('ul:first')).slideUp(350);
					$('a', $(this).parents('ul:first')).removeClass('submenu');
					$(this).next('ul').slideDown(350);
					$(this).addClass('submenu');
				} else if($(this).hasClass('submenu')) {
					$(this).removeClass('submenu');
					$(this).next('ul').slideUp(350);
				}
			});
		}

	// Sidebar Initiate
	
	init();
	}

	


	// Mobile menu sidebar overlay
	
	$('body').append('<div class="sidebar-overlay"></div>');
	$(document).on('click', '#mobile_btn', function() {
		$('main-wrapper').toggleClass('slide-nav');
		$('.sidebar-overlay').toggleClass('opened');
		$('html').addClass('menu-opened');
		$('html .main-menu-wrapper .collapse').addClass('show');
		return false;
	});	
	
	$(document).on('click', '.sidebar-overlay', function() {
		$('html').removeClass('menu-opened');
		$(this).removeClass('opened');
		$('main-wrapper').removeClass('slide-nav');
		$('html .main-menu-wrapper .collapse').removeClass('show');
	});
	
	$(document).on('click', '#menu_close', function() {
		$('html').removeClass('menu-opened');
		$('.sidebar-overlay').removeClass('opened');
		$('main-wrapper').removeClass('slide-nav');
		$('html .main-menu-wrapper .collapse').removeClass('show');
	});

	// Select 2
	
	if ($('.select').length > 0) {
		$('.select').select2({
			minimumResultsForSearch: -1,
			width: '100%'
		});
	}
	
	if ($('.category-select').length > 0) {
		$(".category-select").select2({
			placeholder: "Choose Category",
			allowClear: false
		});
	}
	
	if ($('.loc-select').length > 0) {
		$(".loc-select").select2({
			placeholder: "Choose Location",
			allowClear: false
		});
	}
	
	if ($('.region select').length > 0) {
		$(".region select").select2({
			placeholder: "Region",
			allowClear: false
		});
	}
		
	// Fade in Scroll 
	
	if($('.main-wrapper .aos').length>0){
		AOS.init({
			duration:1200,
			once:true
		});
	}
	
	// Datepicker	

	if($('.datetimepicker').length > 0 ){
		$('.datetimepicker').datetimepicker({
			format: 'YYYY-MM-DD',
			icons: {
				up: "fas fa-angle-up",
				down: "fas fa-angle-down",
				next: 'fas fa-angle-right',
				previous: 'fas fa-angle-left'
			},
			minDate:new Date()

		});
	}
	$(function () {
		$('#datetimepicker1').datetimepicker();
	});
	if ($('.dsrent_datetimepicker').length > 0) {
		$('.dsrent_datetimepicker').datetimepicker({
			
			showClose:true,
			
			format: 'YYYY-MM-DD',
			 // Use the desired format for both date and time
			icons: {
				up: "fas fa-angle-up",
				down: "fas fa-angle-down",
				next: 'fas fa-angle-right',
				previous: 'fas fa-angle-left'
			},
			
		});
		
	}
	
	

/*** Booking Form Functions****/
    jQuery(document).ready(function ($) {

		var hourFormat = window.hourFormat;
        var timeFormat = (hourFormat === '12') ? 'hh:mm A' : 'HH:mm';
        var minuteStepping = (hourFormat === '12') ? 10 : 60;

		/**Start Date */
        // Initialize date picker
        $('#startdatePicker').datetimepicker({
            format: 'YYYY-MM-DD',

        });

        // Initialize time picker
        $('#starttimePicker').datetimepicker({
            format: timeFormat,
			
        });

        // Combine date and time and set the result to the output input
        $('#startdatePicker, #starttimePicker').on('dp.change', function () {
            var datestart = $('#startdatePicker').val();
            var timestart = $('#starttimePicker').val();
            var combinedDateTime_start = datestart + ' ' + timestart;
            $('#outputDateTime_start').val(combinedDateTime_start);
        });

		/**End Date */
        $('#enddatePicker').datetimepicker({
            format: 'YYYY-MM-DD',
        });

        // Initialize time picker
        $('#endtimePicker').datetimepicker({
            format: timeFormat,
        });

        // Combine date and time and set the result to the output input
        $('#enddatePicker, #endtimePicker').on('dp.change', function () {
            var dateend = $('#enddatePicker').val();
            var timeend = $('#endtimePicker').val();
            var combinedDateTime_end = dateend + ' ' + timeend;
            $('#outputDateTime_end').val(combinedDateTime_end);
        });
		
    });

/*** Booking Form Functions****/

	
var hourFormat = window.hourFormat;
var timeFormat = (hourFormat === '12') ? 'hh:mm A' : 'HH:mm';
var minuteStepping = (hourFormat === '12') ? 10 : 60;
	

	if($('.dsrent_timepicker').length > 0 ){
		$('.dsrent_timepicker').datetimepicker({
			format: timeFormat,
			stepping: minuteStepping,
			icons: {
				up: "fas fa-angle-up",
				down: "fas fa-angle-down",
				next: 'fas fa-angle-right',
				previous: 'fas fa-angle-left'
			}
		});
	}
 

	// Timepicker

	if($('.timepicker').length > 0) {
		$('.timepicker').datetimepicker({
			format: timeFormat,
			stepping: minuteStepping,
			
			icons: {
				up: "fa fa-angle-up",
				down: "fa fa-angle-down",
				next: 'fa fa-angle-right',
				previous: 'fa fa-angle-left'
			}
		});
	}

	
	// Scroll Down
	
	$('.price-down').on('click', function() {
		$('html, body').animate({ scrollTop: $("#price").offset().top - 85}, 150); 
	});
	
	//Stick Sidebar
	
	if ($(window).width() > 767) {
		if($('.theiaStickySidebar').length > 0) {
			$('.theiaStickySidebar').theiaStickySidebar({
			  // Settings
			  additionalMarginTop: 30
			});
		}
	}
	

	
	//Show Filter
	
	$(".btn.filterbtn").on('click', function() {
		  $(".showfilter").toggleClass("filter-open");
	});		
	
	// Password Eye

	$('.toggle-password').on('click', function() {
		$(this).toggleClass("feather-eye");
		var input = $(".pass-input");
		if (input.attr("type") === "password") {
			input.attr("type", "text");
		} else {
			input.attr("type", "password");
		}
	});	

		$('.toggle-password-two').on('click', function() {
		$(this).toggleClass("feather-eye");
		var input = $(".pass-input-two");
		if (input.attr("type") === "password") {
			input.attr("type", "text");
		} else {
			input.attr("type", "password");
		}
	});	
	
	// Most Popular Cartypes Slider

	if($('.popular-cartype-slider').length > 0) {
		$('.popular-cartype-slider').owlCarousel({
			loop:true,
			margin:24,
			nav:true,
			dots: false,
			autoplay:true,
			smartSpeed: 2000,
			navText : ["<i class='fa-solid fa-arrow-left'></i>","<i class='fa-solid fa-arrow-right'></i>"],
			responsive:{
				0:{
					items:1
				},
				
				550:{
					items:1
				},
				700:{
					items:3
				},
				1000:{
					items:4
				},
				1200:{
					items:5
				}
			}
		})
	}

	// Recommended Car Rental Deals
	
	if($('.rental-deal-slider').length > 0) {
		$('.rental-deal-slider').owlCarousel({
			loop:true,
			margin:24,
			nav:true,
			dots: false,
			autoplay:true,
			smartSpeed: 2000,
			navText : ["<i class='fa-solid fa-arrow-left'></i>","<i class='fa-solid fa-arrow-right'></i>"],
			responsive:{
				0:{
					items:1
				},
				
				550:{
					items:1
				},
				700:{
					items:2
				},
				1000:{
					items:3
				}
			}
		})
	}

	//What People Say Slider
	
	if($('.about-testimonials').length > 0) {
		$('.about-testimonials').owlCarousel({
			loop:true,
			margin:24,
			nav:false,
			dots: true,
			// autoplay:true,
			// smartSpeed: 2000,
			navText : ["<i class='fa-solid fa-angle-left'></i>","<i class='fa-solid fa-angle-right'></i>"],
			responsive:{
				0:{
					items:1
				},
				
				550:{
					items:1
				},
				700:{
					items:2
				},
				1000:{
					items:2
				}
			}
		})
	}

	// Slick Testimonial Two



	if($('.car-details-slider').length > 0 ){
		$('.car-details-slider').owlCarousel({
			items:4,
			margin:24,
			nav:true,
			dots:false,
			rtl: false,
			navText : ["<i class='fa-solid fa-arrow-left'></i>","<i class='fa-solid fa-arrow-right'></i>"],
			responsiveClass:true,
			responsive:{
				0:{
					items:1
				},
				768:{
					items:2
				},
				1170:{
					items:3,
					loop:true
				},
				1200:{
					items:3,
					loop:true
				}
			}
		});	
	}

	// Select Favourite
	
	$('.fav-icon').on('click', function() {
		$(this).toggleClass('selected');
	});

	// JQuery counterUp

	if($('.customer-count .counterUp').length > 0) {
		$('.customer-count .counterUp, h4 span').counterUp({
            delay: 15,
            time: 1500
        });
	}
	
	

		// Chat

		var chatAppTarget = $('.chat-window');
		(function () {
			if ($(window).width() > 991)
				chatAppTarget.removeClass('chat-slide');
	
			$(document).on("click", ".chat-window .chat-users-list a.open-chat", function () {
				if ($(window).width() <= 991) {
					chatAppTarget.addClass('chat-slide');
				}
				return false;
			});
			$(document).on("click", "#back_user_list", function () {
				if ($(window).width() <= 991) {
					chatAppTarget.removeClass('chat-slide');
				}
				return false;
			});
		})();

		

		// wishlist function
		jQuery(document).ready(function ($) {
			$('.wishlist-button').on('click', function () {
				var button = jQuery(this);
				var productId = button.data('product-id');
 		
				var isWishlistAdded = button.text().trim() === 'Remove Wishlist';
		
				jQuery.ajax({
					type: 'POST',
					url: ajax_object.ajax_url,
					data: {
						action: 'dreams_toggle_wishlist_callback',
						product_id: productId,
						is_wishlist_added: isWishlistAdded,
					},

					success: function (response) {
						if (response) {
							button.text(isWishlistAdded ? 'Add to Wishlist' : 'Remove Wishlist');
							location.reload();
 						} else {
 							 
						}
					},
				});
			});
		});
		

	 
			$('#confirm_password').keyup(function() {
				var password = $('#password').val();
				var confirm_password = $(this).val();
		
				if (password !== confirm_password) {
					$('#password_match_error').text('Passwords do not match.');
				} else {
					$('#password_match_error').text('');
				}
			});
	 
		

			 // Datatable

			 if ($('.datatable').length > 0) {
				$('.datatable').DataTable({
					retrieve: true,
					lengthMenu: [[10, 25, 50, -1], [10, 25, 50, "All"]],
					language: {
						search: ' ',
						searchPlaceholder: "Search",
						info:  "Showing _START_ - _END_ of _TOTAL_ entries",
						"lengthMenu": "_MENU_",
						paginate: {
						  next: '<i class="feather-arrow-right"></i>',
						  previous: '<i class="feather-arrow-left"></i>'  
						}
					},
					"bLengthChange": true,
					"bInfo": false,
					"ordering": false,
					initComplete: (settings, json)=>{
						$('.dataTables_info').appendTo('#tableinfo');
						$('.dataTables_paginate').appendTo('#tablepage');
						$('.dataTables_length').appendTo('#tablelength');
						$('.dataTables_filter').appendTo('#tablefilter');
					},
				});
			} 
	
		
// function openChatModal(postAuthorId, postOrderId, currentUser) {
//     document.getElementById('postAuthorIdInput').value = postAuthorId;
//     document.getElementById('postOrderIdInput').value = postOrderId;
//     document.getElementById('currentUserInput').value = currentUser;

//     jQuery('#chatModal').modal('show');

// }

//     function storeChatMessage() {
//         var message = $('#messageInput').val();

//         var postAuthorId = $('#postAuthorIdInput').val();
//         var postOrderId = $('#postOrderIdInput').val();
//         var currentUser = $('#currentUserInput').val();

//         console.log('Post Author ID:', postAuthorId);
//         console.log('Order ID:', postOrderId);
//         console.log('Current User ID:', currentUser);

//         $.ajax({
//             url: '<?php echo admin_url("admin-ajax.php"); ?>',
//             type: 'POST',
//             data: {
//                 action: 'dreams_save_chat_message',
//                 message: message,
//                 post_author_id: postAuthorId,
//                 post_order_id: postOrderId,
//                 user_id: currentUser,
//                 // security: '<?php echo wp_create_nonce('dreams_save_chat_message_nonce'); ?>'
//             },
//             success: function(response) {
//                 console.log(response);
//                 $('#chatModal').modal('hide');
//             }
//         });
//     }


		
})(jQuery);