1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 07:54:24 +03:00
ifhub.club/application/frontend/common/js/more.js

124 lines
3.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Подгрузка контента
*
* @module more
*
* @license GNU General Public License, version 2
* @copyright 2013 OOO "ЛС-СОФТ" {@link http://livestreetcms.com}
* @author Denis Shakhov <denis.shakhov@gmail.com>
*/
(function($) {
"use strict";
$.widget( "livestreet.more", {
/**
* Дефолтные опции
*/
options: {
// Селектор блока с содержимым
target: null,
// Добавление контента в конец/начало контейнера
// true - в конец
// false - в начало
append: true,
// Ссылка
url: null,
// Название переменной с результатом
result: 'sHtml',
// Параметры запроса
params: {},
// Проксирующие параметры
proxy: {}
},
/**
* Конструктор
*
* @constructor
* @private
*/
_create: function () {
this.options = $.extend({}, this.options, ls.utils.getDataOptions(this.element, this.widgetName));
this.options.proxy = $.extend({}, this.options.proxy, ls.utils.getDataOptions(this.element, 'proxy'));
this.target = $( this.options.target );
this.counter = this.element.find('.js-more-count');
this._on({
click: function (e) {
! this.isLocked && this.load();
e.preventDefault();
}
});
},
/**
* Блокирует блок подгрузки
*/
lock: function () {
this.isLocked = true;
this.element.addClass(ls.options.classes.states.loading);
},
/**
* Разблокировывает блок подгрузки
*/
unlock: function () {
this.isLocked = false;
this.element.removeClass(ls.options.classes.states.loading);
},
/**
* Подгрузка
*/
load: function () {
this._trigger("beforeload", null, this);
this.options.params = $.extend({}, this.options.params, ls.utils.getDataOptions(this.element, 'param'));
this.lock();
var params=$.extend({}, this.options.params, this.options.proxy);
ls.ajax.load(this.options.url, params, function (oResponse) {
if (oResponse.iCountLoaded > 0) {
var html=$('<div></div>').html($.trim(oResponse[this.options.result]));
if (html.find(this.options.target).length) {
html=html.find(this.options.target).first();
}
this.target[ this.options.append ? 'append' : 'prepend' ](html.html());
this.element.data('param-i-last-id', oResponse.iLastId);
// Обновляем счетчик
if (this.counter.length) {
var iCountLeft = parseInt(this.counter.text(), 10) - oResponse.iCountLoaded;
if (iCountLeft <= 0) {
this.element.remove();
} else {
this.counter.text(iCountLeft);
}
}
// Обновляем параметры
$.each(this.options.proxy,function(k,v){
if (oResponse[k]) {
this.options.proxy[k]=oResponse[k];
}
}.bind(this));
if (oResponse.bHideMore) {
this.element.remove();
}
} else {
// Для блоков без счетчиков
ls.msg.notice(null, 'Больше нечего подгружать');
this.element.remove();
}
this.unlock();
this._trigger("afterload", null, { context: this, response: oResponse });
}.bind(this));
}
});
})(jQuery);