Remove zepto ajax calls
This commit is contained in:
parent
e08161aec2
commit
cbc7555cf2
@ -119,9 +119,10 @@ class JSMin extends BaseMin {
|
|||||||
$error_obj = json_decode($error_json) ?: (object)[];
|
$error_obj = json_decode($error_json) ?: (object)[];
|
||||||
|
|
||||||
// Show error if exists
|
// Show error if exists
|
||||||
if ( ! empty($error_obj->errors))
|
if ( ! empty($error_obj->errors) || ! empty($error_obj->serverErrors))
|
||||||
{
|
{
|
||||||
$error_json = json_encode($error_obj, JSON_PRETTY_PRINT);
|
$error_json = json_encode($error_obj, JSON_PRETTY_PRINT);
|
||||||
|
header('Content-type: application/javascript');
|
||||||
echo "console.error(${error_json});";
|
echo "console.error(${error_json});";
|
||||||
die();
|
die();
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,8 @@
|
|||||||
|
|
||||||
const search = (tempHtml, query) => {
|
const search = (tempHtml, query) => {
|
||||||
$('.cssload-loader').removeAttr('hidden');
|
$('.cssload-loader').removeAttr('hidden');
|
||||||
$.get(AnimeClient.url('/collection/search'), {'query':query}, (searchResults, status) => {
|
AnimeClient.get(AnimeClient.url('/collection/search'), {'query':query}, (searchResults, status) => {
|
||||||
|
searchResults = JSON.parse(searchResults);
|
||||||
$('.cssload-loader').attr('hidden', 'hidden');
|
$('.cssload-loader').attr('hidden', 'hidden');
|
||||||
|
|
||||||
// Give mustache a key to iterate over
|
// Give mustache a key to iterate over
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
// Action to increment episode count
|
// Action to increment episode count
|
||||||
$('body.anime.list').on('click', '.plus_one', function(e) {
|
AnimeClient.on('body.anime.list', 'click', '.plus_one', function(e) {
|
||||||
let self = this;
|
let self = this;
|
||||||
let this_sel = $(this);
|
let this_sel = $(this);
|
||||||
let parent_sel = $(this).closest('article, td');
|
let parent_sel = $(this).closest('article, td');
|
||||||
|
@ -27,7 +27,7 @@ AnimeClient = (function (ac) {
|
|||||||
config = config || {};
|
config = config || {};
|
||||||
config.data = config.data || {};
|
config.data = config.data || {};
|
||||||
config.type = config.type || 'GET';
|
config.type = config.type || 'GET';
|
||||||
config.dataType = config.dataType || 'json';
|
config.dataType = config.dataType || '';
|
||||||
config.success = config.success || ac.noop;
|
config.success = config.success || ac.noop;
|
||||||
config.error = config.error || ac.noop;
|
config.error = config.error || ac.noop;
|
||||||
|
|
||||||
@ -44,10 +44,18 @@ AnimeClient = (function (ac) {
|
|||||||
|
|
||||||
request.onreadystatechange = () => {
|
request.onreadystatechange = () => {
|
||||||
if (request.readyState === 4) {
|
if (request.readyState === 4) {
|
||||||
if (request.status > 400) {
|
let responseText = '';
|
||||||
config.error.call(request.statusText, request.statusText, request.response);
|
|
||||||
|
if (request.responseType == 'json') {
|
||||||
|
responseText = JSON.parse(request.responseText);
|
||||||
} else {
|
} else {
|
||||||
config.success.call(request.responseText, request.responseText, request.status);
|
responseText = request.responseText;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (request.status > 400) {
|
||||||
|
config.error.call(null, request.statusText, request.response);
|
||||||
|
} else {
|
||||||
|
config.success.call(null, responseText, request.status);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -900,678 +900,3 @@ var Zepto = (function() {
|
|||||||
|
|
||||||
window.Zepto = Zepto
|
window.Zepto = Zepto
|
||||||
window.$ === undefined && (window.$ = Zepto)
|
window.$ === undefined && (window.$ = Zepto)
|
||||||
|
|
||||||
;(function($){
|
|
||||||
var _zid = 1, undefined,
|
|
||||||
slice = Array.prototype.slice,
|
|
||||||
isFunction = $.isFunction,
|
|
||||||
isString = function(obj){ return typeof obj == 'string' },
|
|
||||||
handlers = {},
|
|
||||||
specialEvents={},
|
|
||||||
focusinSupported = 'onfocusin' in window,
|
|
||||||
focus = { focus: 'focusin', blur: 'focusout' },
|
|
||||||
hover = { mouseenter: 'mouseover', mouseleave: 'mouseout' }
|
|
||||||
|
|
||||||
specialEvents.click = specialEvents.mousedown = specialEvents.mouseup = specialEvents.mousemove = 'MouseEvents'
|
|
||||||
|
|
||||||
function zid(element) {
|
|
||||||
return element._zid || (element._zid = _zid++)
|
|
||||||
}
|
|
||||||
function findHandlers(element, event, fn, selector) {
|
|
||||||
event = parse(event)
|
|
||||||
if (event.ns) var matcher = matcherFor(event.ns)
|
|
||||||
return (handlers[zid(element)] || []).filter(function(handler) {
|
|
||||||
return handler
|
|
||||||
&& (!event.e || handler.e == event.e)
|
|
||||||
&& (!event.ns || matcher.test(handler.ns))
|
|
||||||
&& (!fn || zid(handler.fn) === zid(fn))
|
|
||||||
&& (!selector || handler.sel == selector)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
function parse(event) {
|
|
||||||
var parts = ('' + event).split('.')
|
|
||||||
return {e: parts[0], ns: parts.slice(1).sort().join(' ')}
|
|
||||||
}
|
|
||||||
function matcherFor(ns) {
|
|
||||||
return new RegExp('(?:^| )' + ns.replace(' ', ' .* ?') + '(?: |$)')
|
|
||||||
}
|
|
||||||
|
|
||||||
function eventCapture(handler, captureSetting) {
|
|
||||||
return handler.del &&
|
|
||||||
(!focusinSupported && (handler.e in focus)) ||
|
|
||||||
!!captureSetting
|
|
||||||
}
|
|
||||||
|
|
||||||
function realEvent(type) {
|
|
||||||
return hover[type] || (focusinSupported && focus[type]) || type
|
|
||||||
}
|
|
||||||
|
|
||||||
function add(element, events, fn, data, selector, delegator, capture){
|
|
||||||
var id = zid(element), set = (handlers[id] || (handlers[id] = []))
|
|
||||||
events.split(/\s/).forEach(function(event){
|
|
||||||
if (event == 'ready') return $(document).ready(fn)
|
|
||||||
var handler = parse(event)
|
|
||||||
handler.fn = fn
|
|
||||||
handler.sel = selector
|
|
||||||
// emulate mouseenter, mouseleave
|
|
||||||
if (handler.e in hover) fn = function(e){
|
|
||||||
var related = e.relatedTarget
|
|
||||||
if (!related || (related !== this && !$.contains(this, related)))
|
|
||||||
return handler.fn.apply(this, arguments)
|
|
||||||
}
|
|
||||||
handler.del = delegator
|
|
||||||
var callback = delegator || fn
|
|
||||||
handler.proxy = function(e){
|
|
||||||
e = compatible(e)
|
|
||||||
if (e.isImmediatePropagationStopped()) return
|
|
||||||
e.data = data
|
|
||||||
var result = callback.apply(element, e._args == undefined ? [e] : [e].concat(e._args))
|
|
||||||
if (result === false) e.preventDefault(), e.stopPropagation()
|
|
||||||
return result
|
|
||||||
}
|
|
||||||
handler.i = set.length
|
|
||||||
set.push(handler)
|
|
||||||
if ('addEventListener' in element)
|
|
||||||
element.addEventListener(realEvent(handler.e), handler.proxy, eventCapture(handler, capture))
|
|
||||||
})
|
|
||||||
}
|
|
||||||
function remove(element, events, fn, selector, capture){
|
|
||||||
var id = zid(element)
|
|
||||||
;(events || '').split(/\s/).forEach(function(event){
|
|
||||||
findHandlers(element, event, fn, selector).forEach(function(handler){
|
|
||||||
delete handlers[id][handler.i]
|
|
||||||
if ('removeEventListener' in element)
|
|
||||||
element.removeEventListener(realEvent(handler.e), handler.proxy, eventCapture(handler, capture))
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
$.event = { add: add, remove: remove }
|
|
||||||
|
|
||||||
$.proxy = function(fn, context) {
|
|
||||||
var args = (2 in arguments) && slice.call(arguments, 2)
|
|
||||||
if (isFunction(fn)) {
|
|
||||||
var proxyFn = function(){ return fn.apply(context, args ? args.concat(slice.call(arguments)) : arguments) }
|
|
||||||
proxyFn._zid = zid(fn)
|
|
||||||
return proxyFn
|
|
||||||
} else if (isString(context)) {
|
|
||||||
if (args) {
|
|
||||||
args.unshift(fn[context], fn)
|
|
||||||
return $.proxy.apply(null, args)
|
|
||||||
} else {
|
|
||||||
return $.proxy(fn[context], fn)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
throw new TypeError("expected function")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$.fn.bind = function(event, data, callback){
|
|
||||||
return this.on(event, data, callback)
|
|
||||||
}
|
|
||||||
$.fn.unbind = function(event, callback){
|
|
||||||
return this.off(event, callback)
|
|
||||||
}
|
|
||||||
$.fn.one = function(event, selector, data, callback){
|
|
||||||
return this.on(event, selector, data, callback, 1)
|
|
||||||
}
|
|
||||||
|
|
||||||
var returnTrue = function(){return true},
|
|
||||||
returnFalse = function(){return false},
|
|
||||||
ignoreProperties = /^([A-Z]|returnValue$|layer[XY]$)/,
|
|
||||||
eventMethods = {
|
|
||||||
preventDefault: 'isDefaultPrevented',
|
|
||||||
stopImmediatePropagation: 'isImmediatePropagationStopped',
|
|
||||||
stopPropagation: 'isPropagationStopped'
|
|
||||||
}
|
|
||||||
|
|
||||||
function compatible(event, source) {
|
|
||||||
if (source || !event.isDefaultPrevented) {
|
|
||||||
source || (source = event)
|
|
||||||
|
|
||||||
$.each(eventMethods, function(name, predicate) {
|
|
||||||
var sourceMethod = source[name]
|
|
||||||
event[name] = function(){
|
|
||||||
this[predicate] = returnTrue
|
|
||||||
return sourceMethod && sourceMethod.apply(source, arguments)
|
|
||||||
}
|
|
||||||
event[predicate] = returnFalse
|
|
||||||
})
|
|
||||||
|
|
||||||
if (source.defaultPrevented !== undefined ? source.defaultPrevented :
|
|
||||||
'returnValue' in source ? source.returnValue === false :
|
|
||||||
source.getPreventDefault && source.getPreventDefault())
|
|
||||||
event.isDefaultPrevented = returnTrue
|
|
||||||
}
|
|
||||||
return event
|
|
||||||
}
|
|
||||||
|
|
||||||
function createProxy(event) {
|
|
||||||
var key, proxy = { originalEvent: event }
|
|
||||||
for (key in event)
|
|
||||||
if (!ignoreProperties.test(key) && event[key] !== undefined) proxy[key] = event[key]
|
|
||||||
|
|
||||||
return compatible(proxy, event)
|
|
||||||
}
|
|
||||||
|
|
||||||
$.fn.delegate = function(selector, event, callback){
|
|
||||||
return this.on(event, selector, callback)
|
|
||||||
}
|
|
||||||
$.fn.undelegate = function(selector, event, callback){
|
|
||||||
return this.off(event, selector, callback)
|
|
||||||
}
|
|
||||||
|
|
||||||
$.fn.live = function(event, callback){
|
|
||||||
$(document.body).delegate(this.selector, event, callback)
|
|
||||||
return this
|
|
||||||
}
|
|
||||||
$.fn.die = function(event, callback){
|
|
||||||
$(document.body).undelegate(this.selector, event, callback)
|
|
||||||
return this
|
|
||||||
}
|
|
||||||
|
|
||||||
$.fn.on = function(event, selector, data, callback, one){
|
|
||||||
var autoRemove, delegator, $this = this
|
|
||||||
if (event && !isString(event)) {
|
|
||||||
$.each(event, function(type, fn){
|
|
||||||
$this.on(type, selector, data, fn, one)
|
|
||||||
})
|
|
||||||
return $this
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isString(selector) && !isFunction(callback) && callback !== false)
|
|
||||||
callback = data, data = selector, selector = undefined
|
|
||||||
if (callback === undefined || data === false)
|
|
||||||
callback = data, data = undefined
|
|
||||||
|
|
||||||
if (callback === false) callback = returnFalse
|
|
||||||
|
|
||||||
return $this.each(function(_, element){
|
|
||||||
if (one) autoRemove = function(e){
|
|
||||||
remove(element, e.type, callback)
|
|
||||||
return callback.apply(this, arguments)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (selector) delegator = function(e){
|
|
||||||
var evt, match = $(e.target).closest(selector, element).get(0)
|
|
||||||
if (match && match !== element) {
|
|
||||||
evt = $.extend(createProxy(e), {currentTarget: match, liveFired: element})
|
|
||||||
return (autoRemove || callback).apply(match, [evt].concat(slice.call(arguments, 1)))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
add(element, event, callback, data, selector, delegator || autoRemove)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
$.fn.off = function(event, selector, callback){
|
|
||||||
var $this = this
|
|
||||||
if (event && !isString(event)) {
|
|
||||||
$.each(event, function(type, fn){
|
|
||||||
$this.off(type, selector, fn)
|
|
||||||
})
|
|
||||||
return $this
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isString(selector) && !isFunction(callback) && callback !== false)
|
|
||||||
callback = selector, selector = undefined
|
|
||||||
|
|
||||||
if (callback === false) callback = returnFalse
|
|
||||||
|
|
||||||
return $this.each(function(){
|
|
||||||
remove(this, event, callback, selector)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
$.fn.trigger = function(event, args){
|
|
||||||
event = (isString(event) || $.isPlainObject(event)) ? $.Event(event) : compatible(event)
|
|
||||||
event._args = args
|
|
||||||
return this.each(function(){
|
|
||||||
// handle focus(), blur() by calling them directly
|
|
||||||
if (event.type in focus && typeof this[event.type] == "function") this[event.type]()
|
|
||||||
// items in the collection might not be DOM elements
|
|
||||||
else if ('dispatchEvent' in this) this.dispatchEvent(event)
|
|
||||||
else $(this).triggerHandler(event, args)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// triggers event handlers on current element just as if an event occurred,
|
|
||||||
// doesn't trigger an actual event, doesn't bubble
|
|
||||||
$.fn.triggerHandler = function(event, args){
|
|
||||||
var e, result
|
|
||||||
this.each(function(i, element){
|
|
||||||
e = createProxy(isString(event) ? $.Event(event) : event)
|
|
||||||
e._args = args
|
|
||||||
e.target = element
|
|
||||||
$.each(findHandlers(element, event.type || event), function(i, handler){
|
|
||||||
result = handler.proxy(e)
|
|
||||||
if (e.isImmediatePropagationStopped()) return false
|
|
||||||
})
|
|
||||||
})
|
|
||||||
return result
|
|
||||||
}
|
|
||||||
|
|
||||||
// shortcut methods for `.bind(event, fn)` for each event type
|
|
||||||
;('focusin focusout focus blur load resize scroll unload click dblclick '+
|
|
||||||
'mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave '+
|
|
||||||
'change select keydown keypress keyup error').split(' ').forEach(function(event) {
|
|
||||||
$.fn[event] = function(callback) {
|
|
||||||
return (0 in arguments) ?
|
|
||||||
this.bind(event, callback) :
|
|
||||||
this.trigger(event)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
$.Event = function(type, props) {
|
|
||||||
if (!isString(type)) props = type, type = props.type
|
|
||||||
var event = document.createEvent(specialEvents[type] || 'Events'), bubbles = true
|
|
||||||
if (props) for (var name in props) (name == 'bubbles') ? (bubbles = !!props[name]) : (event[name] = props[name])
|
|
||||||
event.initEvent(type, bubbles, true)
|
|
||||||
return compatible(event)
|
|
||||||
}
|
|
||||||
|
|
||||||
})(Zepto)
|
|
||||||
|
|
||||||
;(function($){
|
|
||||||
var jsonpID = 0,
|
|
||||||
document = window.document,
|
|
||||||
key,
|
|
||||||
name,
|
|
||||||
rscript = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
|
|
||||||
scriptTypeRE = /^(?:text|application)\/javascript/i,
|
|
||||||
xmlTypeRE = /^(?:text|application)\/xml/i,
|
|
||||||
jsonType = 'application/json',
|
|
||||||
htmlType = 'text/html',
|
|
||||||
blankRE = /^\s*$/,
|
|
||||||
originAnchor = document.createElement('a')
|
|
||||||
|
|
||||||
originAnchor.href = window.location.href
|
|
||||||
|
|
||||||
// trigger a custom event and return false if it was cancelled
|
|
||||||
function triggerAndReturn(context, eventName, data) {
|
|
||||||
var event = $.Event(eventName)
|
|
||||||
$(context).trigger(event, data)
|
|
||||||
return !event.isDefaultPrevented()
|
|
||||||
}
|
|
||||||
|
|
||||||
// trigger an Ajax "global" event
|
|
||||||
function triggerGlobal(settings, context, eventName, data) {
|
|
||||||
if (settings.global) return triggerAndReturn(context || document, eventName, data)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Number of active Ajax requests
|
|
||||||
$.active = 0
|
|
||||||
|
|
||||||
function ajaxStart(settings) {
|
|
||||||
if (settings.global && $.active++ === 0) triggerGlobal(settings, null, 'ajaxStart')
|
|
||||||
}
|
|
||||||
function ajaxStop(settings) {
|
|
||||||
if (settings.global && !(--$.active)) triggerGlobal(settings, null, 'ajaxStop')
|
|
||||||
}
|
|
||||||
|
|
||||||
// triggers an extra global event "ajaxBeforeSend" that's like "ajaxSend" but cancelable
|
|
||||||
function ajaxBeforeSend(xhr, settings) {
|
|
||||||
var context = settings.context
|
|
||||||
if (settings.beforeSend.call(context, xhr, settings) === false ||
|
|
||||||
triggerGlobal(settings, context, 'ajaxBeforeSend', [xhr, settings]) === false)
|
|
||||||
return false
|
|
||||||
|
|
||||||
triggerGlobal(settings, context, 'ajaxSend', [xhr, settings])
|
|
||||||
}
|
|
||||||
function ajaxSuccess(data, xhr, settings, deferred) {
|
|
||||||
var context = settings.context, status = 'success'
|
|
||||||
settings.success.call(context, data, status, xhr)
|
|
||||||
if (deferred) deferred.resolveWith(context, [data, status, xhr])
|
|
||||||
triggerGlobal(settings, context, 'ajaxSuccess', [xhr, settings, data])
|
|
||||||
ajaxComplete(status, xhr, settings)
|
|
||||||
}
|
|
||||||
// type: "timeout", "error", "abort", "parsererror"
|
|
||||||
function ajaxError(error, type, xhr, settings, deferred) {
|
|
||||||
var context = settings.context
|
|
||||||
settings.error.call(context, xhr, type, error)
|
|
||||||
if (deferred) deferred.rejectWith(context, [xhr, type, error])
|
|
||||||
triggerGlobal(settings, context, 'ajaxError', [xhr, settings, error || type])
|
|
||||||
ajaxComplete(type, xhr, settings)
|
|
||||||
}
|
|
||||||
// status: "success", "notmodified", "error", "timeout", "abort", "parsererror"
|
|
||||||
function ajaxComplete(status, xhr, settings) {
|
|
||||||
var context = settings.context
|
|
||||||
settings.complete.call(context, xhr, status)
|
|
||||||
triggerGlobal(settings, context, 'ajaxComplete', [xhr, settings])
|
|
||||||
ajaxStop(settings)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Empty function, used as default callback
|
|
||||||
function empty() {}
|
|
||||||
|
|
||||||
$.ajaxJSONP = function(options, deferred){
|
|
||||||
if (!('type' in options)) return $.ajax(options)
|
|
||||||
|
|
||||||
var _callbackName = options.jsonpCallback,
|
|
||||||
callbackName = ($.isFunction(_callbackName) ?
|
|
||||||
_callbackName() : _callbackName) || ('jsonp' + (++jsonpID)),
|
|
||||||
script = document.createElement('script'),
|
|
||||||
originalCallback = window[callbackName],
|
|
||||||
responseData,
|
|
||||||
abort = function(errorType) {
|
|
||||||
$(script).triggerHandler('error', errorType || 'abort')
|
|
||||||
},
|
|
||||||
xhr = { abort: abort }, abortTimeout
|
|
||||||
|
|
||||||
if (deferred) deferred.promise(xhr)
|
|
||||||
|
|
||||||
$(script).on('load error', function(e, errorType){
|
|
||||||
clearTimeout(abortTimeout)
|
|
||||||
$(script).off().remove()
|
|
||||||
|
|
||||||
if (e.type == 'error' || !responseData) {
|
|
||||||
ajaxError(null, errorType || 'error', xhr, options, deferred)
|
|
||||||
} else {
|
|
||||||
ajaxSuccess(responseData[0], xhr, options, deferred)
|
|
||||||
}
|
|
||||||
|
|
||||||
window[callbackName] = originalCallback
|
|
||||||
if (responseData && $.isFunction(originalCallback))
|
|
||||||
originalCallback(responseData[0])
|
|
||||||
|
|
||||||
originalCallback = responseData = undefined
|
|
||||||
})
|
|
||||||
|
|
||||||
if (ajaxBeforeSend(xhr, options) === false) {
|
|
||||||
abort('abort')
|
|
||||||
return xhr
|
|
||||||
}
|
|
||||||
|
|
||||||
window[callbackName] = function(){
|
|
||||||
responseData = arguments
|
|
||||||
}
|
|
||||||
|
|
||||||
script.src = options.url.replace(/\?(.+)=\?/, '?$1=' + callbackName)
|
|
||||||
document.head.appendChild(script)
|
|
||||||
|
|
||||||
if (options.timeout > 0) abortTimeout = setTimeout(function(){
|
|
||||||
abort('timeout')
|
|
||||||
}, options.timeout)
|
|
||||||
|
|
||||||
return xhr
|
|
||||||
}
|
|
||||||
|
|
||||||
$.ajaxSettings = {
|
|
||||||
// Default type of request
|
|
||||||
type: 'GET',
|
|
||||||
// Callback that is executed before request
|
|
||||||
beforeSend: empty,
|
|
||||||
// Callback that is executed if the request succeeds
|
|
||||||
success: empty,
|
|
||||||
// Callback that is executed the the server drops error
|
|
||||||
error: empty,
|
|
||||||
// Callback that is executed on request complete (both: error and success)
|
|
||||||
complete: empty,
|
|
||||||
// The context for the callbacks
|
|
||||||
context: null,
|
|
||||||
// Whether to trigger "global" Ajax events
|
|
||||||
global: true,
|
|
||||||
// Transport
|
|
||||||
xhr: function () {
|
|
||||||
return new window.XMLHttpRequest()
|
|
||||||
},
|
|
||||||
// MIME types mapping
|
|
||||||
// IIS returns Javascript as "application/x-javascript"
|
|
||||||
accepts: {
|
|
||||||
script: 'text/javascript, application/javascript, application/x-javascript',
|
|
||||||
json: jsonType,
|
|
||||||
xml: 'application/xml, text/xml',
|
|
||||||
html: htmlType,
|
|
||||||
text: 'text/plain'
|
|
||||||
},
|
|
||||||
// Whether the request is to another domain
|
|
||||||
crossDomain: false,
|
|
||||||
// Default timeout
|
|
||||||
timeout: 0,
|
|
||||||
// Whether data should be serialized to string
|
|
||||||
processData: true,
|
|
||||||
// Whether the browser should be allowed to cache GET responses
|
|
||||||
cache: true
|
|
||||||
}
|
|
||||||
|
|
||||||
function mimeToDataType(mime) {
|
|
||||||
if (mime) mime = mime.split(';', 2)[0]
|
|
||||||
return mime && ( mime == htmlType ? 'html' :
|
|
||||||
mime == jsonType ? 'json' :
|
|
||||||
scriptTypeRE.test(mime) ? 'script' :
|
|
||||||
xmlTypeRE.test(mime) && 'xml' ) || 'text'
|
|
||||||
}
|
|
||||||
|
|
||||||
function appendQuery(url, query) {
|
|
||||||
if (query == '') return url
|
|
||||||
return (url + '&' + query).replace(/[&?]{1,2}/, '?')
|
|
||||||
}
|
|
||||||
|
|
||||||
// serialize payload and append it to the URL for GET requests
|
|
||||||
function serializeData(options) {
|
|
||||||
if (options.processData && options.data && $.type(options.data) != "string")
|
|
||||||
options.data = $.param(options.data, options.traditional)
|
|
||||||
if (options.data && (!options.type || options.type.toUpperCase() == 'GET'))
|
|
||||||
options.url = appendQuery(options.url, options.data), options.data = undefined
|
|
||||||
}
|
|
||||||
|
|
||||||
$.ajax = function(options){
|
|
||||||
var settings = $.extend({}, options || {}),
|
|
||||||
deferred = $.Deferred && $.Deferred(),
|
|
||||||
urlAnchor, hashIndex
|
|
||||||
for (key in $.ajaxSettings) if (settings[key] === undefined) settings[key] = $.ajaxSettings[key]
|
|
||||||
|
|
||||||
ajaxStart(settings)
|
|
||||||
|
|
||||||
if (!settings.crossDomain) {
|
|
||||||
urlAnchor = document.createElement('a')
|
|
||||||
urlAnchor.href = settings.url
|
|
||||||
// cleans up URL for .href (IE only), see https://github.com/madrobby/zepto/pull/1049
|
|
||||||
urlAnchor.href = urlAnchor.href
|
|
||||||
settings.crossDomain = (originAnchor.protocol + '//' + originAnchor.host) !== (urlAnchor.protocol + '//' + urlAnchor.host)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!settings.url) settings.url = window.location.toString()
|
|
||||||
if ((hashIndex = settings.url.indexOf('#')) > -1) settings.url = settings.url.slice(0, hashIndex)
|
|
||||||
serializeData(settings)
|
|
||||||
|
|
||||||
var dataType = settings.dataType, hasPlaceholder = /\?.+=\?/.test(settings.url)
|
|
||||||
if (hasPlaceholder) dataType = 'jsonp'
|
|
||||||
|
|
||||||
if (settings.cache === false || (
|
|
||||||
(!options || options.cache !== true) &&
|
|
||||||
('script' == dataType || 'jsonp' == dataType)
|
|
||||||
))
|
|
||||||
settings.url = appendQuery(settings.url, '_=' + Date.now())
|
|
||||||
|
|
||||||
if ('jsonp' == dataType) {
|
|
||||||
if (!hasPlaceholder)
|
|
||||||
settings.url = appendQuery(settings.url,
|
|
||||||
settings.jsonp ? (settings.jsonp + '=?') : settings.jsonp === false ? '' : 'callback=?')
|
|
||||||
return $.ajaxJSONP(settings, deferred)
|
|
||||||
}
|
|
||||||
|
|
||||||
var mime = settings.accepts[dataType],
|
|
||||||
headers = { },
|
|
||||||
setHeader = function(name, value) { headers[name.toLowerCase()] = [name, value] },
|
|
||||||
protocol = /^([\w-]+:)\/\//.test(settings.url) ? RegExp.$1 : window.location.protocol,
|
|
||||||
xhr = settings.xhr(),
|
|
||||||
nativeSetHeader = xhr.setRequestHeader,
|
|
||||||
abortTimeout
|
|
||||||
|
|
||||||
if (deferred) deferred.promise(xhr)
|
|
||||||
|
|
||||||
if (!settings.crossDomain) setHeader('X-Requested-With', 'XMLHttpRequest')
|
|
||||||
setHeader('Accept', mime || '*/*')
|
|
||||||
if (mime = settings.mimeType || mime) {
|
|
||||||
if (mime.indexOf(',') > -1) mime = mime.split(',', 2)[0]
|
|
||||||
xhr.overrideMimeType && xhr.overrideMimeType(mime)
|
|
||||||
}
|
|
||||||
if (settings.contentType || (settings.contentType !== false && settings.data && settings.type.toUpperCase() != 'GET'))
|
|
||||||
setHeader('Content-Type', settings.contentType || 'application/x-www-form-urlencoded')
|
|
||||||
|
|
||||||
if (settings.headers) for (name in settings.headers) setHeader(name, settings.headers[name])
|
|
||||||
xhr.setRequestHeader = setHeader
|
|
||||||
|
|
||||||
xhr.onreadystatechange = function(){
|
|
||||||
if (xhr.readyState == 4) {
|
|
||||||
xhr.onreadystatechange = empty
|
|
||||||
clearTimeout(abortTimeout)
|
|
||||||
var result, error = false
|
|
||||||
if ((xhr.status >= 200 && xhr.status < 300) || xhr.status == 304 || (xhr.status == 0 && protocol == 'file:')) {
|
|
||||||
dataType = dataType || mimeToDataType(settings.mimeType || xhr.getResponseHeader('content-type'))
|
|
||||||
|
|
||||||
if (xhr.responseType == 'arraybuffer' || xhr.responseType == 'blob')
|
|
||||||
result = xhr.response
|
|
||||||
else {
|
|
||||||
result = xhr.responseText
|
|
||||||
|
|
||||||
try {
|
|
||||||
// http://perfectionkills.com/global-eval-what-are-the-options/
|
|
||||||
if (dataType == 'script') (1,eval)(result)
|
|
||||||
else if (dataType == 'xml') result = xhr.responseXML
|
|
||||||
else if (dataType == 'json') result = blankRE.test(result) ? null : $.parseJSON(result)
|
|
||||||
} catch (e) { error = e }
|
|
||||||
|
|
||||||
if (error) return ajaxError(error, 'parsererror', xhr, settings, deferred)
|
|
||||||
}
|
|
||||||
|
|
||||||
ajaxSuccess(result, xhr, settings, deferred)
|
|
||||||
} else {
|
|
||||||
ajaxError(xhr.statusText || null, xhr.status ? 'error' : 'abort', xhr, settings, deferred)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ajaxBeforeSend(xhr, settings) === false) {
|
|
||||||
xhr.abort()
|
|
||||||
ajaxError(null, 'abort', xhr, settings, deferred)
|
|
||||||
return xhr
|
|
||||||
}
|
|
||||||
|
|
||||||
if (settings.xhrFields) for (name in settings.xhrFields) xhr[name] = settings.xhrFields[name]
|
|
||||||
|
|
||||||
var async = 'async' in settings ? settings.async : true
|
|
||||||
xhr.open(settings.type, settings.url, async, settings.username, settings.password)
|
|
||||||
|
|
||||||
for (name in headers) nativeSetHeader.apply(xhr, headers[name])
|
|
||||||
|
|
||||||
if (settings.timeout > 0) abortTimeout = setTimeout(function(){
|
|
||||||
xhr.onreadystatechange = empty
|
|
||||||
xhr.abort()
|
|
||||||
ajaxError(null, 'timeout', xhr, settings, deferred)
|
|
||||||
}, settings.timeout)
|
|
||||||
|
|
||||||
// avoid sending empty string (#319)
|
|
||||||
xhr.send(settings.data ? settings.data : null)
|
|
||||||
return xhr
|
|
||||||
}
|
|
||||||
|
|
||||||
// handle optional data/success arguments
|
|
||||||
function parseArguments(url, data, success, dataType) {
|
|
||||||
if ($.isFunction(data)) dataType = success, success = data, data = undefined
|
|
||||||
if (!$.isFunction(success)) dataType = success, success = undefined
|
|
||||||
return {
|
|
||||||
url: url
|
|
||||||
, data: data
|
|
||||||
, success: success
|
|
||||||
, dataType: dataType
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$.get = function(/* url, data, success, dataType */){
|
|
||||||
return $.ajax(parseArguments.apply(null, arguments))
|
|
||||||
}
|
|
||||||
|
|
||||||
$.post = function(/* url, data, success, dataType */){
|
|
||||||
var options = parseArguments.apply(null, arguments)
|
|
||||||
options.type = 'POST'
|
|
||||||
return $.ajax(options)
|
|
||||||
}
|
|
||||||
|
|
||||||
$.getJSON = function(/* url, data, success */){
|
|
||||||
var options = parseArguments.apply(null, arguments)
|
|
||||||
options.dataType = 'json'
|
|
||||||
return $.ajax(options)
|
|
||||||
}
|
|
||||||
|
|
||||||
$.fn.load = function(url, data, success){
|
|
||||||
if (!this.length) return this
|
|
||||||
var self = this, parts = url.split(/\s/), selector,
|
|
||||||
options = parseArguments(url, data, success),
|
|
||||||
callback = options.success
|
|
||||||
if (parts.length > 1) options.url = parts[0], selector = parts[1]
|
|
||||||
options.success = function(response){
|
|
||||||
self.html(selector ?
|
|
||||||
$('<div>').html(response.replace(rscript, "")).find(selector)
|
|
||||||
: response)
|
|
||||||
callback && callback.apply(self, arguments)
|
|
||||||
}
|
|
||||||
$.ajax(options)
|
|
||||||
return this
|
|
||||||
}
|
|
||||||
|
|
||||||
var escape = encodeURIComponent
|
|
||||||
|
|
||||||
function serialize(params, obj, traditional, scope){
|
|
||||||
var type, array = $.isArray(obj), hash = $.isPlainObject(obj)
|
|
||||||
$.each(obj, function(key, value) {
|
|
||||||
type = $.type(value)
|
|
||||||
if (scope) key = traditional ? scope :
|
|
||||||
scope + '[' + (hash || type == 'object' || type == 'array' ? key : '') + ']'
|
|
||||||
// handle data in serializeArray() format
|
|
||||||
if (!scope && array) params.add(value.name, value.value)
|
|
||||||
// recurse into nested objects
|
|
||||||
else if (type == "array" || (!traditional && type == "object"))
|
|
||||||
serialize(params, value, traditional, key)
|
|
||||||
else params.add(key, value)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
$.param = function(obj, traditional){
|
|
||||||
var params = []
|
|
||||||
params.add = function(key, value) {
|
|
||||||
if ($.isFunction(value)) value = value()
|
|
||||||
if (value == null) value = ""
|
|
||||||
this.push(escape(key) + '=' + escape(value))
|
|
||||||
}
|
|
||||||
serialize(params, obj, traditional)
|
|
||||||
return params.join('&').replace(/%20/g, '+')
|
|
||||||
}
|
|
||||||
})(Zepto)
|
|
||||||
|
|
||||||
;(function($){
|
|
||||||
$.fn.serializeArray = function() {
|
|
||||||
var name, type, result = [],
|
|
||||||
add = function(value) {
|
|
||||||
if (value.forEach) return value.forEach(add)
|
|
||||||
result.push({ name: name, value: value })
|
|
||||||
}
|
|
||||||
if (this[0]) $.each(this[0].elements, function(_, field){
|
|
||||||
type = field.type, name = field.name
|
|
||||||
if (name && field.nodeName.toLowerCase() != 'fieldset' &&
|
|
||||||
!field.disabled && type != 'submit' && type != 'reset' && type != 'button' && type != 'file' &&
|
|
||||||
((type != 'radio' && type != 'checkbox') || field.checked))
|
|
||||||
add($(field).val())
|
|
||||||
})
|
|
||||||
return result
|
|
||||||
}
|
|
||||||
|
|
||||||
$.fn.serialize = function(){
|
|
||||||
var result = []
|
|
||||||
this.serializeArray().forEach(function(elm){
|
|
||||||
result.push(encodeURIComponent(elm.name) + '=' + encodeURIComponent(elm.value))
|
|
||||||
})
|
|
||||||
return result.join('&')
|
|
||||||
}
|
|
||||||
|
|
||||||
$.fn.submit = function(callback) {
|
|
||||||
if (0 in arguments) this.bind('submit', callback)
|
|
||||||
else if (this.length) {
|
|
||||||
var event = $.Event('submit')
|
|
||||||
this.eq(0).trigger(event)
|
|
||||||
if (!event.isDefaultPrevented()) this.get(0).submit()
|
|
||||||
}
|
|
||||||
return this
|
|
||||||
}
|
|
||||||
|
|
||||||
})(Zepto)
|
|
||||||
|
@ -4,7 +4,8 @@
|
|||||||
|
|
||||||
const search = (tempHtml, query) => {
|
const search = (tempHtml, query) => {
|
||||||
$('.cssload-loader').removeAttr('hidden');
|
$('.cssload-loader').removeAttr('hidden');
|
||||||
$.get(AnimeClient.url('/manga/search'), {'query':query,}, (searchResults, status) => {
|
AnimeClient.get(AnimeClient.url('/manga/search'), {'query':query,}, (searchResults, status) => {
|
||||||
|
searchResults = JSON.parse(searchResults);
|
||||||
$('.cssload-loader').attr('hidden', 'hidden');
|
$('.cssload-loader').attr('hidden', 'hidden');
|
||||||
|
|
||||||
Mustache.parse(tempHtml);
|
Mustache.parse(tempHtml);
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
$('.manga.list').on('click', '.edit_buttons button', function(e) {
|
AnimeClient.on('.manga.list', 'click', '.edit_buttons button', function(e) {
|
||||||
let this_sel = $(this);
|
let this_sel = $(this);
|
||||||
let parent_sel = $(this).closest("article");
|
let parent_sel = $(this).closest("article");
|
||||||
let manga_id = parent_sel.attr("id").replace("manga-", "");
|
let manga_id = parent_sel.attr("id").replace("manga-", "");
|
||||||
|
@ -12,7 +12,10 @@ describe("AnimeClient Base", () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
describe('AnimeClient.url', () => {
|
describe('AnimeClient.url', () => {
|
||||||
|
it('url method has expected result', () => {
|
||||||
|
let expected = `//${document.location.host}/path`;
|
||||||
|
expect(AnimeClient.url('/path')).toBe(expected);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('AnimeClient.ajax', () => {
|
describe('AnimeClient.ajax', () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user