mangasee-go/fakequery.js

120 lines
4.3 KiB
JavaScript

// FakeQuery...
// So you can render things on the server and not have to rewrite all
// of your code to conditionally use jQuery.
// License: MIT
// var _ = require('underscore');
var document = []
var window = {
history: {},
location: {}
}
var app = {
directive: function() { return },
controller: function() { return }
}
var Cookies = {
get: function() { return },
set: function() { return }
}
var moment = function() { return { unix: function() { return }}}
// These methods return values... we'll return undefined.
var valueMethods = ["val", "attr", "width", "height"];
// These methods return strings... we'll return an empty string.
var stringMethods = ["html", "serialize"];
// Methods returning arrays... we'll return an empty array.
var arrayMethods = ["serializeArray", "toArray"];
// All of the functions contained on the $.fn prototype.
var chainMethods = [
"add", "addBack", "addClass", "after", "ajaxComplete",
"ajaxError", "ajaxSend", "ajaxStart", "ajaxStop", "ajaxSuccess",
"andSelf", "animate", "append", "appendTo", "before",
"bind", "blur", "change", "children", "clearQueue", "click",
"clone", "closest", "contents", "contextmenu",
"css", "data", "dblclick", "delay", "delegate", "dequeue",
"detach", "die", "domManip", "each", "empty", "end", "eq",
"error", "extend", "fadeIn", "fadeOut", "fadeTo", "fadeToggle",
"filter", "find", "first", "focus", "focusin", "focusout", "get",
"has", "hasClass", "hide", "hover", "index",
"innerHeight", "innerWidth", "insertAfter", "insertBefore", "is",
"keydown", "keypress", "keyup", "last", "lazyload", "live",
"load", "map", "mousedown", "mouseenter", "mouseleave",
"mousemove", "mouseout", "mouseover", "mouseup", "next",
"nextAll", "nextUntil", "not", "off", "offset", "offsetParent",
"on", "one", "outerHeight", "outerWidth", "parent", "parents",
"parentsUntil", "position", "prepend", "prependTo", "prev", "prevAll",
"prevUntil", "promise", "prop", "push", "pushStack", "queue", "ready",
"remove", "removeAttr", "removeClass", "removeData", "removeProp",
"replaceAll", "replaceWith", "resize", "scroll", "scrollLeft",
"scrollTop", "select", "show", "siblings", "size", "slice", "slideDown",
"slideToggle", "slideUp", "sort", "splice", "stop", "submit", "text",
"toArray", "toggle", "toggleClass", "trigger", "triggerHandler", "unbind", "undelegate",
"unload", "unwrap", "wrap", "wrapAll", "wrapInner"
];
var coreMethods = [
"Animation", "Callbacks", "Deferred", "Event", "Tween",
"_data", "_queueHooks", "abovethetop", "acceptData", "access", "ajax",
"ajaxPrefilter", "ajaxSetup", "ajaxTransport", "attr", "belowthefold",
"buildFragment", "camelCase", "clean", "cleanData", "clone", "contains",
"css", "data", "dequeue", "dir", "error", "extend", "filter",
"find", "fx", "get", "getJSON", "getScript", "globalEval", "grep",
"hasData", "holdReady", "inArray", "inviewport", "isArray", "isEmptyObject",
"isFunction", "isNumeric", "isPlainObject", "isWindow", "isXMLDoc", "leftofbegin",
"merge", "noConflict", "nodeName", "noop", "now", "param",
"parseHTML", "parseJSON", "parseXML", "post", "prop", "proxy", "queue", "ready",
"removeAttr", "removeData", "removeEvent", "rightoffold", "sibling", "speed",
"style", "sub", "swap", "text", "trim", "type", "uaMatch", "unique", "when"
];
var $ = function(selector, context) {
return new $.fn.init(selector, context);
};
$.fn = $.prototype = {
length: 0
};
_.each(valueMethods, function(item) {
$.fn[item] = function() { return void 0; };
});
_.each(stringMethods, function(item) {
$.fn[item] = function() { return ''; };
});
_.each(arrayMethods, function(item) {
$.fn[item] = function() { return []; };
});
_.each(chainMethods, function(item) {
$.fn[item] = function() { return $(this); };
});
$.fn.init = function(selector, context) {
// Handle $($);
if (selector instanceof $) return selector;
// Handle $(function() {});
if (typeof selector === 'function') {
return setTimeout(selector, 0);
}
// HANDLE: $(""), $(null), $(undefined), $(false), $("anything else")
return this;
};
$.fn.init.prototype = $.fn;
$.extend = function() { return _.extend.apply(_, arguments); };
$.each = function() { return _.each.apply(_, arguments); };
$.map = function() { return _.map.apply(_, arguments); };
$.makeArray = function() { return _.toArray.apply(_, arguments); };
jQuery = $