This repository is currently being migrated. It's locked while the migration is in progress.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
activity.js
257 lines (207 loc) · 6.55 KB
/
activity.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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
define([
'jquery',
'underscore',
'component',
'intent',
'tmpl'
], function ($, _, Component, Intent, tmpl) {
'use strict';
// Activity extends Compponent
var Activity = Component.extend();
Activity.tmpl = tmpl; // Activity has access to renderer
Activity.el = null; // jQuery element
Activity.template = null; // Default template
Activity.templates = {}; // Additional templates
Activity.delegates = null; // Delegate bindings to element
Activity.rendered = false; // Is activity rendered at least ONCE
Activity.extend = function () {
return Object.create(Activity);
};
/**
* Selects DOM elements from inside of the activity element
*
* @param selector Any jQuery selector
* @returns jQuery
*/
Activity.sel = function (selector) {
if (selector) {
return this.el.find(selector);
} else {
return this.el;
}
};
/**
* Binds jQuery events to callback
*/
Activity.delegate = function (selector, event, callback) {
if (!this.delegateDefs) this.delegateDefs = [];
this.delegateDefs.push({
event: event,
selector: selector,
callback: callback
});
};
/**
*
* @returns {Boolean}
*/
Activity.init = function (intent) {
var inst = this;
// Get element before onInit methods
if (!this.el) {
// Try to find element
this.el = $('#' + this.uid);
if (this.el.length == 0) {
this.el = $('<div>').attr('id', this.uid).appendTo(this.container);
}
}
// Exexute component init
Component.init.call(this, intent);
_.each(this.delegateDefs, function (bind) {
inst.sel().delegate(bind.selector, bind.event, function() {
var args = Array.prototype.slice.call(arguments);
args.splice(0, 0, $(this));
return bind.callback.apply(inst, args);
});
});
};
/**
* Shows element of the activity.
*
* @param {Intent} intent
* @returns {Mixed} True if running
*/
Activity.start = function (intent) {
var startSuccess = Component.start.call(this, intent);
if (startSuccess) {
this.sel().show();
}
return startSuccess;
};
Activity.onRender = function (callback) {
if (!_.isFunction(callback)) throw new TypeError('Not function');
// Create container
if (!this._onRender) this._onRender = [];
this._onRender.push(callback);
};
// /**
// *
// */
// activity.addChild = function(uidExt, childComponent, options) {
// var parent = this;
// var childSelector = options.selector;
// childComponent = Component.addChild.call(this, uidExt, childComponent, options);
// // Proxy sel method if child is activity
// if (childComponent.sel) {
// childComponent.sel = function(selector) {
// var el = parent.sel(childSelector);
// if (selector) {
// return el.find(selector);
// } else {
// return el;
// }
// }
// }
// };
/**
* Returns template path of given template
*/
Activity.getTmpl = function (name) {
if (!name) {
return this.template;
} else if (this.templates && this.templates[name]) {
return this.templates[name];
} else if (this.defaultTemplates && this.defaultTemplates[name]) {
return this.defaultTemplates[name];
} else {
throw new Error('Template not found: ' + name);
}
};
/**
* Simple template rendering
*
* @param {Object} renderData Data for template
*/
Activity.render = function (template, renderData, callback) {
if (!this.sel()) throw new Error('No element set for ' + this.uid);
if (_.isObject(template)) {
callback = renderData;
renderData = template;
template = null;
}
template = this.getTmpl(template);
renderData = renderData || {};
var inst = this;
tmpl.render(template, renderData, function (content) {
inst.sel().html(content);
inst.rendered = true;
if (inst._onRender) {
_.each(inst._onRender, function (callback) {
callback.call(inst, renderData, template);
});
}
if (_.isFunction(callback)) {
callback.call(inst);
}
// // Also render children with same render data
// _.forEach(inst.children, function (child) {
// child.render(renderData);
// });
});
};
/**
* Subtemplate rendering
*
* @param {String} selector selector for rendering content
* @param {String} template
* @param {Object} renderData data for template
* @param {Function} callback
*
* @TODO selector validation
*/
Activity.subrender = function (selector, template, renderData, callback) {
if (!this.sel()) throw new Error('No element set for ' +this.uid);
if (_.isObject(template)) {
callback = renderData;
renderData = template;
template = null;
}
renderData = renderData || {};
template = this.getTmpl(template);
var inst = this;
tmpl.render(template, renderData, function(content) {
inst.sel(selector).html(content);
if (_.isFunction(callback)) {
callback.call(inst);
}
});
}
Activity.sendIdIntent = function (intentType) {
return function (el, e) {
var intent = Intent.create(intentType, el.data('id'));
intent.send(this);
e.preventDefault();
// return false;
};
};
/**
* Hides element of the activity
*
*/
Activity.stop = function () {
if (this.DEBUG) console.info('ACT stop: ' + this.uid);
var stopState = Component.stop.call(this);
this.sel().hide();
return stopState;
};
/**
* [loading description]
* @return {[type]}
*/
Activity.loading = function () {
};
Activity.error = function (err) {
throw err;
};
return Activity;
});