This repository has been archived by the owner on May 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Store.js
131 lines (117 loc) · 4.36 KB
/
Store.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
Ext.define('Mba.ux.Data.Store', {
override: 'Ext.data.Store',
requires: [
'Ext.ux.Deferred',
'Ext.device.Connection'
],
applyProxy: function(proxy, currentProxy) {
if (Ext.isObject(proxy)) {
if (!proxy.model) {
proxy.model = this.getModel().$className;
}
}
proxy = Ext.factory(proxy, Ext.data.Proxy, currentProxy, 'proxy');
if (!proxy && this.getModel()) {
proxy = this.getModel().getProxy();
}
if (!proxy) {
proxy = new Ext.data.proxy.Memory({
model: this.getModel()
});
}
if (proxy.isMemoryProxy) {
this.setSyncRemovedRecords(false);
}
return proxy;
},
/** Constroi a promise e faz o wrap do callback do usuario
* @return {Object} Contexto de execucao
* @return {Object} return.dfd: A instancia do deferred com a promessa
* @return {Object} return.options: Objeto options alterado para ser passado para callParent
* @return {Object} return.scope: Escopo de chamada, o mesmo scope passado para a funcao
* @private
**/
prepareDeferred: function(options, scope) {
var dfd = Ext.create('Ext.ux.Deferred'),
userCallback = Ext.emptyFn,
me = this,
argumentsPromise;
options = options || {};
if (Ext.isFunction(options)) {
userCallback = options;
options = {};
} else if (Ext.isObject(options)) {
userCallback = options.callback || Ext.emptyFn;
}
options.callback = function() {
userCallback.apply(me, arguments);
argumentsPromise = Ext.Array.slice(arguments);
argumentsPromise.push(me);
if (arguments[2]) {
dfd.resolve.apply(dfd, argumentsPromise);
return;
}
if (argumentsPromise[1].erro && (argumentsPromise[1].error.status === 0 || argumentsPromise[1].error.status === 404)) {
if (argumentsPromise[1].error.status === 0) {
Ext.Msg.alert('Atenção', MbaLocale.get('MSG_ERRO_TIMEOUT'));
}
this.removeAll();
dfd.resolve.apply(dfd, argumentsPromise);
return;
}
dfd.reject.apply(dfd, argumentsPromise);
};
return {
dfd: dfd,
options: options,
scope: scope
};
},
/** Executa uma funcao de load deffered. Os parametros sao os mesmos
* de uma store normal
* @returns {Object} Uma promessa de load */
load: function(options, scope) {
var r = this.prepareDeferred(options, scope),
promise = r.dfd.promise(), remoteProxys = ['Mba.ux.Data.MbaRestProxy', 'Ext.data.proxy.Ajax',
'Ext.data.proxy.Rest'];
if (this.getProxy() && remoteProxys.indexOf(this.getProxy().$className) !== -1) {
if (!Ext.device.Connection.isOnline()) {
r.dfd.reject([], {
error: {
statusText: 'Sem conexão de dados.'
}
});
return promise;
}
}
this.callParent([r.options, r.scope]);
return promise;
},
/** Executa uma funcao de loadPage deffered. Os parametros sao os mesmos
* de uma store normal
* @returns {Object} Uma promessa de loadPage */
loadPage: function(page, options, scope) {
var r = this.prepareDeferred(options, scope),
promise = r.dfd.promise();
this.callParent([page, r.options, r.scope]);
return promise;
},
/** Executa uma funcao de nextPage deffered. Os parametros sao os mesmos
* de uma store normal
* @returns {Object} Uma promessa de nextPage */
nextPage: function(options) {
var r = this.prepareDeferred(options),
promise = r.dfd.promise();
this.callParent([r.options]);
return promise;
},
/** Executa uma funcao de previousPage deffered. Os parametros sao os mesmos
* de uma store normal
* @returns {Object} Uma promessa de previousPage */
previousPage: function(options) {
var r = this.prepareDeferred(options),
promise = r.dfd.promise();
this.callParent([r.options]);
return promise;
}
});