-
Notifications
You must be signed in to change notification settings - Fork 19
/
QD_infinityScroll.js
251 lines (221 loc) · 9.92 KB
/
QD_infinityScroll.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/**
* Infinity Scroll
* @author Carlos Vinicius [Quatro Digital]
* @version 3.15
* @license MIT
*/
if ("function" !== typeof (String.prototype.trim)) String.prototype.trim = function () { return this.replace(/^\s+|\s+$/g, ""); };
(function ($) {
"use strict";
if (typeof $.fn.QD_infinityScroll === "function") return;
// Iniciando as variáveis públicas do infinity scroll
window._QuatroDigital_InfinityScroll = window._QuatroDigital_InfinityScroll || { allowNewPage: true };
$.fn.QD_infinityScroll = function (opts) {
"use strict";
// Reduzindo o nome da variável publica
var $public = window._QuatroDigital_InfinityScroll;
// Função de log
var extTitle = "Infinity Scroll";
var log=function(b,c){if("object"===typeof console&&"undefined"!==typeof console.error&&"undefined"!==typeof console.info&&"undefined"!==typeof console.warn){if("object"==typeof b&&"function"==typeof b.unshift){b.unshift("["+extTitle+"]\n");var a=b}else a=["["+extTitle+"]\n",b];if("undefined"==typeof c||"alerta"!==c.toLowerCase()&&"aviso"!==c.toLowerCase())if("undefined"!=typeof c&&"info"==c.toLowerCase())try{console.info.apply(console,a)}catch(d){try{console.info(a.join("\n"))}catch(e){}}else try{console.error.apply(console,a)}catch(d){try{console.error(a.join("\n"))}catch(e){}}else try{console.warn.apply(console,a)}catch(d){try{console.warn(a.join("\n"))}catch(e){}}}};
var defaults = {
// Última prateleira/vitrine na página
lastShelf: ">div:last",
// Elemento com mensagem de carregando ao iniciar a requisição da página seguinte
elemLoading: '<!-- Infinity Scroll - Loading message --><div id="scrollLoading" class="qd-is-loading">Carregando ... </div>',
// Opção p/ definir a URL manualmente, ficando automático apenas a paginação. A url deve terminar com "...&PageNumber="
searchUrl: null,
// Objeto jQuery com o botão de voltar ao topo
returnToTop: $('<div id="returnToTop" class="qd-is-return-top"><a href="#"><span class="text">voltar ao</span><span class="text2">TOPO</span><span class="arrowToTop"></span></a></div>'),
// Define em qual seletor a ação de observar a rolagem será aplicado (ex.: $(window).scroll(...))
scrollBy: document,
// Callback quando uma requisição ajax da prateleira é completada
callback: function () { },
// Cálculo do tamanho do footer para que uma nova página seja chamada antes do usuário chegar ao "final" do site
getShelfHeight: function ($this) {
return ($this.scrollTop() + $this.height());
},
// Opção para fazer a paginação manualmente, uma nova página só é chamada quando executado o comando dentro desta função. Útil para ter um botão "Mostrar mais produtos"
// Ela recebe como parâmetro: 1 função que chama a próxima página (caso ela exista)
paginate: null,
// Esta função é quem controla onde o conteúdo será inserido. Ela recebe como parâmetro: O ùltimo bloco inserido e os dados da nova requisição AJAX
insertContent: function (currentItems, ajaxData) {
currentItems.after(ajaxData);
},
// Função para permitir ou não que a rolagem infinita execute na página esta deve retornar "true" ou "false"
authorizeScroll: function () {
return true;
}
};
var options = jQuery.extend({}, defaults, opts);
var $this = jQuery(this);
var $empty = jQuery("");
if ($this.length < 1)
return $this;
// Checando se existe mais de uma prateleira selecionada
if ($this.length > 1) {
log("Identifiquei que a seletor informado (" + $this.selector + ") retornou " + $this.length + " elementos.\n Para solucionar o problema estou selecionando automáticamente o primeiro com o id: #" + ($this.filter("[id^=ResultItems]:first").attr("id") || "!Not Found"), "Aviso");
$this = $this.filter("[id^=ResultItems]:first");
}
// tentando adivinhar se esta pegando o elemento correto da prateleira
if (!$this.filter("[id^=ResultItems]").length)
log(["Certifique-se que esta selecionando o elemento correto.\n O plugin espera que o elemento seja o que contém o id: #" + ($("div[id^=ResultItems]").attr("id") || "!Not Found"), $("div[id^=ResultItems]")], "Info");
if ($this.parent().filter("[id^=ResultItems]").length) {
$this = $this.parent();
log(["Identifiquei que o seletor pai do elemento que você informou é o #" + (jQuery("div[id^=ResultItems]").attr("id") || "!Not Found") + ".\n Como forma de corrigir esse problema de seleção de elemento, assumirei a prateleira correta.", $this], "Aviso");
}
// Adicionando botão de voltar ao topo
$("body").append(options.returnToTop);
var $window = $(window);
var $document = $(document);
var $htmlWrapper = $(options.scrollBy);
var elemLoading = $(options.elemLoading);
$public.toTopE = $(options.returnToTop);
$public.moreResults = true;
$public.currentPage = 2;
var scrollToTop = function () {
"use strict";
var windowH = $window.height();
$window.bind("resize.QD_infinityScroll", function () {
windowH = $window.height();
});
var scrollTimeout = 0;
$htmlWrapper.bind("scroll.QD_infinityScroll", function () {
clearTimeout(scrollTimeout);
scrollTimeout = setTimeout(function () {
if ($document.scrollTop() > windowH) {
if (!document.body.getAttribute("data-qd-infinity-scroll"))
document.body.setAttribute("data-qd-infinity-scroll", 1);
} else if (document.body.getAttribute("data-qd-infinity-scroll"))
document.body.removeAttribute("data-qd-infinity-scroll");
}, 20);
});
$public.buttonToTop = $public.toTopE.find("a").bind("click.QD_infinityScroll", function () {
jQuery("html,body").animate({
scrollTop: 0
}, "slow");
return false;
});
};
var getSearchUrl = function () {
"use strict";
var url;
var preg = /\/buscapagina\?.+&PageNumber=/i;
var pregCollection = /\/paginaprateleira\?.+PageNumber=/i;
$("script:not([src])").each(function () {
var content = this.innerHTML;
if (content.indexOf("buscapagina") > -1) {
url = preg.exec(content);
return false;
}
else if (content.indexOf("paginaprateleira") > -1) {
url = pregCollection.exec(content);
return false;
}
});
if (typeof url === "object" && typeof url[0] !== "undefined")
return url[0].replace("paginaprateleira", 'buscapagina');
else {
log("Não foi possível localizar a url de busca da página.\n Tente adicionar o .js ao final da página. \n[Método: getSearchUrl]");
return "";
}
};
var infinityScroll = function () {
"use strict";
$public.searchUrl = (null !== options.searchUrl) ? options.searchUrl : getSearchUrl();
$public.currentStatus = true;
// Quantidade de páginas obtidas na busca
// Obtendo o elemento no HTML que informa o numero que completa o nome da variável
var elementPages = $(".pager[id*=PagerTop]:first").attr("id") || "";
if (elementPages !== "") {
// Obtendo a quantidade de páginas
$public.pages = window["pagecount_" + elementPages.split("_").pop()];
if (typeof $public.pages === "undefined") {
// Buscando a quantidade de página dentro de "window" caso não tenha encontrado a variável com o ID obtido no elemento de paginação
for (var i in window)
if (/pagecount_[0-9]+/.test(i)) {
$public.pages = window[i];
break;
}
}
}
// Caso não seja possível obter uma página, é definido um valor gigantesco para que a parada seja feita automáticamente
if (typeof $public.pages === "undefined")
$public.pages = 9999999999999;
var getShelf = function () {
if (!$public.allowNewPage)
return;
$(window).trigger('QuatroDigital.is_getShelf');
};
$(window).on('QuatroDigital.is_getShelf', function () {
if (!$public.currentStatus)
return;
var currentItems = $this.find(options.lastShelf);
if (currentItems.length < 1) {
log("Última Prateleira/Vitrine não encontrada \n (" + currentItems.selector + ")");
return false;
}
currentItems.after(elemLoading);
$public.currentStatus = false;
var requestedPage = $public.currentPage;
$.ajax({
url: $public.searchUrl.replace(/pagenumber\=[0-9]*/i, "PageNumber=" + $public.currentPage),
dataType: "html",
success: function (data) {
if (data.trim().length < 1) {
$public.moreResults = false;
log("Não existem mais resultados a partir da página: " + requestedPage, "Aviso");
$(window).trigger("QuatroDigital.is_noMoreResults");
}
else
options.insertContent(currentItems, data);
$public.currentStatus = true;
elemLoading.remove();
},
error: function () {
log("Houve um erro na requisição Ajax de uma nova página.");
},
complete: function (jqXHR, textStatus) {
options.callback();
$(window).trigger("QuatroDigital.is_Callback", [jqXHR, textStatus]);
}
});
$public.currentPage++;
});
if (typeof options.paginate === "function")
options.paginate(
function () {
if ($public.currentPage <= $public.pages && $public.moreResults) {
getShelf();
return true;
}
return false;
}
);
else {
var scrollTimeout = 0;
$htmlWrapper.bind("scroll.QD_infinityScroll_paginate", function () {
clearTimeout(scrollTimeout);
scrollTimeout = setTimeout(function () {
if ($public.currentPage <= $public.pages && $public.moreResults && options.authorizeScroll() && ($window.scrollTop() + $window.height()) >= options.getShelfHeight($this))
getShelf();
}, 70);
});
}
}
scrollToTop();
infinityScroll();
$(window).trigger("QuatroDigital.is_ready");
$public.ready = true;
return $this;
};
// Anulando a função de paginação da VTEX
$(document).ajaxSend(function (e, request, settings) {
if (settings.url.indexOf("PageNumber") > -1 && settings.url.search(/PageNumber\=[^0-9]+/) > 0)
request.abort();
});
// Anula função da VTEX que faz rolagem na página após paginar
window.goToTopPage = function () { };
$(function () {
window.goToTopPage = function () { };
});
})(jQuery);