kis-js/kis-lite.js

568 lines
10 KiB
JavaScript
Raw Normal View History

2011-12-12 11:47:20 -05:00
/**
Kis JS Keep It Simple JS Library
Copyright Timothy J. Warren
License Public Domain
Version 0.7.0
2011-12-12 11:47:20 -05:00
*/
(function (){
"use strict";
// Most functions rely on a string selector
// which returns html elements. This requires
// document.querySelectorAll or a custom
// selector engine. I choose to just use the
// browser feature, since it is present in
// IE 8+, and all other major browsers
if (typeof document.querySelector === "undefined")
{
return;
}
var $_, $, dcopy, sel;
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
/**
* $_
*
* Constructor function
*
* @constuctor
* @namespace
* @param string selector
* @return object
*/
$_ = function(s)
{
// Have documentElement be default selector, just in case
if (typeof s === "undefined")
2011-12-12 11:47:20 -05:00
{
// Defines a "global" selector for that instance
2012-03-29 12:05:11 -04:00
sel = (typeof $_.el !== "undefined")
2011-12-12 11:47:20 -05:00
? $_.el
: document.documentElement;
}
else
{
sel = $(s);
2011-12-12 11:47:20 -05:00
}
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
// Add the selector to the prototype
$_.prototype.el = sel;
2012-04-06 10:40:53 -04:00
// Use the $_ object as it's own prototype
2011-12-12 11:47:20 -05:00
var self = dcopy($_);
// Give sel to each extension.
2012-03-29 12:05:11 -04:00
for(var i in self)
2011-12-12 11:47:20 -05:00
{
if(typeof self[i] === "object")
{
self[i].el = sel;
2012-03-29 12:05:11 -04:00
}
2011-12-12 11:47:20 -05:00
}
self.el = sel;
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
return self;
};
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
/**
* Simple DOM selector function
*
* @memberOf $_
* @param string selector
* @param object context
* @return object
* @type object
*/
$ = function (a, context)
{
var x, c;
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
if (typeof a != "string" || typeof a === "undefined"){ return a;}
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
//Check for a context of a specific element, otherwise, just run on the document
2012-03-29 12:05:11 -04:00
c = (context != null && context.nodeType === 1)
? context
2011-12-12 11:47:20 -05:00
: document;
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
//Pick the quickest method for each kind of selector
if (a.match(/^#([\w\-]+$)/))
{
return document.getElementById(a.split('#')[1]);
}
else
{
x = c.querySelectorAll(a);
}
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
//Return the single object if applicable
return (x.length === 1) ? x[0] : x;
};
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
/**
* Deep copy/prototypical constructor function
*
* @param object obj
* @private
* @return object
* @type object
*/
dcopy = function(obj)
{
var type, F;
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
if(typeof obj === "undefined")
{
return;
}
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
if(typeof Object.create !== "undefined")
{
return Object.create(obj);
}
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
type = typeof obj;
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
if(type !== "object" && type !== "function")
{
return;
}
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
/**
* @private
*/
F = function(){};
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
F.prototype = obj;
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
return new F();
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
};
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
/**
* Adds the property `obj` to the $_ object, calling it `name`
2012-03-29 12:05:11 -04:00
*
2011-12-12 11:47:20 -05:00
* @param string name
* @param object obj
*/
$_.ext = function(name, obj)
{
obj.el = sel;
$_[name] = obj;
};
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
/**
* Iterates over a $_ object, applying a callback to each item
*
* @name $_.each
* @function
* @param function callback
*/
$_.ext('each', function (callback)
{
if(typeof sel.length !== "undefined" && sel !== window)
{
2012-04-05 16:32:05 -04:00
// Use the native method, if it exists
if(typeof Array.prototype.forEach !== 'undefined')
{
[].forEach.call(sel, callback);
return;
}
2012-04-05 16:32:05 -04:00
// Otherwise, fall back to a for loop
2011-12-12 11:47:20 -05:00
var len = sel.length;
if (len === 0)
{
return;
}
var selx;
for (var x = 0; x < len; x++)
{
selx = (sel.item(x)) ? sel.item(x) : sel[x];
callback.call(selx, selx);
}
}
else
{
callback.call(sel, sel);
}
});
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
/**
* Retrieves the type of the passed variable
*
* @param mixed obj
* @return string
* @type string
*/
2012-03-29 12:05:11 -04:00
$_.type = function(obj)
{
2011-12-12 11:47:20 -05:00
if((function() {return obj && (obj !== this)}).call(obj))
{
//fallback on 'typeof' for truthy primitive values
return (typeof obj).toLowerCase();
}
2012-03-29 12:05:11 -04:00
//Strip x from [object x] and return
2011-12-12 11:47:20 -05:00
return ({}).toString.call(obj).match(/\s([a-z|A-Z]+)/)[1].toLowerCase();
};
//Set global variables
$_ = window.$_ = window.$_ || $_;
$_.$ = $;
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
}());
// --------------------------------------------------------------------------
/**
* A module of various browser polyfills
* @file polyfill.js
*/
/**
* String trim function polyfill
*/
if(typeof String.prototype.trim === "undefined")
{
2011-12-12 11:47:20 -05:00
/**
* @private
2011-12-12 11:47:20 -05:00
*/
String.prototype.trim = function()
2011-12-12 11:47:20 -05:00
{
return this.replace(/^[\s\uFEFF]+|[\s\uFEFF]+$/g, "");
};
}
// --------------------------------------------------------------------------
2012-03-29 12:05:11 -04:00
/**
* Array.isArray polyfill
*/
if (typeof Array.isArray === "undefined")
{
Array.isArray = function(v)
{
return Object.prototype.toString.apply(v) === '[object Array]';
}
}
2011-12-12 11:47:20 -05:00
// --------------------------------------------------------------------------
/**
* Ajax
*
* Module for making ajax requests
*/
(function (){
"use strict";
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
// Don't bother even defining the object if the XMLHttpRequest isn't available
if(typeof window.XMLHttpRequest === "undefined")
{
return;
}
var ajax = {
_do: function (url, data, success_callback, error_callback, isPost)
2011-12-12 11:47:20 -05:00
{
2012-03-29 12:05:11 -04:00
var type,
2011-12-12 11:47:20 -05:00
request = new XMLHttpRequest();
2012-03-29 12:05:11 -04:00
if (typeof success_callback === "undefined")
2011-12-12 11:47:20 -05:00
{
/**
* @private
*/
success_callback = function (){};
2011-12-12 11:47:20 -05:00
}
type = (isPost) ? "POST" : "GET";
2012-11-16 14:02:25 -05:00
2012-11-15 13:42:14 -05:00
if (type === "GET")
{
2012-11-16 14:02:25 -05:00
url += (url.match(/\?/))
? this._serialize(data)
: "?" + this._serialize(data);
2012-11-15 13:42:14 -05:00
}
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
request.open(type, url);
request.onreadystatechange = function ()
{
if (request.readyState === 4)
{
if (request.status === 200)
{
success_callback.call(request.responseText, request.responseText);
}
else
{
if (typeof error_callback !== 'undefined')
{
error_callback.call(request.status, request.status);
}
}
2011-12-12 11:47:20 -05:00
}
};
if (type === "POST")
{
request.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
request.send(this._serialize(data));
}
else
{
request.send(null);
}
},
_serialize: function (data)
{
var name,
value,
pairs = [];
for (name in data)
{
if (!data.hasOwnProperty(name))
{
continue;
}
if (typeof data[name] === "function")
{
continue;
}
value = data[name].toString();
name = encodeURIComponent(name);
value = encodeURIComponent(value);
pairs.push(name + "=" + value);
}
return pairs.join("&");
}
};
/**
* Sends a GET type ajax request
2012-03-29 12:05:11 -04:00
*
2011-12-12 11:47:20 -05:00
* @name get
* @function
* @memberOf $_
* @param string url
* @param object data
* @param function success_callback
* @param function error_callback
2011-12-12 11:47:20 -05:00
*/
$_.ext('get', function (url, data, success_callback, error_callback){
ajax._do(url, data, success_callback, error_callback, false);
2011-12-12 11:47:20 -05:00
});
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
/**
* Sends a POST type ajax request
2012-03-29 12:05:11 -04:00
*
2011-12-12 11:47:20 -05:00
* @name post
* @function
* @memberOf $_
* @param string url
* @param object data
* @param function success_callback
* @param function error_callback
2011-12-12 11:47:20 -05:00
*/
$_.ext('post', function (url, data, success_callback, error_callback){
ajax._do(url, data, success_callback, error_callback, true);
2011-12-12 11:47:20 -05:00
});
/**
2012-04-12 13:12:11 -04:00
* Watches for server-sent events and applies a callback on message
*
* @name sse
* @function
* @memberOf $_
* @param string url
* @param function callback
*/
$_.ext('sse', function(url, callback){
var source;
2012-04-12 13:12:11 -04:00
// Check for server-sent event support
if (typeof EventSource !== 'undefined')
{
source = new EventSource(url);
// Apply the callback
2012-04-03 16:39:20 -04:00
source.onmessage = function(event){
callback.call(event.data, event.data);
2012-04-03 16:39:20 -04:00
};
}
});
2011-12-12 11:47:20 -05:00
}());
// --------------------------------------------------------------------------
/**
* Event
*
* Event api wrapper
2012-03-29 12:05:11 -04:00
* @todo Add method for triggering events
2011-12-12 11:47:20 -05:00
*/
(function (){
"use strict";
var _add_remove, e, _attach_delegate;
2011-12-12 11:47:20 -05:00
// Don't bother defining the methods if event api isn't supports
if (typeof document.addEventListener === "undefined")
2011-12-12 11:47:20 -05:00
{
return false;
2011-12-12 11:47:20 -05:00
}
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
_add_remove = function (sel, event, callback, add)
{
var i, len;
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
if(typeof sel === "undefined")
{
2012-04-26 13:21:47 -04:00
return null;
2011-12-12 11:47:20 -05:00
}
// Multiple events? Run recursively!
2012-02-23 12:42:33 -05:00
if ( ! event.match(/^([\w\-]+)$/))
2011-12-12 11:47:20 -05:00
{
event = event.split(" ");
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
len = event.length;
for (i = 0; i < len; i++)
{
_add_remove(sel, event[i], callback, add);
}
return;
}
// Bind the event
(add === true)
? sel.addEventListener(event, callback, false)
: sel.removeEventListener(event, callback, false);
2011-12-12 11:47:20 -05:00
};
_attach_delegate = function(sel, target, event, callback)
{
// attach the listener to the parent object
_add_remove(sel, event, function(e){
2012-03-29 12:05:11 -04:00
var elem, t;
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
// Get the live version of the target selector
2012-02-23 12:42:33 -05:00
t = $_.$(target, sel);
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
// Check each element to see if it matches the target
for(elem in t)
{
// Fire target callback when event bubbles from target
if(e.target == t[elem])
2011-12-12 11:47:20 -05:00
{
// Trigger the event callback
callback.call(t[elem], e);
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
// Stop event propegation
e.stopPropagation();
}
}
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
}, true);
};
2012-03-29 12:05:11 -04:00
2011-12-12 11:47:20 -05:00
// --------------------------------------------------------------------------
/**
* Event Listener module
*
* @namespace
* @name event
* @memberOf $_
*/
e = {
/**
* Adds an event that returns a callback when triggered on the selected
* event and selector
2012-03-29 12:05:11 -04:00
*
2011-12-12 11:47:20 -05:00
* @memberOf $_.event
* @name add
* @function
* @example Eg. $_("#selector").event.add("click", do_something());
* @param string event
* @param function callback
*/
add: function (event, callback)
{
$_.each(function(e){
_add_remove(e, event, callback, true);
});
},
/**
* Removes an event bound the the specified selector, event type, and callback
*
* @memberOf $_.event
* @name remove
* @function
* @example Eg. $_("#selector").event.remove("click", do_something());
* @param string event
* @param string callback
*/
remove: function (event, callback)
{
$_.each(function(e){
_add_remove(e, event, callback, false);
});
},
2012-03-29 12:05:11 -04:00
/**
2011-12-12 11:47:20 -05:00
* Binds a persistent event to the document
*
* @memberOf $_.event
* @name live
* @function
* @example Eg. $_.event.live(".button", "click", do_something());
* @param string target
* @param string event
* @param function callback
*/
live: function (target, event, callback)
{
_attach_delegate(document.documentElement, target, event, callback);
},
2012-03-29 12:05:11 -04:00
/**
2011-12-12 11:47:20 -05:00
* Binds an event to a parent object
*
* @memberOf $_.event
* @name delegate
* @function
* @example Eg. $_("#parent").delegate(".button", "click", do_something());
* @param string target
* @param string event_type
* @param function callback
*/
delegate: function (target, event, callback)
{
$_.each(function(e){
_attach_delegate(e, target, event, callback);
});
}
};
$_.ext('event', e);
}());