mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
229 lines
5.5 KiB
JavaScript
229 lines
5.5 KiB
JavaScript
/*
|
|
* October General Utilities
|
|
*/
|
|
|
|
/*
|
|
* Implement "Sweet Alert"
|
|
*/
|
|
|
|
$(window).on('ajaxErrorMessage', function(event, message){
|
|
if (!message) return
|
|
|
|
swal({
|
|
title: message,
|
|
// type: 'error',
|
|
confirmButtonClass: 'btn-default'
|
|
})
|
|
|
|
// Prevent the default alert() message
|
|
event.preventDefault()
|
|
})
|
|
|
|
$(window).on('ajaxConfirmMessage', function(event, message){
|
|
if (!message) return
|
|
|
|
swal({
|
|
title: message,
|
|
// type: 'warning',
|
|
showCancelButton: true,
|
|
confirmButtonClass: 'btn-primary'
|
|
},
|
|
function(isConfirm){
|
|
isConfirm
|
|
? event.promise.resolve()
|
|
: event.promise.reject()
|
|
})
|
|
|
|
// Prevent the default confirm() message
|
|
event.preventDefault()
|
|
return true
|
|
})
|
|
|
|
/*
|
|
* Path helpers
|
|
*/
|
|
|
|
function backendUrl(url) {
|
|
if (typeof backendBasePath === 'undefined' || !backendBasePath)
|
|
return url;
|
|
|
|
if (url.substr(0,1) == '/')
|
|
url = url.substr(1);
|
|
|
|
return backendBasePath + url;
|
|
}
|
|
|
|
/*
|
|
* Asset Manager
|
|
*
|
|
* Usage: assetManager.load({ css:[], js:[], img:[] }, onLoadedCallback)
|
|
*/
|
|
|
|
AssetManager = function() {
|
|
|
|
var o = {
|
|
|
|
load: function(collection, callback) {
|
|
var jsList = (collection.js) ? collection.js : [],
|
|
cssList = (collection.css) ? collection.css : [],
|
|
imgList = (collection.img) ? collection.img : []
|
|
|
|
jsList = $.grep(jsList, function(item){
|
|
return $('head script[src="'+item+'"]').length == 0
|
|
})
|
|
|
|
cssList = $.grep(cssList, function(item){
|
|
return $('head link[href="'+item+'"]').length == 0
|
|
})
|
|
|
|
var cssCounter = 0,
|
|
jsLoaded = false,
|
|
imgLoaded = false
|
|
|
|
if (jsList.length === 0 && cssList.length === 0 && imgList.length === 0) {
|
|
callback && callback()
|
|
return
|
|
}
|
|
|
|
o.loadJavaScript(jsList, function(){
|
|
jsLoaded = true
|
|
checkLoaded()
|
|
})
|
|
|
|
$.each(cssList, function(index, source){
|
|
o.loadStyleSheet(source, function(){
|
|
cssCounter++
|
|
checkLoaded()
|
|
})
|
|
})
|
|
|
|
o.loadImage(imgList, function(){
|
|
imgLoaded = true
|
|
checkLoaded()
|
|
})
|
|
|
|
function checkLoaded() {
|
|
if (!imgLoaded)
|
|
return false
|
|
|
|
if (!jsLoaded)
|
|
return false
|
|
|
|
if (cssCounter < cssList.length)
|
|
return false
|
|
|
|
callback && callback()
|
|
}
|
|
},
|
|
|
|
/*
|
|
* Loads StyleSheet files
|
|
*/
|
|
loadStyleSheet: function(source, callback) {
|
|
var cssElement = document.createElement('link')
|
|
|
|
cssElement.setAttribute('rel', 'stylesheet')
|
|
cssElement.setAttribute('type', 'text/css')
|
|
cssElement.setAttribute('href', source)
|
|
cssElement.addEventListener('load', callback, false)
|
|
|
|
if (typeof cssElement != 'undefined') {
|
|
document.getElementsByTagName('head')[0].appendChild(cssElement)
|
|
}
|
|
|
|
return cssElement
|
|
},
|
|
|
|
/*
|
|
* Loads JavaScript files in sequence
|
|
*/
|
|
loadJavaScript: function(sources, callback) {
|
|
if (sources.length <= 0)
|
|
return callback()
|
|
|
|
var source = sources.shift(),
|
|
jsElement = document.createElement('script');
|
|
|
|
jsElement.setAttribute('type', 'text/javascript')
|
|
jsElement.setAttribute('src', source)
|
|
jsElement.addEventListener('load', function() {
|
|
o.loadJavaScript(sources, callback)
|
|
}, false)
|
|
|
|
if (typeof jsElement != 'undefined') {
|
|
document.getElementsByTagName('head')[0].appendChild(jsElement)
|
|
}
|
|
},
|
|
|
|
/*
|
|
* Loads Image files
|
|
*/
|
|
loadImage: function(sources, callback) {
|
|
if (sources.length <= 0)
|
|
return callback()
|
|
|
|
var loaded = 0
|
|
$.each(sources, function(index, source){
|
|
var img = new Image()
|
|
img.onload = function() {
|
|
if (++loaded == sources.length && callback)
|
|
callback()
|
|
}
|
|
img.src = source
|
|
})
|
|
}
|
|
|
|
};
|
|
|
|
return o;
|
|
};
|
|
|
|
assetManager = new AssetManager();
|
|
|
|
/*
|
|
* Inverse Click Event
|
|
*
|
|
* Calls the handler function if the user has clicked outside the object
|
|
* and not on any of the elements in the exception list.
|
|
*/
|
|
|
|
$.fn.extend({
|
|
clickOutside: function(handler, exceptions) {
|
|
var $this = this;
|
|
|
|
$('body').on('click', function(event) {
|
|
if (exceptions && $.inArray(event.target, exceptions) > -1) {
|
|
return;
|
|
} else if ($.contains($this[0], event.target)) {
|
|
return;
|
|
} else {
|
|
handler(event, $this);
|
|
}
|
|
});
|
|
|
|
return this;
|
|
}
|
|
})
|
|
|
|
/*
|
|
* String escape
|
|
*/
|
|
|
|
if ($.oc === undefined)
|
|
$.oc = {}
|
|
|
|
$.oc.escapeHtmlString = function(string) {
|
|
var htmlEscapes = {
|
|
'&': '&',
|
|
'<': '<',
|
|
'>': '>',
|
|
'"': '"',
|
|
"'": ''',
|
|
'/': '/'
|
|
},
|
|
htmlEscaper = /[&<>"'\/]/g
|
|
|
|
return ('' + string).replace(htmlEscaper, function(match) {
|
|
return htmlEscapes[match];
|
|
})
|
|
} |