-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathresource.js
90 lines (69 loc) · 1.77 KB
/
resource.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
import { action, extendObservable } from 'mobx'
import apiRequest from 'api'
class Resource {
static defaultOptions = {
request: apiRequest,
prefetch: false,
}
static defaultValues = {}
get retrieved() {
return !!this.id
}
constructor(init, options) {
this.options = { ...this.constructor.defaultOptions, ...options }
this.extend(this.constructor.defaultValues)
this.init(init)
}
@action
init(init) {
const data = typeof init == 'string' ? { url: init } : init
this.extend(data)
const { prefetch } = this.options
if (prefetch) this.retrieve()
}
@action
extend(object) {
const toAssign = {}
const toExtend = {}
Object.entries(object).forEach(([key, value]) => {
;(key in this ? toAssign : toExtend)[key] = value
})
extendObservable(this, toExtend)
Object.assign(this, toAssign)
}
retrieve(...scopes) {
const { request } = this.options
if (!this.retrieved) {
return request(this.url).then(
({ data }) => {
this.extend(data)
return Resource.prototype.retrieve.apply(this, scopes)
},
(error) => {
throw error
}
)
}
const requests = scopes.map((scope) => {
const scopeUrl = `${scope}Url`
if (this[scopeUrl] == null) {
throw new Error(
`Trying to retrieve non-existing nested property '${scope}' via '${scopeUrl}'`
)
}
return request(this[scopeUrl]).then(({ data }) => {
this.extend({ [scope]: data })
return data
})
})
return Promise.allSettled(requests)
}
valueOf() {
return this.id
}
toString() {
const name = this.constructor.name || 'Resource'
return `${name}#${this.id}`
}
}
export default Resource