rivets.js
4.41 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// Generated by CoffeeScript 1.3.1
(function() {
var Rivets,
__bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },
__indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };
Rivets = {
Helpers: {}
};
Rivets.Binding = (function() {
Binding.name = 'Binding';
function Binding(el, adapter, type, context, keypath) {
this.el = el;
this.adapter = adapter;
this.type = type;
this.context = context;
this.keypath = keypath;
this.bind = __bind(this.bind, this);
this.set = __bind(this.set, this);
this.routine = Rivets.bindings[this.type] || Rivets.Helpers.attributeBinding(this.type);
}
Binding.prototype.set = function(value) {
if (value == null) {
value = null;
}
return this.routine(this.el, value || this.adapter.read(this.context, this.keypath));
};
Binding.prototype.bind = function() {
var _ref,
_this = this;
this.set() && this.adapter.subscribe(this.context, this.keypath, function(value) {
return _this.set(value);
});
if (_ref = this.type, __indexOf.call(Rivets.bidirectionals, _ref) >= 0) {
return this.el.addEventListener('change', function(el) {
return _this.adapter.publish(_this.context, _this.keypath, Rivets.Helpers.getInputValue(el));
});
}
};
return Binding;
})();
Rivets.Helpers.getInputValue = function(el) {
switch (el.type) {
case 'text':
case 'textarea':
case 'password':
case 'select-one':
return el.value;
case 'checkbox':
case 'radio':
return el.checked;
}
};
Rivets.Helpers.attributeBinding = function(attr) {
return function(el, value) {
if (value) {
return el.setAttribute(attr, value);
} else {
return el.removeAttribute(attr);
}
};
};
Rivets.Helpers.stateBinding = function(attr, inverse) {
if (inverse == null) {
inverse = false;
}
return function(el, value) {
var binding;
binding = Rivets.Helpers.attributeBinding(attr);
return binding(el, inverse === !value ? attr : false);
};
};
Rivets.bindings = {
checked: Rivets.Helpers.stateBinding('checked'),
selected: Rivets.Helpers.stateBinding('selected'),
disabled: Rivets.Helpers.stateBinding('disabled'),
unchecked: Rivets.Helpers.stateBinding('checked', true),
unselected: Rivets.Helpers.stateBinding('selected', true),
enabled: Rivets.Helpers.stateBinding('disabled', true),
text: function(el, value) {
return el.innerText = value || '';
},
html: function(el, value) {
return el.innerHTML = value || '';
},
value: function(el, value) {
return el.value = value;
},
show: function(el, value) {
return el.style.display = value ? '' : 'none';
},
hide: function(el, value) {
return el.style.display = value ? 'none' : '';
}
};
Rivets.bidirectionals = ['value', 'checked', 'unchecked', 'selected', 'unselected'];
Rivets["interface"] = {
register: function(routine, routineFunction) {
return Rivets.bindings[routine] = routineFunction;
},
bind: function(el, adapter, contexts) {
var attribute, binding, bindings, context, keypath, node, path, type, _i, _j, _k, _len, _len1, _len2, _ref, _ref1;
if (contexts == null) {
contexts = {};
}
bindings = [];
_ref = el.getElementsByTagName('*');
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
node = _ref[_i];
_ref1 = node.attributes;
for (_j = 0, _len1 = _ref1.length; _j < _len1; _j++) {
attribute = _ref1[_j];
if (/^data-/.test(attribute.name)) {
type = attribute.name.replace('data-', '');
path = attribute.value.split('.');
context = path.shift();
keypath = path.join('.');
bindings.push(new Rivets.Binding(node, adapter, type, contexts[context], keypath));
}
}
}
for (_k = 0, _len2 = bindings.length; _k < _len2; _k++) {
binding = bindings[_k];
binding.bind();
}
return bindings.length;
}
};
if (typeof module !== "undefined" && module !== null) {
module.exports = Rivets["interface"];
} else {
this.rivets = Rivets["interface"];
}
}).call(this);