-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathCustom.ts
More file actions
51 lines (47 loc) · 1.54 KB
/
Custom.ts
File metadata and controls
51 lines (47 loc) · 1.54 KB
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
import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { IWpApiCustom } from './interfaces';
import { WpApiLoader } from './Loaders';
import { WpApiParent } from './Parent';
export class Custom extends WpApiParent implements IWpApiCustom {
constructor(
public wpApiLoader: WpApiLoader,
public http: HttpClient,
public entityName: string
) {
super(wpApiLoader, http);
}
getList(options = {}) {
return this.httpGet(`/${this.entityName}`, options)
}
get(customId: number, options = {}) {
return this.httpGet(`/${this.entityName}/${customId}`, options)
}
create(body = {}, options = {}) {
return this.httpPost(`/${this.entityName}`, body, options)
}
update(customId: number, body = {}, options = {}) {
return this.httpPost(`/${this.entityName}/${customId}`, body, options)
}
delete(customId: number, options = {}) {
return this.httpDelete(`/${this.entityName}/${customId}`, options)
}
}
/******************************************************************************
* Service: WpApiCustom
******************************************************************************/
@Injectable()
export class WpApiCustom extends WpApiParent {
constructor(
public wpApiLoader: WpApiLoader,
public http: HttpClient
) {
super(wpApiLoader, http);
}
getInstance(entityName: string = '') {
if (typeof entityName !== 'string') {
throw new Error(`getInstance needs an entity name`);
}
return new Custom(this.wpApiLoader, this.http, entityName);
}
}