-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathRequest.ts
175 lines (145 loc) · 4.08 KB
/
Request.ts
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
import { AxiosInstance, AxiosResponse } from 'axios'
import { Model, Record, Collections } from '@vuex-orm/core'
import Config from '../contracts/Config'
import Response from './Response'
export default class Request {
/**
* The model class.
*/
model: typeof Model
/**
* The default config.
*/
config: Config = {
save: true
}
/**
* Create a new api instance.
*/
constructor (model: typeof Model) {
this.model = model
this.registerActions()
}
/**
* Index key for the user defined actions.
*/
[action: string]: any
/**
* Get the axios client.
*/
get axios (): AxiosInstance {
if (!this.model.axios) {
throw new Error('[Vuex ORM Axios] The axios instance is not registered. Please register the axios instance to the model.')
}
return this.model.axios
}
/**
* Register actions from the model config.
*/
private registerActions (): void {
const actions = this.model.apiConfig.actions
if (!actions) {
return
}
for (const name in actions) {
const action = actions[name]
typeof action === 'function'
? this.registerFunctionAction(name, action)
: this.registerObjectAction(name, action)
}
}
/**
* Register the given object action.
*/
private registerObjectAction (name: string, action: any): void {
this[name] = (config: Config) => {
return this.request({ ...action, ...config })
}
}
/**
* Register the given function action.
*/
private registerFunctionAction (name: string, action: any): void {
this[name] = action.bind(this)
}
/**
* Perform a get request.
*/
get (url: string, config: Config = {}): Promise<Response> {
return this.request({ method: 'get', url, ...config })
}
/**
* Perform a post request.
*/
post (url: string, data: any = {}, config: Config = {}): Promise<Response> {
return this.request({ method: 'post', url, data, ...config })
}
/**
* Perform a put request.
*/
put (url: string, data: any = {}, config: Config = {}): Promise<Response> {
return this.request({ method: 'put', url, data, ...config })
}
/**
* Perform a patch request.
*/
patch (url: string, data: any = {}, config: Config = {}): Promise<Response> {
return this.request({ method: 'patch', url, data, ...config })
}
/**
* Perform a delete request.
*/
delete (url: string, config: Config = {}): Promise<Response> {
return this.request({ method: 'delete', url, ...config })
}
/**
* Perform an api request.
*/
async request (config: Config): Promise<Response> {
const requestConfig = this.createConfig(config)
const response = await this.axios.request(requestConfig)
const entities = await this.persistResponseData(response, requestConfig)
return new Response(this.model, requestConfig, response, entities)
}
/**
* Create a new config by merging the global config, the model config,
* and the given config.
*/
private createConfig (config: Config): Config {
return {
...this.config,
...this.model.globalApiConfig,
...this.model.apiConfig,
...config
}
}
/**
* Persist the response data to the vuex store.
*/
private async persistResponseData (response: AxiosResponse, config: Config): Promise<Collections | null> {
if (!config.save) {
return null
}
if (config.delete !== undefined) {
await this.model.delete(config.delete as any)
return null
}
return this.model.insertOrUpdate({
data: this.getDataFromResponse(response, config)
})
}
/**
* Get data from the given response object. If the `dataTransformer` config is
* provided, it tries to execute the method with the response as param. If the
* `dataKey` config is provided, it tries to fetch the data at that key.
*/
private getDataFromResponse (response: AxiosResponse, config: Config): Record | Record[] {
if (config.dataTransformer) {
return config.dataTransformer(response)
}
if (config.dataKey) {
return response.data[config.dataKey]
}
return response.data
}
}