ElementLoader.js
11.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
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
/**
* A class used to load remote content to an Element. Sample usage:
*
* Ext.get('el').load({
* url: 'myPage.php',
* scripts: true,
* params: {
* id: 1
* }
* });
*
* In general this class will not be instanced directly, rather the {@link Ext.Element#method-load} method
* will be used.
*/
Ext.define('Ext.ElementLoader', {
/* Begin Definitions */
mixins: {
observable: 'Ext.util.Observable'
},
uses: [
'Ext.data.Connection',
'Ext.Ajax'
],
statics: {
Renderer: {
Html: function(loader, response, active){
loader.getTarget().update(response.responseText, active.scripts === true);
return true;
}
}
},
/* End Definitions */
/**
* @cfg {String} url (required)
* The url to retrieve the content from.
*/
url: null,
/**
* @cfg {Object} params
* Any params to be attached to the Ajax request. These parameters will
* be overridden by any params in the load options.
*/
params: null,
/**
* @cfg {Object} baseParams Params that will be attached to every request. These parameters
* will not be overridden by any params in the load options.
*/
baseParams: null,
/**
* @cfg {Boolean/Object} autoLoad
* True to have the loader make a request as soon as it is created.
* This argument can also be a set of options that will be passed to {@link #method-load} is called.
*/
autoLoad: false,
/**
* @cfg {HTMLElement/Ext.Element/String} target
* The target element for the loader. It can be the DOM element, the id or an {@link Ext.Element}.
*/
target: null,
/**
* @cfg {Boolean/String} loadMask
* True or a string to show when the element is loading.
*/
loadMask: false,
/**
* @cfg {Object} ajaxOptions
* Any additional options to be passed to the request, for example timeout or headers.
*/
ajaxOptions: null,
/**
* @cfg {Boolean} scripts
* True to parse any inline script tags in the response.
*/
scripts: false,
/**
* @cfg {Function} success
* A function to be called when a load request is successful.
* Will be called with the following config parameters:
*
* - this - The ElementLoader instance.
* - response - The response object.
* - options - Ajax options.
*/
/**
* @cfg {Function} failure A function to be called when a load request fails.
* Will be called with the following config parameters:
*
* - this - The ElementLoader instance.
* - response - The response object.
* - options - Ajax options.
*/
/**
* @cfg {Function} callback A function to be called when a load request finishes.
* Will be called with the following config parameters:
*
* - this - The ElementLoader instance.
* - success - True if successful request.
* - response - The response object.
* - options - Ajax options.
*/
/**
* @cfg {Object} scope
* The scope to execute the {@link #success} and {@link #failure} functions in.
*/
/**
* @cfg {Function} renderer
* A custom function to render the content to the element. The function should
* return false if the renderer could not be applied. The passed parameters are:
*
* - The loader
* - The response
* - The active request
*/
/**
* @property {Boolean} isLoader
* `true` in this class to identify an object as an instantiated ElementLoader, or subclass thereof.
*/
isLoader: true,
constructor: function(config) {
var me = this,
autoLoad;
config = config || {};
Ext.apply(me, config);
me.setTarget(me.target);
me.addEvents(
/**
* @event beforeload
* Fires before a load request is made to the server.
* Returning false from an event listener can prevent the load
* from occurring.
* @param {Ext.ElementLoader} this
* @param {Object} options The options passed to the request
*/
'beforeload',
/**
* @event exception
* Fires after an unsuccessful load.
* @param {Ext.ElementLoader} this
* @param {Object} response The response from the server
* @param {Object} options The options passed to the request
*/
'exception',
/**
* @event load
* Fires after a successful load.
* @param {Ext.ElementLoader} this
* @param {Object} response The response from the server
* @param {Object} options The options passed to the request
*/
'load'
);
// don't pass config because we have already applied it.
me.mixins.observable.constructor.call(me);
if (me.autoLoad) {
autoLoad = me.autoLoad;
if (autoLoad === true) {
autoLoad = {};
}
me.load(autoLoad);
}
},
/**
* Sets an {@link Ext.Element} as the target of this loader.
* Note that if the target is changed, any active requests will be aborted.
* @param {String/HTMLElement/Ext.Element} target The element or its ID.
*/
setTarget: function(target){
var me = this;
target = Ext.get(target);
if (me.target && me.target != target) {
me.abort();
}
me.target = target;
},
/**
* Returns the target of this loader.
* @return {Ext.Component} The target or null if none exists.
*/
getTarget: function(){
return this.target || null;
},
/**
* Aborts the active load request
*/
abort: function(){
var active = this.active;
if (active !== undefined) {
Ext.Ajax.abort(active.request);
if (active.mask) {
this.removeMask();
}
delete this.active;
}
},
/**
* Removes the mask on the target
* @private
*/
removeMask: function(){
this.target.unmask();
},
/**
* Adds the mask on the target
* @private
* @param {Boolean/Object} mask The mask configuration
*/
addMask: function(mask){
this.target.mask(mask === true ? null : mask);
},
/**
* Loads new data from the server.
* @param {Object} options The options for the request. They can be any configuration option that can be specified for
* the class, with the exception of the target option. Note that any options passed to the method will override any
* class defaults.
*/
load: function(options) {
//<debug>
if (!this.target) {
Ext.Error.raise('A valid target is required when loading content');
}
//</debug>
options = Ext.apply({}, options);
var me = this,
target = me.target,
mask = Ext.isDefined(options.loadMask) ? options.loadMask : me.loadMask,
params = Ext.apply({}, options.params),
ajaxOptions = Ext.apply({}, options.ajaxOptions),
callback = options.callback || me.callback,
scope = options.scope || me.scope || me,
request;
Ext.applyIf(ajaxOptions, me.ajaxOptions);
Ext.applyIf(options, ajaxOptions);
Ext.applyIf(params, me.params);
Ext.apply(params, me.baseParams);
Ext.applyIf(options, {
url: me.url
});
//<debug>
if (!options.url) {
Ext.Error.raise('You must specify the URL from which content should be loaded');
}
//</debug>
Ext.apply(options, {
scope: me,
params: params,
callback: me.onComplete
});
if (me.fireEvent('beforeload', me, options) === false) {
return;
}
if (mask) {
me.addMask(mask);
}
request = Ext.Ajax.request(options);
me.active = {
request: request,
options: options,
mask: mask,
scope: scope,
callback: callback,
success: options.success || me.success,
failure: options.failure || me.failure,
renderer: options.renderer || me.renderer,
scripts: Ext.isDefined(options.scripts) ? options.scripts : me.scripts
};
me.setOptions(me.active, options);
},
/**
* Sets any additional options on the active request
* @private
* @param {Object} active The active request
* @param {Object} options The initial options
*/
setOptions: Ext.emptyFn,
/**
* Parses the response after the request completes
* @private
* @param {Object} options Ajax options
* @param {Boolean} success Success status of the request
* @param {Object} response The response object
*/
onComplete: function(options, success, response) {
var me = this,
active = me.active,
scope = active.scope,
renderer = me.getRenderer(active.renderer);
if (success) {
success = renderer.call(me, me, response, active) !== false;
}
if (success) {
Ext.callback(active.success, scope, [me, response, options]);
me.fireEvent('load', me, response, options);
} else {
Ext.callback(active.failure, scope, [me, response, options]);
me.fireEvent('exception', me, response, options);
}
Ext.callback(active.callback, scope, [me, success, response, options]);
if (active.mask) {
me.removeMask();
}
delete me.active;
},
/**
* Gets the renderer to use
* @private
* @param {String/Function} renderer The renderer to use
* @return {Function} A rendering function to use.
*/
getRenderer: function(renderer){
if (Ext.isFunction(renderer)) {
return renderer;
}
return this.statics().Renderer.Html;
},
/**
* Automatically refreshes the content over a specified period.
* @param {Number} interval The interval to refresh in ms.
* @param {Object} options (optional) The options to pass to the load method. See {@link #method-load}
*/
startAutoRefresh: function(interval, options){
var me = this;
me.stopAutoRefresh();
me.autoRefresh = setInterval(function(){
me.load(options);
}, interval);
},
/**
* Clears any auto refresh. See {@link #startAutoRefresh}.
*/
stopAutoRefresh: function(){
clearInterval(this.autoRefresh);
delete this.autoRefresh;
},
/**
* Checks whether the loader is automatically refreshing. See {@link #startAutoRefresh}.
* @return {Boolean} True if the loader is automatically refreshing
*/
isAutoRefreshing: function(){
return Ext.isDefined(this.autoRefresh);
},
/**
* Destroys the loader. Any active requests will be aborted.
*/
destroy: function(){
var me = this;
me.stopAutoRefresh();
delete me.target;
me.abort();
me.clearListeners();
}
});