This repository has been archived by the owner on Feb 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbackbone-component.js
240 lines (209 loc) · 9.05 KB
/
backbone-component.js
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
// Backbone.Component v0.3.1
// (c) 2015 Oleg Kalistratov, for SourceTalk project (http://sourcetalk.net)
// Distributed Under MIT License
(
function ( factory ) {
if ( ( typeof define === "function" ) && ( define.amd ) ) {
// AMD. Register as an anonymous module.
define( [ "underscore", "backbone" ] ,
factory );
} else {
// Browser globals
factory( _, Backbone );
}
}(
function( _, Backbone ) {
"use strict";
var namespace = Backbone.Components;
var baseViewClass = Backbone.View;
var transformHTML = null;
var observedSelectors = { };
var activeComponents = { };
var observe = function( selector, componentClass ) {
observedSelectors[ selector ] ||
( observedSelectors[ selector ] = componentClass );
};
var toComponentClass = function( componentName ) {
var cls = null;
if ( _.isArray( namespace ) ) {
_.each(
namespace ,
function( ns ) {
cls || ( cls = ns[ componentName ] );
}
);
} else {
cls = namespace[ componentName ];
}
return cls;
};
var toClassName = function( componentName ,
proto ,
isComponent ) {
return _.result( proto , "className" ) || (
( isComponent ? "component-" : "helper-" ) +
componentName.
replace( /([A-Z])/g, "-$1" ).
replace( /^\-+/, "" ).
toLowerCase( )
);
};
var register = function( componentName ) {
var cls = toComponentClass( componentName );
var cmpProto = cls.prototype;
var isComponent = cmpProto instanceof Backbone.Component;
var viewProto = baseViewClass.prototype;
var className = toClassName( componentName ,
cmpProto ,
isComponent );
var selector = cmpProto.selector || "." + className;
if ( isComponent ) {
observe( selector, cls );
}
viewProto[ "insert" + componentName ] = function( ) {
var res = "";
var wrapper =
( _.last( arguments ) || { } )[ "wrapper" ] || { };
res = template(
{
"html" :
cmpProto.template.apply( cmpProto ,
arguments ) ,
"tagName" :
( _.result( cmpProto, "tagName" ) ||
"span" ) ,
"className" :
( ( wrapper[ "htmlClass" ] || "" ) +
" " +
className ) ,
"id" :
( wrapper[ "htmlId" ] ||
_.result( cmpProto, "id" ) ||
_.uniqueId( className + "-" ) )
}
);
if ( _.isFunction( transformHTML ) ) {
res = transformHTML.call( this, res );
}
return res;
};
};
var componentObserver = new MutationObserver(
function( mutations ) {
// First, look for untracked elements
_.each(
observedSelectors ,
function( componentClass, selector ) {
var elements =
document.querySelectorAll(
selector + ":not(.component-active)"
);
_.each(
elements ,
function( el ) {
var component = new componentClass;
var id = _.uniqueId( "component-" );
component.cid = id;
component.setElement( el );
component.initialize( );
activeComponents[ id ] = component;
el.className += " component-active";
el.setAttribute( "data-component-id", id );
}
);
}
);
// Now, look for removed elements
_.each(
activeComponents ,
function( component ) {
var el = component.el;
if ( !document.body.contains( el ) ) {
el.setAttribute( "data-component-id" ,
null );
el.className =
_.chain( el.className.split( /\s/ ) ).
compact( ).
without( "component-active" ).
value( ).
join( " " );
component.undelegateEvents( );
component.stopListening( );
component.remove( );
component.el = null;
delete activeComponents[ component.cid ];
}
}
);
}
);
var template = _.template(
"<<%= tagName %> class=\"<%= className %>\" id=\"<%= id %>\">" +
"<%= html %>" +
"</<%= tagName %>>"
);
Backbone.Helper = function( ) { };
_.extend(
Backbone.Helper.prototype ,
{
template: function( ) {
return "";
}
}
);
Backbone.Helper.extend = Backbone.Model.extend;
Backbone.Component = Backbone.Helper.extend(
{
initialize: function( ) {
} ,
remove: function( ) {
}
}
);
_.extend(
Backbone.Component.prototype ,
Backbone.Events ,
_.pick(
Backbone.View.prototype ,
"$" ,
"setElement" ,
"_setElement" ,
"delegate" ,
"delegateEvents" ,
"undelegate" ,
"undelegateEvents"
)
);
Backbone.Component.VERSION = "0.3.0";
Backbone.Component.initialize = function( options ) {
var initNS = function( ns ) {
_.each(
ns ,
function( v, k ) {
if ( ( typeof( v ) === "function" ) &&
( v.prototype instanceof Backbone.Helper ) ) {
register( k );
};
}
);
};
options || ( options = { } );
namespace = options[ "namespace" ] || namespace;
baseViewClass = options[ "baseViewClass" ] || baseViewClass;
transformHTML = options[ "transformHTML" ] || transformHTML;
if ( _.isArray( namespace ) ) {
_.each( namespace, initNS );
} else {
initNS( namespace );
}
componentObserver.observe(
document.body ,
{
"childList" : true ,
"subtree" : true
}
);
};
}
)
);