-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDataService.ts
executable file
·258 lines (222 loc) · 9 KB
/
DataService.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
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
import { type PageData, EmptyPageData } from './DataGridVue'
import { type Sort, ClientSideSort } from './Sort'
import { type Filter, ClientSideFilter } from './Filter'
/**
* @group Data Service
* @description Interface to implement to define a data service to retrieve grid data.
*/
export interface DataService {
/**
* Called to get data for the currently rendered page.
* @param pageNum The page number for the page to load starting with `1` for the first page.
* If the data grid is not set configured to be pageable with the {@link DataGridVueGrid.paged}
* prop then this will always be `-1`.
* @param pageSize The maximum number of data items to display on each page. If the data grid is
* not set configured to be pageable with the {@link DataGridVueGrid.paged} prop then this
* will always be `-1`.
* @param sort The current column sort definitions in the order in which they should be applied.
* @param filter The current filter definition or undefined if no filter is set.
* @returns A Promise that returns the {@link PageData} for the current page.
*/
getPageAsync: (pageNum: number, pageSize: number, sort: Sort[], filter: Filter | undefined) => Promise<PageData>
}
/**
* @group Data Service
* @description A stub {@link DataService} that will noop the getPage call and return an empty page data object.
*/
export const StubDataService = {
getPageAsync(pageNum: number, pageSize: number, sort: Sort[], filter: Filter | undefined): Promise<PageData> {
return Promise.resolve(EmptyPageData)
},
} as DataService
/**
* @group Data Service
* @description The client-side {@link DataService} used when {@link DataGridVueGrid.data} is specified.
*/
export class ClientSideDataService implements DataService {
dataItems: any[]
previousSortJson: string
sorted: any[]
previousFilterJson: string
filtered: any[]
constructor(dataItems: any[]) {
this.dataItems = dataItems
this.previousSortJson = ''
this.filtered = [...dataItems]
this.sorted = [...this.filtered]
this.previousFilterJson = ''
}
sort(sort: Sort[]) {
if (!sort?.length) {
this.sorted = [...this.filtered]
this.previousSortJson = '[]'
return
}
const sortJson = JSON.stringify(sort)
if (sortJson !== this.previousSortJson) {
this.sorted = [...this.filtered]
ClientSideSort.sort(sort, this.sorted)
this.previousSortJson = sortJson
}
}
filter(filter: Filter | undefined) {
if (!filter && !this.previousFilterJson) {
return
}
if (!filter && this.previousFilterJson) {
this.filtered = [...this.dataItems]
this.previousFilterJson = ''
return
}
const filterJson = JSON.stringify(filter)
if (filterJson === this.previousFilterJson) {
return
}
this.filtered = ClientSideFilter.filter(filter as Filter, this.dataItems)
this.previousFilterJson = filterJson
}
getPageAsync(pageNum: number, pageSize: number, sort: Sort[], filter: Filter | undefined): Promise<PageData> {
if (!this.dataItems.length) {
return Promise.resolve(EmptyPageData)
}
this.filter(filter)
this.sort(sort)
let paged = this.sorted
if (pageNum > 0 && pageSize > 0) {
const startIndex = pageSize * (pageNum - 1)
const endIndex = startIndex + pageSize
if (startIndex >= this.dataItems.length) {
console.warn(`ClientSideDataService - getPage - pageNum exceeds data length`)
return Promise.resolve(EmptyPageData)
}
paged = this.sorted.slice(startIndex, endIndex)
}
return Promise.resolve({
totalItems: this.filtered.length,
dataItems: paged,
})
}
}
/**
* @group Data Service
* @description Request data interface sent by the {@link ServerSideDataService}. This can be modified before
* the HTTP request is sent using the {@link BeforeRequestHandler} callback on {@link ServerSideDataServiceOptions}.
* @see {@link https://github.com/nruffing/data-grid-vue-dotnet/blob/main/DataGridVueDotnet/PageDataRequest.cs | dotnet model}
*/
export interface PageDataRequest {
/**
* @description The page number for the page to load starting with `1` for the first page.
* If the data grid is not set configured to be pageable with the {@link DataGridVueGrid.paged}
* prop then this will always be `-1`.
*/
pageNum: number
/**
* @description The maximum number of data items to display on each page. If the data grid is
* not set configured to be pageable with the {@link DataGridVueGrid.paged} prop then this
* will always be `-1`.
*/
pageSize: number
/**
* @description The current column sort definitions in the order in which they should be applied.
*/
sort: Sort[]
/**
* @description The current filter definition or undefined if no filter is set.
*/
filter: Filter | undefined
}
/**
* @group Data Service
* @description Callback type to change the {@link https://developer.mozilla.org/docs/Web/API/Request | Request}
* object before it is sent to the server from the built-in server side data service. This is useful
* when you need to map the {@link PageDataRequest} to a different data contract.
* @see {@link https://www.nuget.org/packages/DataGridVueDotnet/0.0.1-alpha | dotnet IQueryable helpers}
*/
export type BeforeRequestHandler = (request: Request, body: PageDataRequest) => Promise<Request>
/**
* @group Data Service
* @description Callback type to change the {@link https://developer.mozilla.org/docs/Web/API/Response | Response}
* object before it is handled by the data grid from the built-in server side data service.
* This is useful when you need to map the servers response data back to {@link PageData}.
* @see {@link https://www.nuget.org/packages/DataGridVueDotnet/0.0.1-alpha | dotnet IQueryable helpers}
*/
export type ResponseHandler = (response: Response) => Promise<PageData>
/**
* @group Data Service
* @description Options to configure the built-in server-side data service including the POST url and optional
* callbacks to alter the data format of the request and response allowing. This allows the built-in data service
* to handle the data contract of any server. The server-side data service will only attempt to deserialize the response
* body if the HTTP status code is `200 OK` and the `Content-Type` response header is `application/json`.
* @see {@link ServerSideDataService}
* @see {@link https://www.nuget.org/packages/DataGridVueDotnet/0.0.1-alpha | dotnet IQueryable helpers}
*/
export interface ServerSideDataServiceOptions {
/**
* @description The full HTTP/HTTPS url to send the POST request.
* Use {@link beforeRequest} callback to alter the HTTP verb or headers.
*/
postRoute?: string | URL
/**
* Optional callback to change the {@link https://developer.mozilla.org/docs/Web/API/Request | Request}
* object before it is sent to the server. This is useful when you need to map the {@link PageDataRequest}
* to a different data contract.
*/
beforeRequest?: BeforeRequestHandler
/**
* Optional callback to change the {@link https://developer.mozilla.org/docs/Web/API/Response | Response}
* object before it is handled by the data grid. This is useful when you need to map the servers response
* data back to {@link PageData}.
*/
responseHandler?: ResponseHandler
}
/**
* @group Data Service
* @description The server-side {@link DataService} used when {@link DataGridVueGrid.serverSideOptions} is specified.
* This data service will only attempt to deserialize the response body if the HTTP status code is `200 OK` and the
* `Content-Type` response header is `application/json`.
*/
export class ServerSideDataService implements DataService {
options: ServerSideDataServiceOptions
constructor(options: ServerSideDataServiceOptions) {
this.options = options
}
async getPageAsync(pageNum: number, pageSize: number, sort: Sort[], filter: Filter | undefined): Promise<PageData> {
const body = {
pageNum,
pageSize,
sort,
filter,
} as PageDataRequest
let request = new Request(this.options.postRoute ?? '', {
method: 'POST',
headers: new Headers({
Accept: 'application/json',
'Content-Type': 'application/json',
}),
mode: 'cors',
cache: 'no-cache',
body: JSON.stringify(body),
})
if (this.options.beforeRequest) {
request = await this.options.beforeRequest(request, body)
}
if (!request.url) {
console.error(
'A request url for the page data request has to be set either by supplying it directly or setting it as part of beforeRequest handler.',
)
return EmptyPageData
}
var response = await fetch(request)
if (this.options.responseHandler) {
return await this.options.responseHandler(response)
}
if (response.status >= 400) {
console.error('Failed to retrieve page data', await response.text(), response)
return EmptyPageData
}
if (response.status === 200 && response.headers.get('Content-Type')?.includes('application/json')) {
return response.json()
}
return EmptyPageData
}
}