aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/rest/rest-data-source.ts
blob: 5c205d280ce1ecaad453817a09f1d652ffacac44 (plain) (blame)
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
import { Http, RequestOptionsArgs, URLSearchParams, Response } from '@angular/http'

import { ServerDataSource } from 'ng2-smart-table'

export class RestDataSource extends ServerDataSource {
  private updateResponse: (input: any[]) => any[]

  constructor (http: Http, endpoint: string, updateResponse?: (input: any[]) => any[]) {
    const options = {
      endPoint: endpoint,
      sortFieldKey: 'sort',
      dataKey: 'data'
    }
    super(http, options)

    if (updateResponse) {
      this.updateResponse = updateResponse
    }
  }

  protected extractDataFromResponse (res: Response) {
    const json = res.json()
    if (!json) return []
    let data = json.data

    if (this.updateResponse !== undefined) {
      data = this.updateResponse(data)
    }

    return data
  }

  protected extractTotalFromResponse (res: Response) {
    const rawData = res.json()
    return rawData ? parseInt(rawData.total, 10) : 0
  }

  protected addSortRequestOptions (requestOptions: RequestOptionsArgs) {
    const searchParams = requestOptions.params as URLSearchParams

    if (this.sortConf) {
      this.sortConf.forEach((fieldConf) => {
        const sortPrefix = fieldConf.direction === 'desc' ? '-' : ''

        searchParams.set(this.conf.sortFieldKey, sortPrefix + fieldConf.field)
      })
    }

    return requestOptions
  }

  protected addPagerRequestOptions (requestOptions: RequestOptionsArgs) {
    const searchParams = requestOptions.params as URLSearchParams

    if (this.pagingConf && this.pagingConf['page'] && this.pagingConf['perPage']) {
      const perPage = this.pagingConf['perPage']
      const page = this.pagingConf['page']

      const start = (page - 1) * perPage
      const count = perPage

      searchParams.set('start', start.toString())
      searchParams.set('count', count.toString())
    }

    return requestOptions
  }
}