taffy-test.html
2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>taffy test</title>
<script src="./taffy.js"></script>
<script>
// recursive object compare, for future use
Object.prototype.equals = function (x) {
var p;
for(p in this) {
if(typeof(x[p])=='undefined') {return false;}
}
for(p in this) {
if (this[p]) {
switch(typeof(this[p])) {
case 'object':
if (! this[p].equals(x[p])) { return false; }
break;
case 'function':
if (typeof(x[p])=='undefined' ||
(p != 'equals' && this[p].toString() != x[p].toString())
){ return false; }
break;
default:
if (this[p] != x[p]) { return false; }
}
}
else {
if (x[p]){ return false; }
}
}
for(p in x) {
if(typeof(this[p])=='undefined') {return false;}
}
return true;
};
var key_name, data_val, friends_table, taffy_map;
friends_table = TAFFY([
{"id":1,"gender":"M","first":"John","last":"Smith","city":"Seattle, WA","status":"Active"},
{"id":2,"gender":"F","first":"Kelly","last":"Ruth","city":"Dallas, TX","status":"Active"},
{"id":3,"gender":"M","first":"Jeff","last":"Stevenson","city":"Washington, D.C.","status":"Active"},
{"id":4,"gender":"F","first":"Jennifer","last":"Gill","city":"Seattle, WA","status":"Active"}
]);
taffy_map = {
t_by_city : friends_table({city:"Seattle, WA"}),
t_by_id : friends_table({id:1}),
t_by_id_f : friends_table({id:'1'}),
t_by_name : friends_table({first:'John',last:'Smith'}),
kelly_by_id : friends_table({id:2}).first(),
kelly_last_name : friends_table({id:2}).first().last,
id_list : friends_table().select('id'),
city_list : friends_table().distinct('city'),
};
for ( key_name in taffy_map ){
if ( taffy_map.hasOwnProperty(key_name) ){
data_val = taffy_map[key_name];
console.warn(key_name, data_val);
if ( data_val.hasOwnProperty('get') ){
console.warn(JSON.stringify(data_val.get()));
}
console.warn('----------------');
}
}
</script>
</head>
<body>
<div>
Please open your javascript console to see test results
</div>
</body>
</html>