$ = jQuery; 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: "//bibo-corporativa-dot-bibosuites.appspot.com", widget_url: "//bibo-corporativa-dot-bibosuites.appspot.com/bibowidget/", only_adults: "", dependcencies_added: typeof(bookingWidgetController) == "undefined" ? false : bookingWidgetController.config.dependcencies_added, datepicker_added: false, css_list : [ "//bibo-corporativa-dot-bibosuites.appspot.com/static_1/plugins/dates-selector/css/datepicker_ext_inf.css?v=1.37", "//bibo-corporativa-dot-bibosuites.appspot.com/static_1/css/bibo/booking_widget_bibo.css?v=1.37", "//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css", "//bibo-corporativa-dot-bibosuites.appspot.com/static_1/plugins/pricescalendar/styles.css?v=1.37", "//bibo-corporativa-dot-bibosuites.appspot.com/static_1/css/datepicker.redmond/jquery-ui-1.8.16.custom.min.css?v=1.37" ], /*Special configs*/ avoid_guest_autoclose_click: false }, init: function () { this.prepare_dependencies(); }, prepare_dependencies: function () { var base_url = bookingWidgetController.config.base_url, lang = bookingWidgetController.config.language; if (!bookingWidgetController.config.dependcencies_added) { $.getScript(base_url + "/static_inj/lib/jquery-ui-1.10.1.custom.min.modified.js?v=1.37").done(function () { $.getScript(base_url + "/static_1/js/mainWebSkeletonAux_injection.js?v=1.37"); $.getScript(base_url + "/static_1/lib/selectric/jquery.selectric.1.8.js?v=1.37").done(function () { $.getScript(base_url + "/static_1/lib/jquery-i18n-1.1.1/jquery.i18n.js?v=1.37").done(function () { $.getScript(base_url + "/static_1/i18n/messages_" + lang + ".js?v=1.37").done(function () { $.i18n.load(messages); 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(); }); }, 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) { $.getScript(base_url + "/static_1/plugins/pricescalendar/calendar.plugin.js?v=1.37"); $.getScript(base_url + "/static_1/js/datepicker/jquery.ui.datepicker-" + lang + ".js?v=1.37").done(function () { $.getScript(base_url + "/static_1/plugins/dates-selector/datepicker_v1.js").done(function () { _set_datepicker_regional($); bookingWidgetController.datepicker_configuration(); $.getScript(base_url + "/static_1/scripts/booking_7.js?v=1.37").done(function () { bookingWidgetController.after_load_booking_script(); bookingWidgetController.custom_functions(); bookingWidgetController.config.datepicker_added = true }); }); }); } }, after_load_booking_script: function() { _set_datepicker_regional($); $(".room_selector").selectric({disableOnMobile: false}); $(".rooms_number").selectric({disableOnMobile: false}); DP_extend_info.init(); bookingWidgetController.prepare_guest_selector(); bookingWidgetController.adding_room_tag_selector(); bookingWidgetController.set_occupancy_number(); bookingWidgetController.update_date_by_timezone(); }, 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); }); $("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(); }, custom_functions: function(){ } }; }(); bookingWidgetController.add_widget_html = function () { var paraty_widget = bookingWidgetController.config.widget_html; if($("#widget_paraty").length) { $("#widget_paraty").html(paraty_widget); $("#widget_paraty #full_wrapper_booking .booking_form_title").append($(".cancel_booking_link")); } }; bookingWidgetController.occupancy_format_html = function() { return "@@N_R@@ @@T_R@@, @@N_A@@-@@N_C@@"; }; bookingWidgetController.adding_room_tag_selector = function () { $("select.rooms_number option").each(function (index, element) { $(element).text($(element).text() ); }); $("select.rooms_number").selectric("refresh"); }; bookingWidgetController.open_widget = function () { $("#floating_button").click(function () { $("#full_wrapper_booking").fadeToggle(); }); }; function searchCookie(key) { var encontrado = -1; var x = document.cookie; if (x) { var y = x.split(";"); for (var i = 0; i < y.length; i++) { encontrado = y[i].search(key); if (encontrado > -1) { resultado = y[i].split("="); return resultado[1]; } } } } bookingWidgetController.custom_functions = function () { var add_room_html = "
"+$.i18n._("T_anadir")+"
"+$.i18n._("T_eliminar")+"
"; $(".room_list_wrapper").append(add_room_html); $(".room_list_wrapper").on("click", ".add_room", function(){ add_room(); }); $(".room_list_wrapper").on("click", ".remove_room", function(){ remove_room(); }); bookingWidgetController.config.languages = { "es": "SPANISH", "en": "ENGLISH", }; try { create_link_booking(); } catch(error) { console.log("[Paraty Widget] Error trying to get the utl to booking engine"); } $(".hotel_selector li").click(function () { var hotel_name = $(this).find(".title_selector").html(); $(".destination_wrapper .destination_field .destination").html(hotel_name); }); $(".search_hotels_selector").keyup(function () { searchHotelElementInput($(this)); }) last_form_class_wrapper = ''; $(".hotel_selector .hotel_selector_option").click(function () { _hotel_selection($(this)); if ($("#floating_button").is(":visible")) { var hotel_selected = $(this).text(); $(".search_title").text(hotel_selected); $(".hotel_selector .hotel_selector_option").removeClass("selected"); $(this).addClass("selected"); } else { var destination = $("#widget_paraty .destination"), placeholder_text = destination.attr("placeholder").trim().replace(/ *\([^)]*\) */g, ""); destination.attr("placeholder", placeholder_text); $(".hotel_selector").slideUp(); setTimeout(function () { var dest_value = $(".destination").attr("value"); $(".destination").html(dest_value); }, 1000) } //Form class wrapper var form_class_wrapper = $(this).attr('form_class'); if (last_form_class_wrapper) { $(".submit_button").removeClass(last_form_class_wrapper); } if (form_class_wrapper) { last_form_class_wrapper = form_class_wrapper; $(".submit_button").addClass(form_class_wrapper); } setTimeout(function () { $(".paraty-booking-form").each(function () { var submit_button = $(this).find(".submit_button"); if (!submit_button.is(':visible') || submit_button.attr('disabled')) { submit_button.trigger('click'); } }) }, 1000); $(".paraty-booking-form .submit_button").click(function (){ var target_namespace = $(".paraty-booking-form #namespace").val(); if (target_namespace == 'bibo-albaicin') { gtag('event', 'reserva', { 'event_category': 'click', 'event_label': 'albaicin' }); } if (target_namespace == 'bibo-gran-via') { gtag('event', 'reserva', { 'event_category': 'click', 'event_label': 'granvia' }); } if (target_namespace == 'bibo-oro-darro') { gtag('event', 'reserva', { 'event_category': 'click', 'event_label': 'oro' }); } if (target_namespace == 'bibo-cabreralillo') { gtag('event', 'reserva', { 'event_category': 'click', 'event_label': 'cabreralillo' }); } if (target_namespace == 'bibo-plazanueva') { gtag('event', 'reserva', { 'event_category': 'click', 'event_label': 'plazanueva' }); } if (target_namespace == 'bibo-premier') { gtag('event', 'reserva', { 'event_category': 'click', 'event_label': 'premier' }); } }); }); $(".booking_0_hotel_custom_selection").click(function(){ _custom_set_all_hotels_search($(this)); }); $(window).load(function() { bookingWidgetController.prepare_guest_selector(); var selected_namespace = $("#paraty_widget_namespace").val(); if (selected_namespace) { setTimeout(function () { $(".hotel_selector .hotel_selector_option#" + selected_namespace).trigger("click"); $(".hotel_selector .destiny").hide(); $(".hotel_selector .hotel_selector_option#" + selected_namespace).closest(".destiny").show(); }, 3000); } }); $(".destination_wrapper, .close_hotel_selector").unbind("click"); $(".destination_wrapper, .close_hotel_selector").click(function () { $(".hotel_selector").slideToggle(); }); try { setTimeout(function () { //Use hardcoded method due to new usement of GTM instead analytics var anaytics_user_id = searchCookie('_ga'); var client_id = anaytics_user_id.split("."); client_id = client_id.slice(Math.max(client_id.length - 2, 0)); if (client_id) { $(".paraty-booking-form").each(function () { $(this).append(""); $(this).find("#_ga").val(client_id.join('.')); }); } }, 2000); } catch (err) { console.log('Google Analytics defined incorrectly (May use a old version)'); } $("#full_wrapper_booking .children_selector select.room_selector").change(function () { check_kids_ages($(this)); }); $("#full_wrapper_booking .kidAgesSelect").selectric(); }; function check_kids_ages(select_element){ var parent_list = select_element.closest("li"), selected_value = select_element.val(), target_age_selector = parent_list.next(".full_ages_wrapper"), childs_elements = target_age_selector.find(".kid_age_element_wrapper"), target_childs_elements = childs_elements.slice(0, parseInt(selected_value)); if (parseInt(selected_value)) { childs_elements.css('display', 'none'); target_childs_elements.css('display', 'block'); target_age_selector.slideDown(function () { $(this).css("overflow","inherit"); }); } else { childs_elements.css('display', 'none'); target_age_selector.slideUp(function () { $(this).css("overflow","inherit"); }); } } function create_link_booking() { var link_booking = bookingWidgetController.config.base_url + "/booking1?numRooms=1&adultsRoom1=2" + "&adultsRoom2=0&adultsRoom3=0&childrenRoom1=0&childrenRoom2=0&childrenRoom3=0&babiesRoom1=0&" + "babiesRoom2=0&babiesRoom3=0&fromCountry=&language=" + bookingWidgetController.config.languages[bookingWidgetController.config.language]; $(".paraty-booking-link").each(function(){ $(this).attr("href", link_booking); }); } function add_room(){ var number_rooms = parseInt($("select.rooms_number").val()); console.log(number_rooms); if (number_rooms < 3) { $($(".rooms_number_wrapper .selectricItems li").get(number_rooms)).trigger("click"); bookingWidgetController.set_occupancy_number(); } } function remove_room(){ var number_rooms = parseInt($("select.rooms_number").val()); if (number_rooms > 1) { $($(".rooms_number_wrapper .selectricItems li").get(number_rooms - 2)).trigger("click"); bookingWidgetController.set_occupancy_number(); } } function _custom_set_all_hotels_search(clicked_element) { var all_namespaces = clicked_element.attr('namespaces'), hotel_name = clicked_element.attr('hotel_name'), hotel_url = clicked_element.attr('hotel_url'); $(".paraty-booking-form").each(function () { $(this).attr('action', hotel_url); //$(this).find("#namespace").val(all_namespaces); var placeholder_text = hotel_name.trim().replace(/ *\([^)]*\) */g, ""); $(this).find(".destination").val(hotel_name).attr("placeholder", placeholder_text).html(placeholder_text); if (!$(this).find("input[name='applicationIds']").length) { $("").appendTo($(this)); } else { $(this).find("input[name='applicationIds']").val(all_namespaces); } $(this).find("#applicationIds").val(all_namespaces) }); $(".hotel_selector").slideUp(); } function searchHotelElementInput(){ var searched_hotel = $(".search_hotels_selector").val(); $(".hotel_selector .hotel_selector_inner .destiny .hotel_selector_destiny li").each(function(){ var actual_html = $(this).html(); actual_html = actual_html.toLowerCase(); searched_hotel = searched_hotel.toLowerCase(); if(actual_html.indexOf(searched_hotel) < 0){ $(this).css('display', 'none'); $(this).closest('.destiny').children('h3').css('display', 'none'); }else{ $(this).css('display', 'block'); $(this).closest('.destiny').children('h3').css('display', 'block'); } if(searched_hotel == ""){ $(this).css('display', 'block'); $(this).closest('.destiny').children('h3').css('display', 'block'); } }); } bookingWidgetController.init();