prototype/src/lang/object.js

271 lines
7.9 KiB
JavaScript
Raw Normal View History

2009-03-05 19:56:01 +00:00
/** section: Language
* class Object
*
* Extensions to the built-in `Object` object.
*
* Because it is dangerous and invasive to augment `Object.prototype` (i.e.,
* add instance methods to objects), all these methods are static methods that
* take an `Object` as their first parameter.
*
2008-12-14 04:36:59 +00:00
**/
2008-09-29 23:04:25 +00:00
(function() {
var _toString = Object.prototype.toString;
2008-12-14 04:36:59 +00:00
/**
* Object.extend(destination, source) -> Object
* - destination (Object): The object to receive the new properties.
* - source (Object): The object whose properties will be duplicated.
*
* Copies all properties from the source to the destination object. Returns
* the destination object.
**/
2008-09-29 23:04:25 +00:00
function extend(destination, source) {
for (var property in source)
destination[property] = source[property];
return destination;
}
2008-12-14 04:36:59 +00:00
/**
* Object.inspect(object) -> String
* - object (Object): The item to be inspected.
*
* Returns the debug-oriented string representation of the object.
*
* `undefined` and `null` are represented as such.
*
* Other types are checked for a `inspect` method. If there is one, it is
* used; otherwise, it reverts to the `toString` method.
*
* Prototype provides `inspect` methods for many types, both built-in and
* library-defined — among them `String`, `Array`, `Enumerable` and `Hash`.
2008-12-14 04:36:59 +00:00
* These attempt to provide useful string representations (from a
* developer's standpoint) for their respective types.
2008-12-14 04:36:59 +00:00
**/
2008-09-29 23:04:25 +00:00
function inspect(object) {
2008-12-11 10:42:15 +00:00
try {
2008-09-29 23:04:25 +00:00
if (isUndefined(object)) return 'undefined';
2008-12-11 10:42:15 +00:00
if (object === null) return 'null';
return object.inspect ? object.inspect() : String(object);
} catch (e) {
if (e instanceof RangeError) return '...';
throw e;
}
2008-09-29 23:04:25 +00:00
}
2008-12-14 04:36:59 +00:00
/**
* Object.toJSON(object) -> String
* - object (Object): The object to be serialized.
*
* Returns a JSON string.
*
* `undefined` and `function` types have no JSON representation. `boolean`
* and `null` are coerced to strings.
*
* For other types, `Object.toJSON` looks for a `toJSON` method on `object`.
* If there is one, it is used; otherwise the object is treated like a
* generic `Object`.
**/
2008-09-29 23:04:25 +00:00
function toJSON(object) {
2008-12-11 10:42:15 +00:00
var type = typeof object;
switch (type) {
case 'undefined':
case 'function':
case 'unknown': return;
case 'boolean': return object.toString();
}
2008-09-29 23:04:25 +00:00
2008-12-11 10:42:15 +00:00
if (object === null) return 'null';
if (object.toJSON) return object.toJSON();
2008-09-29 23:04:25 +00:00
if (isElement(object)) return;
2008-12-11 10:42:15 +00:00
var results = [];
for (var property in object) {
2008-09-29 23:04:25 +00:00
var value = toJSON(object[property]);
if (!isUndefined(value))
2008-12-11 10:42:15 +00:00
results.push(property.toJSON() + ': ' + value);
}
2008-09-29 23:04:25 +00:00
2008-12-11 10:42:15 +00:00
return '{' + results.join(', ') + '}';
2008-09-29 23:04:25 +00:00
}
2008-12-14 04:36:59 +00:00
/**
* Object.toQueryString(object) -> String
* object (Object): The object whose property/value pairs will be converted.
*
* Turns an object into its URL-encoded query string representation.
*
* This is a form of serialization, and is mostly useful to provide complex
* parameter sets for stuff such as objects in the Ajax namespace (e.g.
* [[Ajax.Request]]).
*
* Undefined-value pairs will be serialized as if empty-valued. Array-valued
* pairs will get serialized with one name/value pair per array element. All
* values get URI-encoded using JavaScript's native `encodeURIComponent`
2008-12-14 04:36:59 +00:00
* function.
*
* The order of pairs in the serialized form is not guaranteed (and mostly
* irrelevant anyway) — except for array-based parts, which are serialized
2008-12-14 04:36:59 +00:00
* in array order.
**/
2008-09-29 23:04:25 +00:00
function toQueryString(object) {
2008-12-11 10:42:15 +00:00
return $H(object).toQueryString();
2008-09-29 23:04:25 +00:00
}
2008-12-14 04:36:59 +00:00
/**
* Object.toHTML(object) -> String
* - object (Object): The object to convert to HTML.
*
* Converts the object to its HTML representation.
*
* Returns the return value of `object`'s `toHTML` method if it exists; else
2008-12-14 04:36:59 +00:00
* runs `object` through [[String.interpret]].
**/
2008-09-29 23:04:25 +00:00
function toHTML(object) {
2008-12-11 10:42:15 +00:00
return object && object.toHTML ? object.toHTML() : String.interpret(object);
2008-09-29 23:04:25 +00:00
}
2008-12-14 04:36:59 +00:00
/**
* Object.keys(object) -> Array
* - object (Object): The object to pull keys from.
*
* Returns an array of the object's property names.
*
* Note that the order of the resulting array is browser-dependent — it
2008-12-14 04:36:59 +00:00
* relies on the `for…in` loop, for which the ECMAScript spec does not
* prescribe an enumeration order. Sort the resulting array if you wish to
* normalize the order of the object keys.
**/
2008-09-29 23:04:25 +00:00
function keys(object) {
2008-12-11 15:55:02 +00:00
var results = [];
2008-12-11 10:42:15 +00:00
for (var property in object)
2008-12-11 15:55:02 +00:00
results.push(property);
return results;
2008-09-29 23:04:25 +00:00
}
2008-12-14 04:36:59 +00:00
/**
* Object.values(object) -> Array
* - object (Object): The object to pull values from.
*
* Returns an array of the object's values.
*
* Note that the order of the resulting array is browser-dependent — it
2008-12-14 04:36:59 +00:00
* relies on the `for…in` loop, for which the ECMAScript spec does not
* prescribe an enumeration order.
*
* Also, remember that while property _names_ are unique, property _values_
* have no such constraint.
**/
2008-09-29 23:04:25 +00:00
function values(object) {
2008-12-11 15:55:02 +00:00
var results = [];
2008-12-11 10:42:15 +00:00
for (var property in object)
2008-12-11 15:55:02 +00:00
results.push(object[property]);
return results;
2008-09-29 23:04:25 +00:00
}
2008-12-14 04:36:59 +00:00
/**
* Object.clone(object) -> Object
* - object (Object): The object to clone.
*
* Duplicates the passed object.
*
* Copies all the original's key/value pairs onto an empty object.
*
* Do note that this is a _shallow_ copy, not a _deep_ copy. Nested objects
* will retain their references.
**/
2008-09-29 23:04:25 +00:00
function clone(object) {
return extend({ }, object);
}
2008-12-14 04:36:59 +00:00
/**
* Object.isElement(object) -> Boolean
* - object (Object): The object to test.
*
* Returns `true` if `object` is a DOM node of type 1; `false` otherwise.
**/
2008-09-29 23:04:25 +00:00
function isElement(object) {
2008-12-11 10:42:15 +00:00
return !!(object && object.nodeType == 1);
2008-09-29 23:04:25 +00:00
}
2008-12-14 04:36:59 +00:00
/**
* Object.isArray(object) -> Boolean
* - object (Object): The object to test.
*
* Returns `true` if `object` is an array; false otherwise.
**/
2008-09-29 23:04:25 +00:00
function isArray(object) {
return _toString.call(object) == "[object Array]";
2008-09-29 23:04:25 +00:00
}
2008-12-14 04:36:59 +00:00
/**
* Object.isHash(object) -> Boolean
* - object (Object): The object to test.
*
* Returns `true` if `object` is an instance of the [[Hash]] class; `false`
* otherwise.
**/
2008-09-29 23:04:25 +00:00
function isHash(object) {
2008-12-11 10:42:15 +00:00
return object instanceof Hash;
}
2008-09-29 23:04:25 +00:00
2008-12-14 04:36:59 +00:00
/**
* Object.isFunction(object) -> Boolean
* - object (Object): The object to test.
*
* Returns `true` if `object` is of type `function`; `false` otherwise.
**/
2008-09-29 23:04:25 +00:00
function isFunction(object) {
return typeof object === "function";
}
2008-12-14 04:36:59 +00:00
/**
* Object.isString(object) -> Boolean
* - object (Object): The object to test.
*
* Returns `true` if `object` is of type `string`; `false` otherwise.
**/
2008-09-29 23:04:25 +00:00
function isString(object) {
return _toString.call(object) == "[object String]";
2008-09-29 23:04:25 +00:00
}
2008-12-14 04:36:59 +00:00
/**
* Object.isNumber(object) -> Boolean
* - object (Object): The object to test.
*
* Returns `true` if `object` is of type `number`; `false` otherwise.
**/
2008-09-29 23:04:25 +00:00
function isNumber(object) {
return _toString.call(object) == "[object Number]";
2008-09-29 23:04:25 +00:00
}
2008-12-14 04:36:59 +00:00
/**
* Object.isUndefined(object) -> Boolean
* - object (Object): The object to test.
*
* Returns `true` if `object` is of type `string`; `false` otherwise.
**/
2008-09-29 23:04:25 +00:00
function isUndefined(object) {
return typeof object === "undefined";
}
extend(Object, {
extend: extend,
inspect: inspect,
toJSON: toJSON,
toQueryString: toQueryString,
toHTML: toHTML,
keys: keys,
values: values,
clone: clone,
isElement: isElement,
isArray: isArray,
isHash: isHash,
isFunction: isFunction,
isString: isString,
isNumber: isNumber,
isUndefined: isUndefined
});
})();