if (typeof jQuery != "undefined") {
$ = jQuery;
}
function format_time(hour, minute) {
var h = hour > 9 ? "" + hour: "0" + hour;
var m = minute > 9 ? "" + minute: "0" + minute;
return h+":"+m;
}
var bookingWidgetController = function () {
return {
config: {
language: $("html").attr("lang") ? $("html").attr("lang").replace(/[-_].*/, '') : $("html").attr("xml:lang").replace(/[-_].*/, ''),
base_url: "//hacienda-cusco-centro-dot-cusco-plaza.appspot.com",
widget_url: "//hacienda-cusco-centro-dot-cusco-plaza.appspot.com/haciendaperuwidget/",
only_adults: "",
local: false,
dependcencies_added: typeof(bookingWidgetController) == "undefined" ? false : bookingWidgetController.config.dependcencies_added,
datepicker_added: false,
dependencies: [
'jquery-ui',
'main_web_skeleton',
'selectric',
'jquery-i18n'
],
css_list : [
"https://cdn.paraty.es/static_files/common/plugins/dates-selector/css/datepicker_ext_inf.css?v=1.48",
"//hacienda-cusco-centro-dot-cusco-plaza.appspot.com/static_1/css/haciendaperu/booking_widget_haciendaperu.css?v=1.48",
"//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css",
"https://cdn.paraty.es/static_files/common/plugins/pricescalendar/styles.css?v=1.48",
"https://cdn.paraty.es/static_files/common/css/datepicker.redmond/jquery-ui-1.8.16.custom.min.css?v=1.48"
],
/*Special configs*/
avoid_guest_autoclose_click: false
},
init: function () {
this.prepare_dependencies();
},
_getScript: function (url) {
if (this.config.local) {
url = url.replace("https://cdn.paraty.es", "http://localhost:8090");
url = url.replace("/static_files/common/", "/static_1/");
}
return $.getScript(url);
},
prepare_dependencies: function () {
var base_url = bookingWidgetController.config.base_url,
lang = bookingWidgetController.config.language;
if (!bookingWidgetController.config.dependcencies_added) {
let dependenciesToLoad = [];
for (let dependency of bookingWidgetController.config.dependencies) {
switch (dependency) {
case 'jquery-ui':
dependenciesToLoad.push(bookingWidgetController._getScript("https://cdn.paraty.es/static_files/common/lib/jquery-ui-1.10.1.custom.min.modified.js?v=1.48"));
break;
case 'main_web_skeleton':
dependenciesToLoad.push(bookingWidgetController._getScript("https://cdn.paraty.es/static_files/common/js/mainWebSkeletonAux_injection.js?v=1.48"));
break;
case 'selectric':
dependenciesToLoad.push(bookingWidgetController._getScript("https://cdn.paraty.es/static_files/common/lib/selectric/jquery.selectric.1.8.js?v=1.48"));
break;
case 'jquery-i18n':
dependenciesToLoad.push(bookingWidgetController._getScript("https://cdn.paraty.es/static_files/common/lib/jquery-i18n-1.1.1/jquery.i18n.js?v=1.48").then(function () {
return bookingWidgetController._getScript("https://cdn.paraty.es/static_files/common/i18n/messages_" + lang + ".js?v=1.48").then(function () {
$.i18n.load(messages);
});
}));
break;
default:
console.debug(`[Paraty Injection] Unknown dependency: ${dependency}`);
break;
}
}
$.when(...dependenciesToLoad).done(function () {
bookingWidgetController.get_booking_widget_html();
bookingWidgetController.config.dependcencies_added = true;
});
}
},
get_booking_widget_html: function () {
bookingWidgetController.load_css();
var language_widget = bookingWidgetController.config.language;
$("html").attr("lang", language_widget);
$.get(bookingWidgetController.config.widget_url + bookingWidgetController.config.language, function (e) {
bookingWidgetController.config.widget_html = $("
").html(e);
}).done(function () {
bookingWidgetController.add_widget_html();
bookingWidgetController.add_button_mobile_version_html();
bookingWidgetController.adding_tags_to_config();
bookingWidgetController.load_datepicker();
bookingWidgetController.open_widget();
bookingWidgetController.close_widget();
bookingWidgetController.click_listeners();
if ($("#add_analytics_campaings_tracking") && $("#add_analytics_campaings_tracking").length > 0) {
injectionCampaignsController.init()
}
});
},
load_css: function () {
var list_css = bookingWidgetController.config.css_list;
for (var i = 0; i < list_css.length; i++) {
$('head').append($('').attr('href', list_css[i]));
}
},
add_widget_html: function() {
},
add_button_mobile_version_html: function() {
let target_container = $("#widget_paraty").length ? $("#widget_paraty") : $("#widget-paraty");
target_container.append($("").html($.i18n._("reserva_ahora")));
target_container.find("#full_wrapper_booking").append($(""));
},
load_datepicker: function () {
var lang = bookingWidgetController.config.language,
base_url = bookingWidgetController.config.base_url;
// Refactor in a external function
if (!bookingWidgetController.config.datepicker_added) {
const callback = function () {
bookingWidgetController.after_load_booking_script();
bookingWidgetController.custom_functions();
bookingWidgetController.config.datepicker_added = true;
}
if (bookingWidgetController.config.dependencies.includes('jquery-ui')) {
bookingWidgetController._getScript("https://cdn.paraty.es/static_files/common/plugins/pricescalendar/calendar.plugin.js?v=1.48");
bookingWidgetController._getScript("https://cdn.paraty.es/static_files/common/js/datepicker/jquery.ui.datepicker-" + lang + ".js?v=1.48").done(function () {
bookingWidgetController._getScript("https://cdn.paraty.es/static_files/common/plugins/dates-selector/datepicker_v1.js").done(function () {
_set_datepicker_regional($);
bookingWidgetController.datepicker_configuration();
bookingWidgetController._getScript("https://cdn.paraty.es/static_files/common/scripts/booking_7.js?v=1.48").done(callback);
});
});
} else {
callback();
}
}
},
after_load_booking_script: function() {
if (bookingWidgetController.config.dependencies.includes('jquery-ui')) {
_set_datepicker_regional($);
DP_extend_info.init();
bookingWidgetController.update_date_by_timezone();
}
if (bookingWidgetController.config.dependencies.includes('selectric')) {
$(".room_selector").selectric({disableOnMobile: false});
$(".rooms_number").selectric({disableOnMobile: false});
}
bookingWidgetController.prepare_guest_selector();
bookingWidgetController.adding_room_tag_selector();
bookingWidgetController.set_occupancy_number();
},
update_date_by_timezone: function() {
if ($("#timeLimit").length>0) {
var _limit = $("#timeLimit").val();
var _now = new Date();
var _hour = format_time(_now.getHours(), _now.getMinutes());
if (_hour > _limit) {
_now.setUTCDate(_now.getUTCDate() + 1);
}
var datepicker_sd = $('.' + DP_extend_info.config.class_datepicker_sd);
datepicker_sd.datepicker('option', 'minDate', new Date(_now.getFullYear(),_now.getMonth(),_now.getDate()));
var datestart = _now.getDate()+"/"+(_now.getMonth()+1)+"/"+_now.getFullYear();
updateDates(datestart);
$("input[name='startDate']").val(datestart);
_set_start_date(datestart);
_now.setUTCDate(_now.getUTCDate() + 1);
datepicker_departure_date = $.datepicker.formatDate("dd-mm-yy", _now);
datepicker_departure_date = datepicker_departure_date.replace(new RegExp("-", "g"), '/');
$("input[name='endDate']").val(datepicker_departure_date);
_set_end_date(datepicker_departure_date);
$('.departure_datepicker').datepicker('option', 'minDate', _now);
}
},
datepicker_configuration: function() {
DP_extend_info.config.booking_version = '5';
DP_extend_info.config.hotel_path_endpoint = bookingWidgetController.config.base_url;
bookingWidgetController.separate_entry_departure_datepicker();
DP_extend_info.config.custom_format_day_month = bookingWidgetController.custom_format_date;
},
separate_entry_departure_datepicker: function() {
DP_extend_info.config.start_date_selector = ".entry_date_wrapper";
DP_extend_info.config.end_date_selector = ".departure_date_wrapper";
DP_extend_info.config.start_datepicker_span = ".entry_date_wrapper .date_day";
DP_extend_info.config.end_datepicker_span = ".departure_date_wrapper .date_day";
},
custom_format_date: function(dateComponents) {
dateComponents = dateComponents.split("/");
var month_names = $.datepicker._defaults.monthNames,
html_date = "%d
%m
%y
",
month = (parseInt(dateComponents[1]) - 1);
return html_date.replace("%d", dateComponents[0]).replace("%m", month_names[month]).replace("%y", dateComponents[2]);
},
prepare_guest_selector: function () {
$("select.room_selector").unbind("change");
$("select.room_selector, select.rooms_number").change(function () {
bookingWidgetController.set_occupancy_number();
});
},
adding_room_tag_selector: function () {
$("select.rooms_number option").each(function (index, element) {
var room_tag = parseInt($(element).val()) === 1 ? bookingWidgetController.config.room_tag : bookingWidgetController.config.rooms_tag;
$(element).text($(element).text() + " " + room_tag);
});
if (bookingWidgetController.config.dependencies.includes('selectric')) {
$("select.rooms_number").selectric("refresh");
}
},
set_occupancy_number: function () {
var number_of_rooms = $("select[name='numRooms']").val(),
adults_number = 0,
kids_number = 0,
babies_number = 0;
if (number_of_rooms) {
for (var room_loop = 1; room_loop <= number_of_rooms; room_loop++) {
var actual_select_adults = $("select[name='adultsRoom" + room_loop + "']").val(),
actual_select_kids = $("select[name='childrenRoom" + room_loop + "']").val(),
actual_select_baby = $("select[name='babiesRoom" + room_loop + "']").val();
adults_number += parseInt(actual_select_adults);
kids_number += parseInt(actual_select_kids);
babies_number += parseInt(actual_select_baby);
}
}
var target_placeholder = $(".guest_selector .placeholder_text"),
placeholder_string = bookingWidgetController.occupancy_format_html();
var room_tag = number_of_rooms === 1 ?
bookingWidgetController.config.room_tag : bookingWidgetController.config.rooms_tag;
var adult_tag = adults_number === 1 ?
bookingWidgetController.config.adult_text : bookingWidgetController.config.adults_text;
var kid_tag = kids_number === 1 ?
bookingWidgetController.config.kid_text : bookingWidgetController.config.kids_text;
var baby_tag = babies_number === 1 ?
bookingWidgetController.config.baby_text : bookingWidgetController.config.babies_text;
placeholder_string = placeholder_string.replace("@@N_R@@", number_of_rooms).replace("@@T_R@@", room_tag)
.replace("@@N_A@@", adults_number).replace("@@T_A@@", adult_tag)
.replace("@@N_C@@", kids_number).replace("@@T_C@@", kid_tag)
.replace("@@N_B@@", babies_number).replace("@@T_B@@", baby_tag);
target_placeholder.html(placeholder_string);
},
occupancy_format_html: function() {
var occupancy_string = '';
if (this.config.only_adults) {
occupancy_string = "@@N_A@@ @@T_A@@";
} else {
occupancy_string = "@@N_A@@ @@T_A@@ / @@N_C@@ @@T_C@@";
}
return occupancy_string;
},
open_widget: function () {
$("#floating_button").click(function () {
$("#full_wrapper_booking").fadeIn();
});
},
close_widget: function () {
$("i.fa-times.close_widget").click(function () {
$("#full_wrapper_booking").fadeOut();
});
},
click_listeners: function () {
if (!this.config.avoid_guest_autoclose_click) {
$("html").click(function (event) {
var event_target = $(event.target);
if (!event_target.closest(".room_list_wrapper").length && !event_target.closest(".guest_selector").length) {
$(".room_list_wrapper").slideUp();
}
});
}
},
adding_tags_to_config: function () {
bookingWidgetController.config.adults_text = $("#adults_tag").val();
bookingWidgetController.config.adult_text = $("#adult_tag").val();
bookingWidgetController.config.kids_text = $("#kids_tag").val();
bookingWidgetController.config.kid_text = $("#kid_tag").val();
bookingWidgetController.config.babies_text = $("#babies_tag").val();
bookingWidgetController.config.baby_text = $("#baby_tag").val();
bookingWidgetController.config.room_tag = $("#room_tag").val();
bookingWidgetController.config.rooms_tag = $("#rooms_tag").val();
},
force_start_date: function (forcedStartDateInput) {
function parseDate(dateString) {
const [day, month, year] = dateString.split("/").map(Number);
return new Date(year, month - 1, day);
}
function formatDate(date) {
return date.toLocaleDateString('en-GB'); // Formats as DD/MM/YYYY
}
const inputDateString = forcedStartDateInput.val();
if (!inputDateString) {
console.error("Invalid input date.");
return;
}
const startDate = parseDate(inputDateString);
if (isNaN(startDate.getTime())) {
console.error("Unable to parse the start date.");
return;
}
const endDate = new Date(startDate);
endDate.setDate(endDate.getDate() + 1);
const formattedStartDate = formatDate(startDate);
const formattedEndDate = formatDate(endDate);
const startDateInput = $("input[name='startDate']");
const endDateInput = $("input[name='endDate']");
startDateInput.val(formattedStartDate).trigger("change");
endDateInput.val(formattedEndDate).trigger("change");
window.updateDates(formattedStartDate);
const monthToSearch = startDate.getMonth();
const yearToSearch = startDate.getFullYear();
const price_calendar_v2 = $("#price_calendar_v2") && $("#price_calendar_v2").length;
if (price_calendar_v2) {
document.dispatchEvent(new CustomEvent('updateMonth.price_calendar_v2', {
detail: { month: monthToSearch, year: yearToSearch }
}));
}
},
custom_functions: function(){
}
};
}();
const injectionCampaignsController = (function () {
return {
init() {
this.processCampaignInfo();
},
getUrlParameter(sParam) {
const sPageURL = decodeURIComponent(window.location.search.substring(1));
const sURLVariables = sPageURL.split('&');
for (const sVariable of sURLVariables) {
const [key, value] = sVariable.split('=');
if (key === sParam) {
return value === undefined ? true : value;
}
}
return undefined;
},
createCookie(key, value, durationInDays = 365) {
const targetExpiryDate = new Date();
targetExpiryDate.setDate(targetExpiryDate.getDate() + durationInDays);
document.cookie = `${key}=${value};path=/;expires=${targetExpiryDate.toUTCString()};`;
},
searchCookie(key) {
const cookies = document.cookie.split(';');
for (const cookie of cookies) {
const [cookieKey, cookieValue] = cookie.trim().split('=');
if (cookieKey === key) {
return cookieValue;
}
}
return undefined;
},
saveCampaignInfo() {
const availableCampaignParams = [
'utm_source', 'utm_medium', 'utm_campaign', 'utm_term',
'utm_content', 'utm_id', 'partner'
];
const cookieToSet = {};
availableCampaignParams.forEach(param => {
const retrievedParam = this.getUrlParameter(param);
if (retrievedParam) {
cookieToSet[param] = retrievedParam;
}
});
if (!$.isEmptyObject(cookieToSet)) {
const cookieToSetJson = JSON.stringify(cookieToSet);
this.createCookie("analytics_campaign", cookieToSetJson);
}
},
addCampaignToWidget() {
const retrievedCookie = this.searchCookie('analytics_campaign');
if (!retrievedCookie) return;
const loadedCookie = JSON.parse(retrievedCookie);
$(".paraty-booking-form").each(function () {
for (const [keyCampaign, value] of Object.entries(loadedCookie)) {
const inputToAppend = $("").attr({
name: keyCampaign,
value: value
});
$(this).append(inputToAppend);
}
});
},
processCampaignInfo() {
this.saveCampaignInfo();
this.addCampaignToWidget();
}
};
})();
bookingWidgetController.add_widget_html = function () {
var paraty_widget = bookingWidgetController.config.widget_html;
if (!$("#widget_paraty").length) {
$("body").append($(""));
}
$("#widget_paraty").html(paraty_widget);
};
bookingWidgetController.custom_format_date = function (dateComponents) {
dateComponents = dateComponents.split("/");
var month_names = $.datepicker._defaults.monthNamesShort,
target_month = parseInt(dateComponents[1], 10) - 1,
html_date = "%d
%m
%y
";
return html_date.replace("%d", dateComponents[0]).replace("%m", month_names[target_month]).replace("%y", dateComponents[2]);
};
bookingWidgetController.occupancy_format_html = function () {
return "@@N_A@@ " + $.i18n._("T_adultos") + " / @@N_C@@ " + $.i18n._("T_ninos") + "" + " / @@N_B@@ " + $.i18n._("T_bebes") + "";
};
bookingWidgetController.custom_functions = function () {
hotel_selector_controller();
autoselect_hotel();
scroll_body_class();
$(".floating_button_left").click(function () {
$("#full_wrapper_booking").fadeIn();
});
};
function hotel_selector_controller() {
$("#widget_paraty .hotel_text_selected_wrapper").click(function(){
$(this).closest(".hotel_wrapper").find(".hotel_list_wrapper").slideToggle("slow");
});
$("#widget_paraty .hotel_element").click(function(){
var hotel = $(this),
hotel_name = hotel.text(),
hotel_list_wrapper = hotel.closest(".hotel_list_wrapper"),
hotel_selector_wrapper = hotel.closest(".hotel_wrapper"),
destination_wrapper = hotel_selector_wrapper.find(".destination"),
form_wrapper = hotel.closest(".booking_form"),
hotel_data = hotel.data();
if(hotel_data['namespace'] && hotel_data['url']) {
var full_url = "https://" + hotel_data['namespace'] + hotel_data['url'];
form_wrapper.attr("action", full_url);
form_wrapper.find("#namespace").val(hotel_data['namespace']);
destination_wrapper.val(hotel_data['namespace']);
}
if(hotel_data['disableBabies']) {
$(".babies_selector").hide();
$(".babies_selector .room_selector").val(0);
$(".babies_selector .room_selector").change();
$(".babies_selector .room_selector").selectric("refresh");
} else {
$(".babies_selector").show();
}
if(hotel_data['disableKids']) {
$(".children_selector").hide();
$(".children_selector .room_selector").val(0);
$(".children_selector .room_selector").change();
$(".children_selector .room_selector").selectric("refresh");
} else {
$(".children_selector").show();
}
if(hotel_data['edadesKids']){
let new_min = parseInt(hotel_data['edadesKids'].split(':')[0]),
new_max = parseInt(hotel_data['edadesKids'].split(':')[1]);
$('.kidAgesSelect').each(function(){
$(this).empty()
for (var i = new_min; i <= new_max; i++) {
$(this).append('');
}
$(this).children(":first").attr('selected', 'selected');
});
};
hotel_selector_wrapper.find(".hotel_text_selected_wrapper .hotel_text").text(hotel_name);
hotel_list_wrapper.slideUp("slow");
});
try {
var tracker = ga.getAll()[0];
$(".booking_form.paraty-booking-form").append($("").val(tracker.get('clientId')));
}
catch(e) {
console.log("Error fetching clientId");
console.log(e);
}
}
function autoselect_hotel() {
var hotel_code = $("#paraty_widget_hotel_option").val();
if(hotel_code) {
$("#widget_paraty .hotel_element[data-namespace=" + hotel_code + "]").trigger("click");
}
}
function scroll_body_class() {
var $widget = $('#widget_paraty');
var widgetOffset = $widget.offset().top;
$(window).scroll(function () {
if ($(this).scrollTop() >= widgetOffset) {
$widget.addClass('fixed');
} else {
$widget.removeClass('fixed');
}
});
}
bookingWidgetController.init();
$('.mobile-menu-button').on('click', function() {
$('body').toggleClass('open-overlay-menu');
if ($('body').hasClass('open-overlay-menu')) {
$('#widget_paraty #floating_button').hide();
} else {
$('#widget_paraty #floating_button').show();
}
});
$(window).on('scroll', function() {
if ($('.navbar').hasClass('is_stuck')) {
$('#widget_paraty #floating_button').css('top', '70px');
} else {
$('#widget_paraty #floating_button').css('top', '');
}
});