mirror of https://github.com/ColorlibHQ/AdminLTE
165 lines
4.0 KiB
JavaScript
165 lines
4.0 KiB
JavaScript
/**
|
||
* --------------------------------------------
|
||
* AdminLTE CardRefresh.js
|
||
* License MIT
|
||
* --------------------------------------------
|
||
*/
|
||
|
||
const CardRefresh = (($) => {
|
||
/**
|
||
* Constants
|
||
* ====================================================
|
||
*/
|
||
|
||
const NAME = 'CardRefresh'
|
||
const DATA_KEY = 'lte.cardrefresh'
|
||
const EVENT_KEY = `.${DATA_KEY}`
|
||
const JQUERY_NO_CONFLICT = $.fn[NAME]
|
||
|
||
const Event = {
|
||
LOADED: `loaded${EVENT_KEY}`,
|
||
OVERLAY_ADDED: `overlay.added${EVENT_KEY}`,
|
||
OVERLAY_REMOVED: `overlay.removed${EVENT_KEY}`,
|
||
}
|
||
|
||
const ClassName = {
|
||
CARD: 'card',
|
||
}
|
||
|
||
const Selector = {
|
||
CARD: `.${ClassName.CARD}`,
|
||
DATA_REFRESH: '[data-card-widget="card-refresh"]',
|
||
}
|
||
|
||
const Default = {
|
||
source: '',
|
||
sourceSelector: '',
|
||
params: {},
|
||
trigger: Selector.DATA_REFRESH,
|
||
content: '.card-body',
|
||
loadInContent: true,
|
||
loadOnInit: true,
|
||
responseType: '',
|
||
overlayTemplate: '<div class="overlay"><i class="fas fa-2x fa-sync-alt fa-spin"></i></div>',
|
||
onLoadStart: function () {
|
||
},
|
||
onLoadDone: function (response) {
|
||
return response;
|
||
}
|
||
}
|
||
|
||
class CardRefresh {
|
||
constructor(element, settings) {
|
||
this._element = element
|
||
this._parent = element.parents(Selector.CARD).first()
|
||
this._settings = $.extend({}, Default, settings)
|
||
this._overlay = $(this._settings.overlayTemplate)
|
||
|
||
if (element.hasClass(ClassName.CARD)) {
|
||
this._parent = element
|
||
}
|
||
|
||
if (this._settings.source === '') {
|
||
throw new Error('Source url was not defined. Please specify a url in your CardRefresh source option.');
|
||
}
|
||
|
||
this._init();
|
||
|
||
if (this._settings.loadOnInit) {
|
||
this.load();
|
||
}
|
||
}
|
||
|
||
load() {
|
||
this._addOverlay()
|
||
this._settings.onLoadStart.call($(this))
|
||
|
||
$.get(this._settings.source, this._settings.params, function (response) {
|
||
if (this._settings.loadInContent) {
|
||
if (this._settings.sourceSelector != '') {
|
||
response = $(response).find(this._settings.sourceSelector).html()
|
||
}
|
||
|
||
this._parent.find(this._settings.content).html(response)
|
||
}
|
||
|
||
this._settings.onLoadDone.call($(this), response)
|
||
this._removeOverlay();
|
||
}.bind(this), this._settings.responseType !== '' && this._settings.responseType)
|
||
|
||
const loadedEvent = $.Event(Event.LOADED)
|
||
$(this._element).trigger(loadedEvent)
|
||
}
|
||
|
||
_addOverlay() {
|
||
this._parent.append(this._overlay)
|
||
|
||
const overlayAddedEvent = $.Event(Event.OVERLAY_ADDED)
|
||
$(this._element).trigger(overlayAddedEvent)
|
||
};
|
||
|
||
_removeOverlay() {
|
||
this._parent.find(this._overlay).remove()
|
||
|
||
const overlayRemovedEvent = $.Event(Event.OVERLAY_REMOVED)
|
||
$(this._element).trigger(overlayRemovedEvent)
|
||
};
|
||
|
||
|
||
// Private
|
||
|
||
_init(card) {
|
||
$(this).find(this._settings.trigger).on('click', () => {
|
||
this.load()
|
||
})
|
||
}
|
||
|
||
// Static
|
||
|
||
static _jQueryInterface(config) {
|
||
let data = $(this).data(DATA_KEY)
|
||
let options = $(this).data()
|
||
|
||
if (!data) {
|
||
data = new CardRefresh($(this), options)
|
||
$(this).data(DATA_KEY, typeof config === 'string' ? data: config)
|
||
}
|
||
|
||
if (typeof config === 'string' && config.match(/load/)) {
|
||
data[config]()
|
||
} else if (typeof config === 'object') {
|
||
data._init($(this))
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Data API
|
||
* ====================================================
|
||
*/
|
||
|
||
$(document).on('click', Selector.DATA_REFRESH, function (event) {
|
||
if (event) {
|
||
event.preventDefault()
|
||
}
|
||
|
||
CardRefresh._jQueryInterface.call($(this), 'load')
|
||
})
|
||
|
||
/**
|
||
* jQuery API
|
||
* ====================================================
|
||
*/
|
||
|
||
$.fn[NAME] = CardRefresh._jQueryInterface
|
||
$.fn[NAME].Constructor = CardRefresh
|
||
$.fn[NAME].noConflict = function () {
|
||
$.fn[NAME] = JQUERY_NO_CONFLICT
|
||
return CardRefresh._jQueryInterface
|
||
}
|
||
|
||
return CardRefresh
|
||
})(jQuery)
|
||
|
||
export default CardRefresh
|