/*Inline Slick Slider Js*/ $(document).ready(function() { setTimeout(() => { const citySelector = document.getElementById('citySelector'); const outletSelector = document.getElementById('outletSelector'); if (citySelector) { citySelector.value = ""; } if (outletSelector) { outletSelector.value = ""; outletSelector.innerHTML = ''; } }, 500); function mySlick(elems) { elems.each(function() { var current = $(this); let myOption = eval('({' + current.attr("data-option") + '})'); current.slick(myOption); }); } mySlick($("[data-slick]")); $('#search_pincode').on('keyup change', function() { var pincode = $(this).val(); if (pincode === '') { $('#errorpincode_text').html(''); $('#notService_imagepincode').hide(); } }); if (localStorage.getItem('orderType')) { var orderType = localStorage.getItem('orderType'); // Update the button text based on the orderType value if (orderType == 2) { $('#textlocationmodal').html(''); $('#textlocationmodal').html('Enter the pickup location'); } else { $('#textlocationmodal').html(''); $('#textlocationmodal').html('Enter the delivery location'); } } else { // Default text if orderType is not set $('#textlocationmodal').html(''); $('#textlocationmodal').html('Enter the delivery location'); } $('#locationfetchmodal').on('show.bs.modal', function() { // Check if orderType is stored in localStorage if (localStorage.getItem('orderType')) { var orderType = localStorage.getItem('orderType'); // Update the button text based on the orderType value if (orderType == 2) { $('#enterAddressButton').html(''); $('#enterAddressButton').html('Enter the pickup location'); $('#searchitem_locality_new').attr('placeholder', 'Enter the pickup location'); } else { $('#enterAddressButton').html(''); $('#enterAddressButton').html('Enter the delivery location'); $('#searchitem_locality_new').attr('placeholder', 'Enter the delivery location'); } } else { // Default text if orderType is not set $('#enterAddressButton').html(''); $('#enterAddressButton').html('Enter the delivery location'); $('#searchitem_locality_new').attr('placeholder', 'Enter the delivery location'); } }); $('#locationfetchoutletmodal').on('show.bs.modal', function() { // Check if orderType is stored in localStorage if (localStorage.getItem('orderType')) { var orderType = localStorage.getItem('orderType'); // Update the button text based on the orderType value if (orderType == 2) { $('#enterAddressButtontext').html('Enter the pickup location'); } else { $('#enterAddressButtontext').html('Enter the delivery location'); } } else { // Default text if orderType is not set $('#enterAddressButtontext').html('Enter the delivery location'); } }); $('#enteraddress').on('show.bs.modal', function() { // Check if orderType is stored in localStorage $('#locationfetchoutletmodal').modal('hide'); if (localStorage.getItem('orderType')) { var orderType = localStorage.getItem('orderType'); // Update the button text based on the orderType value if (orderType == 2) { $('#search_locality_new').attr('placeholder', 'Enter the pickup location'); } else { $('#search_locality_new').attr('placeholder', 'Enter the delivery location'); } } else { // Default text if orderType is not set $('#search_locality_new').attr('placeholder', 'Enter the delivery location'); } }); }); /* Banner Init slick slider + animation (3)*/ $(".banner-slide").slick({ dots: true, arrows: false, autoplay: true, autoplaySpeed: 1500, infinite: true, lazyLoad: "progressive", slidesToShow: 2, slidesToScroll: 1, speed: 1500, responsive: [{ breakpoint: 1024, settings: { slidesToShow: 2, slidesToScroll: 1, infinite: true, dots: true } }, { breakpoint: 600, settings: { slidesToShow: 2, slidesToScroll: 1, infinite: true, } }, { breakpoint: 480, settings: { slidesToShow: 1, slidesToScroll: 1, infinite: true, } } // You can unslick at a given breakpoint now by adding: // settings: "unslick" // instead of a settings object ] }); $(".bannerSlider").slick({ dots: true, arrows: false, infinite: true, autoplay: true, autoplaySpeed: 3000, lazyLoad: "ondemand", slidesToShow: 1, slidesToScroll: 1, speed: 500, pauseOnHover: true, fade: false, responsive: [{ breakpoint: 768, settings: { speed: 200, pauseOnHover: true, } }] }); /* $(".app-screen-slide").slick({ arrows: false, autoplay: true, dots: true, fade: true }); */ $(".storiessection").slick({ dots: false, arrows: true, infinite: true, autoplay: true, autoplaySpeed: 3000, lazyLoad: "ondemand", slidesToShow: 3, slidesToScroll: 1, speed: 500, pauseOnHover: true, fade: false, prevArrow: '', nextArrow: '', responsive: [ { breakpoint: 768, settings: { slidesToShow: 1, speed: 200, arrows: false, pauseOnHover: true, } } ] }); // Listen for the modal show event $(document).on('click', '.theo-banner-click', function() { var bannerId = String($(this).data('banner-id')) || 'Unknown ID'; if (typeof webengage_tag == "function") { webengage.track("Banner Clicked", { "Banner ID": bannerId }); } }); function changeOrderType(type) { localStorage.setItem('orderType', type); document.getElementById('businessCards').innerHTML = ''; } document.addEventListener('DOMContentLoaded', function() { if (pId == 6424) { localStorage.setItem('orderType', 1); } }); var initialAddressCount = 2; var d = ""; var pincode_data = ""; $(document).ready(function(){ if(isMaps==1){ var inputElement = document.getElementById("search_locality"); if(inputElement){ inputElement.addEventListener("input", debounce(function() { var inputValue = inputElement.value; if (inputValue.length >= 2) { renderAutocomplete(); } },300)); } var inputElements_new = document.getElementById("search_locality_new"); if(inputElements_new){ inputElements_new.addEventListener("input", debounce(function() { var inputValue = inputElements_new.value; if (inputValue.length >= 2) { renderAutocomplete(); } },300)); } var inputElements_item = document.getElementById("searchitem_locality_new"); if(inputElements_item){ inputElements_item.addEventListener("input", debounce(function() { var inputValue = inputElements_item.value; if (inputValue.length >= 2) { renderAutocomplete(); } },300)); } } if(localStorage.getItem('userdata') && localStorage.getItem('userdata') != null && localStorage.getItem('userdata') != '' && typeof enable_address != 'undefined' && enable_address == 1){ $('#show_pincodelogin').hide(); var userData = JSON.parse(localStorage.getItem('userdata')); var contactMappingId = userData['contactMappingId']; var token = userData['token']; var url = origin + '/client/getDeliveryAddress/' + pId + '/' + contactMappingId + '/' + token $.ajax({ url: url, type: "GET", dataType: "json", success: function(result) { if (result['rows'] != null && result['rows'].length > 0 && result.status == 1) { var remainingRowCount = result['rows'].length - initialAddressCount; if(result['rows'].length == 1){ var resultLength= result['rows'].length; }else{ var resultLength= initialAddressCount; } for (var i = 0; i < resultLength; i++) { let addressType = 'Home'; if (result['rows'][i]['addressType'] == 1) { addressType = 'Home'; } else if (result['rows'][i]['addressType'] == 2) { addressType = 'Office'; } else if (result['rows'][i]['addressType'] == 3) { addressType = 'Other'; } var address_data = result['rows'][i]; d += '
'+ result['rows'][i]['addressLine1'] +','+ result['rows'][i]['addressLine2'] +'
'; d += ''+ result['rows'][i]['addressLine1'] +','+ result['rows'][i]['addressLine2'] +'
'; pincode_data += '' + result['rows'][i]['addressLine1'] + ',' + result['rows'][i]['addressLine2'] + '
'; d += '' + result['rows'][i]['addressLine1'] + ',' + result['rows'][i]['addressLine2'] + '
'; pincode_data += 'Delivery Is Closed
' + 'This store is not accepting delivery orders select nearest store.' + '' + 'Pickup Is Closed
' + 'This store is not accepting pickup orders select nearest store.' + '' + ''+ order_type +' Is Closed
' + 'This store is not accepting delivery orders select nearest store.' + '' + 'Location is Not Serviceable For '+ order_type + '
' + '' + '' + errorMessage + '
' + '' + ''+ order_type +' Is Closed
' + 'This store is not accepting delivery orders select nearest store.' + '' + 'Location is Not Serviceable For '+ order_type + '
' + '' + '' + pData.description + '
'; } $('#copytxt').html(""); $('#copytxt').val(l); $('#promo-d').html(""); $('#promo-d').html(promodetail); $('#promomodal').modal('show'); } } /*Promo Code*/ function copyText() { /* Get the text field */ var copyText = document.getElementById("copytxt"); copyText.select(); /* Copy the text inside the text field */ document.execCommand("copy"); /* Alert the copied text */ $('#suceess').modal('show'); $('#sucess-msg').html('Promo Code Copied!'); setTimeout(function() { $('#suceess').modal('hide') }, 2000); // copyText.select(false); copyText.blur(); window.getSelection().removeAllRanges(); } function expand_detail_description(id) { $('.less_desc' + id).addClass('d-none'); $('.more_desc' + id).removeClass('d-none'); } function collapse_detail_description(id) { $('.less_desc' + id).removeClass('d-none'); $('.more_desc' + id).addClass('d-none'); } function openOrderItemPage(storeSlug,locality = '',city = '') { if (storeSlug != '') { const dataId = fetchSlug; if(typeof webengage_tag == "function"){ webengage.track("Location Selected", { "City" : city, "Locality" : locality }); } var url = origin + "/order/" + storeSlug + "?itemid=" + dataId; window.location.href = url; } } function CurrentItemAddress() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(getitem_location, getitem_error); } } function getitem_error(error) { let errorMessage = "An unknown error occurred."; switch (error.code) { case error.PERMISSION_DENIED: errorMessage = "User denied the request for Geolocation."; break; case error.POSITION_UNAVAILABLE: errorMessage = "Location information is unavailable."; break; case error.TIMEOUT: errorMessage = "The request to get user location timed out."; break; } $('#error-msg-show').removeClass('d-none'); $('#error-msg-show').html(errorMessage); } function getitem_location(location) { $('#error-msg-show').addClass('d-none'); var lat = location.coords.latitude; var long = location.coords.longitude; var storedValue = localStorage.getItem("searchLocalityInput"); if (storedValue) { localStorage.removeItem("searchLocalityInput"); } var locationValues = [lat, long]; localStorage.setItem("searchLocalityInput", JSON.stringify(locationValues)); const itemSlug = fetchSlug; $.ajax({ url: origin + '/client/locateOneNearestStore?businessId=' + pId + '&lat=' + lat + '&lng=' + long + '&itemSlug=' + itemSlug , type: 'GET', dataType: 'JSON', success: function(data) { if (data['status'] == 1) { let outlets = data['data']; if (outlets.length > 0) { openOrderItemPage(outlets[0]['web_slug'],outlets[0]['locality'],outlets[0]['city']); $('#locationfetchmodal').modal('hide'); } }else{ $('#error-msg-show').removeClass('d-none'); $('#error-msg-show').html(data['error']); } } }); } function handlePincodeApiCall(pincode_data = '') { if(pincode_data == ''){ var pincode = $('#search_pincode').val(); var pincodePattern = /^\d{6}$/; if(pincode == '' || !pincodePattern.test(pincode)){ $('#notService_imagepincode').show(); $('#errorpincode_text').html(''); $('#errorpincode_text').html('Please enter a valid pincode'); return false; } }else{ var pincode = pincode_data; } $.ajax({ url: origin + '/client/matchPinCodeData', type: 'POST', data: { pincode: pincode , businessId: pId}, dataType:"json", success: function(response) { if(response['status'] == 1 && response['data']['pincodeData'] != false && response['data']['pincodeData']?.length > 0){ var data = response?.data; $('#notService_imagepincode').hide(); $('#search_pincode').val(''); $('#notService_image').hide(); $('#location_emptyImage').hide(); var slug = data['businessData'][0]['slug']; $('#enterpincode').modal('hide'); window.location.href = origin + '/order/' + slug; }else{ $('#notService_imagepincode').show(); $('#errorpincode_text').html(''); $('#errorpincode_text').html('Not Delivering to this area'); } }, error: function(error) { $('#notService_imagepincode').hide(); alert('Error:', error); } }); } $('#enterpincode').on('hidden.bs.modal', function () { $('#search_pincode').val(''); $('#notService_imagepincode').hide(); }); $('.your-slider-class').on('init', function(event, slick) { $(this).removeClass('invisible'); }) $('.your-slider-class').on('init', function(event, slick) { $(this).removeClass('invisible'); }) /*navigation dropdown navbar*/ $(document).ready(function(){ if ($(window).width() <= 991) { $(".site-nav .fl").on('click', function(event) { var $fl = $(this); $(this).parent().siblings().find('.submenu').slideUp(); $(this).parent().siblings().find('.fl').addClass('la-angle-right'); if($fl.hasClass('la-angle-right')){ $fl.removeClass('la-angle-right').addClass('la-angle-down'); }else{ $fl.removeClass('la-angle-down').addClass('la-angle-right'); } $fl.next(".submenu").slideToggle(); }); } }); /*navigation dropdown navbar*/