var ListPage = {
maxTries: 20,
interval: 0,
xhrRequests: [],
update: function(url, count, callback){
var fingerprint = "&t=" + (new Date().getTime());
var reqcount = "&req_count=" + count;
this.loader("on");
var self = this;
var req = new XMLHttpRequest();
req.open("GET", url + fingerprint + reqcount, true);
ListPage.xhrRequests.push(req);
req.onreadystatechange = function() {
if (req.readyState === 4 && (req.status === 200 || req.status === 202)) {
eval(req.responseText);
self.loader("off");
if (req.status === 200 || req.status !== 202 ) callback(req.status);
if (req.status === 202) {
if (count < self.maxTries) {
setTimeout(function(){ListPage.update(url, ++count, callback)}, self.interval);
self.interval += 100;
} else {
callback(req.status);
}
}
}
};
req.send(null);
},
loader: function(status) {
var spinnerD = document.querySelector('.spinnersD');
var spinnerM = document.querySelector('.spinnersM');
if (spinnerD && spinnerM) {
if (status === "on") {
spinnerD.className = "spinnersD shownow";
spinnerM.className = "spinnersM shownow";
} else {
// hide
spinnerD.className = "spinnersD";
spinnerM.className = "spinnersM";
}
}
},
ajax: function(url, callback) {
this.update(url, 1, callback);
}
};
ListPage.ajax("https://www.espanol.skyscanner.com/trip/hotels/hotel_list_page?action=nearby&clean_path=southampton-reino-unido%2Fcosas-para-hacer%2Fheartbreakers&controller=topics&country_code=¤t_user_id=&filters%5BClass%5D%5B%5D=Hotel&id=3000000408470&klass_name=Attraction&list_type=hotels&nearby=true&order=asc&page=2&path=southampton-reino-unido%2Fcosas-para-hacer%2Fheartbreakers%2Fcerca-hoteles&place=3000000408470&place_type=Attraction&place_type=attraction®ion=2000000017883&sort=best_value", function(status){
if (status === 200) {
HotelRates.ajax();
}
});
var HotelRates = {
hotels: "hotel_ids%5B%5D=5000000879673&hotel_ids%5B%5D=5000000033535&hotel_ids%5B%5D=5000000092391&hotel_ids%5B%5D=5000000406671&hotel_ids%5B%5D=5000000158201&hotel_ids%5B%5D=5000000705485&hotel_ids%5B%5D=5000000156027&hotel_ids%5B%5D=5000000073174&hotel_ids%5B%5D=5000000323790&hotel_ids%5B%5D=5000000328953&hotel_ids%5B%5D=5000000124001&hotel_ids%5B%5D=5000000204349&hotel_ids%5B%5D=5000000224015&hotel_ids%5B%5D=5000000354406&hotel_ids%5B%5D=5000000109916&hotel_ids%5B%5D=5000000011808&hotel_ids%5B%5D=5000000013567&hotel_ids%5B%5D=5000003772182&hotel_ids%5B%5D=5000000114456&hotel_ids%5B%5D=5000000408344&hotel_ids%5B%5D=5000000187373&hotel_ids%5B%5D=5000000406584&hotel_ids%5B%5D=5000000239019&hotel_ids%5B%5D=5000000318400&hotel_ids%5B%5D=5000000310534&hotel_ids%5B%5D=5000004510982&hotel_ids%5B%5D=5000005910366&hotel_ids%5B%5D=5000000705484&hotel_ids%5B%5D=5000003790171&hotel_ids%5B%5D=5000003831502",
ajaxCalls: function(tryIndex) {
if (this.hotels) {
ListPage.update("https://www.espanol.skyscanner.com/trip/hotels/hotel_rates_list?bookable_only=&country_code=¤t_user_id=&locale=es-LATAM®ion=2000000017883" + "&" + this.hotels, tryIndex, function(){
var placeholder = document.querySelectorAll('.metasearch_featured .placeholder');
for (var i = 0; i < placeholder.length; i++) {
placeholder[i].style.display='none';
}
});
}
},
ajax: function() {
this.ajaxCalls(1);
},
singleAjax: function() {
this.ajaxCalls(ListPage.maxTries);
}
};