-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathindex.js
245 lines (211 loc) · 6.08 KB
/
index.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
/* jshint loopfunc:true */
let JSData = require('js-data')
let DSHttpAdapter = require('../.js-data-http.js')
let angular = require('angular')
let { DSUtils, DSErrors } = JSData
let { get, isString, isNumber, isObject, set, resolveId } = DSUtils
let adapters = [
{
project: 'js-data-localstorage',
name: 'localstorage',
'class': 'DSLocalStorageAdapter'
},
{
project: 'js-data-localforage',
name: 'localforage',
'class': 'DSLocalForageAdapter'
},
{
project: 'js-data-firebase',
name: 'firebase',
'class': 'DSFirebaseAdapter'
},
{
project: 'js-data-sql',
name: 'sql',
'class': 'DSSqlAdapter'
}
]
let functionsToWrap = [
'compute',
'digest',
'eject',
'inject'
]
function registerAdapter (adapter) {
let Adapter
try {
Adapter = require(adapter.project)
} catch (e) {}
if (!Adapter) {
Adapter = window[adapter.class]
}
if (Adapter) {
adapter.loaded = true
angular.module('js-data').provider(adapter.class, function () {
let _this = this
_this.defaults = {}
_this.$get = [() => new Adapter(_this.defaults)]
})
}
}
class DSHttpAdapterProvider {
constructor () {
let defaults = {}
this.defaults = defaults
this.$get = ['$http', 'DS', ($http, DS) => {
defaults.http = defaults.http || $http
let adapter = new DSHttpAdapter(defaults)
DS.registerAdapter('http', adapter, { 'default': true })
return adapter
}]
}
}
class DSProvider {
constructor () {
let _this = this
let deps = []
for (var i = 0; i < adapters.length; i++) {
if (adapters[i].loaded) {
deps.push(adapters[i].class)
}
}
_this.defaults = {}
JSData.DS.prototype.bindAll = function (resourceName, params, scope, expr, cb) {
let _this = this
params = params || {}
if (!_this.definitions[resourceName]) {
throw new DSErrors.NER(resourceName)
} else if (!isObject(params)) {
throw new DSErrors.IA('"params" must be an object!')
} else if (!isObject(scope)) {
throw new DSErrors.IA('"scope" must be an object!')
} else if (!isString(expr)) {
throw new DSErrors.IA('"expr" must be a string!')
}
let idAttribute = _this.definitions[resourceName].idAttribute
try {
return scope.$watch(() => _this.lastModified(resourceName), () => {
let items = _this.filter(resourceName, params)
if (items && items.length) {
angular.forEach(items, (item) => {
_this.compute(resourceName, get(item, idAttribute))
})
}
set(scope, expr, items)
if (cb) {
cb(null, items)
}
})
} catch (err) {
if (cb) {
cb(err)
} else {
throw err
}
}
}
JSData.DS.prototype.bindOne = function (resourceName, id, scope, expr, cb) {
let _this = this
id = resolveId(_this.definitions[resourceName], id)
if (!_this.definitions[resourceName]) {
throw new DSErrors.NER(resourceName)
} else if (!isString(id) && !isNumber(id)) {
throw new DSErrors.IA('"id" must be a string or a number!')
} else if (!isObject(scope)) {
throw new DSErrors.IA('"scope" must be an object!')
} else if (!isString(expr)) {
throw new DSErrors.IA('"expr" must be a string!')
}
try {
return scope.$watch(() => _this.lastModified(resourceName, id), () => {
let item = _this.get(resourceName, id)
if (item) {
_this.compute(resourceName, id)
}
set(scope, expr, item)
if (cb) {
cb(null, item)
}
})
} catch (err) {
if (cb) {
cb(err)
} else {
throw err
}
}
}
function load (...args) {
let $rootScope = args[args.length - 2]
let $q = args[args.length - 1]
let store = new JSData.DS(_this.defaults)
let originals = {}
function QPromise (executor) {
let deferred = $q.defer()
try {
executor(
angular.bind(deferred, deferred.resolve),
angular.bind(deferred, deferred.reject)
)
} catch (err) {
deferred.reject(err)
}
return deferred.promise
}
QPromise.all = $q.all
QPromise.when = $q.when
QPromise.reject = $q.reject
DSUtils.Promise = QPromise
// Register any adapters that have been loaded
if (args.length) {
for (var i = 0; i < args.length; i++) {
for (var j = 0; j < adapters.length; j++) {
if (adapters[j].loaded && !adapters[j].registered) {
adapters[j].registered = true
store.registerAdapter(adapters[j].name, args[i])
break
}
}
}
}
// Wrap certain sync functions with $apply
for (var k = 0; k < functionsToWrap.length; k++) {
let name = functionsToWrap[k]
originals[name] = store[name]
store[name] = (...args) => {
if (!$rootScope.$$phase) {
return $rootScope.$apply(() => originals[name].apply(store, args))
}
return originals[name].apply(store, args)
}
}
// Hook into the digest loop
if (typeof Object.observe !== 'function' || typeof Array.observe !== 'function') {
$rootScope.$watch(() => store.observe.Platform.performMicrotaskCheckpoint())
}
return store
}
deps.push('$rootScope')
deps.push('$q')
deps.push(load)
_this.$get = deps
}
}
angular.module('js-data', ['ng'])
.value('DSUtils', DSUtils)
.value('DSErrors', DSErrors)
.value('DSVersion', JSData.version)
.provider('DS', DSProvider)
.provider('DSHttpAdapter', DSHttpAdapterProvider)
.run(['DS', 'DSHttpAdapter', (DS, DSHttpAdapter) => {
DS.registerAdapter('http', DSHttpAdapter, { 'default': true })
}])
for (var i = 0; i < adapters.length; i++) {
registerAdapter(adapters[i])
}
// return the module name
module.exports = 'js-data'
try {
module.exports.name = 'js-data'
} catch (e) {}