blob: 4560c2024983a728ffee0d681eb4fa759e1fef80 (
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
|
import { Injectable } from '@angular/core'
import { HttpParams } from '@angular/common/http'
import { SortMeta } from 'primeng/components/common/sortmeta'
import { ComponentPagination } from './component-pagination.model'
import { RestPagination } from './rest-pagination'
@Injectable()
export class RestService {
addRestGetParams (params: HttpParams, pagination?: RestPagination, sort?: SortMeta | string) {
let newParams = params
if (pagination !== undefined) {
newParams = newParams.set('start', pagination.start.toString())
.set('count', pagination.count.toString())
}
if (sort !== undefined) {
let sortString = ''
if (typeof sort === 'string') {
sortString = sort
} else {
const sortPrefix = sort.order === 1 ? '' : '-'
sortString = sortPrefix + sort.field
}
newParams = newParams.set('sort', sortString)
}
return newParams
}
addObjectParams (params: HttpParams, object: object) {
for (const name of Object.keys(object)) {
const value = object[name]
if (!value) continue
if (Array.isArray(value) && value.length !== 0) {
for (const v of value) params = params.append(name, v)
} else {
params = params.append(name, value)
}
}
return params
}
componentPaginationToRestPagination (componentPagination: ComponentPagination): RestPagination {
const start: number = (componentPagination.currentPage - 1) * componentPagination.itemsPerPage
const count: number = componentPagination.itemsPerPage
return { start, count }
}
}
|