AW-1415 Add postItemPackageTask
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
This commit is contained in:
parent
fdfa7d3387
commit
309b320534
@ -3,6 +3,11 @@ import { Store} from '@ngrx/store';
|
|||||||
import * as appCommonReducer from '../reducers/app-common.reducer'
|
import * as appCommonReducer from '../reducers/app-common.reducer'
|
||||||
import { IPackages } from '../models/package';
|
import { IPackages } from '../models/package';
|
||||||
|
|
||||||
|
import { IItem } from '../models/item';
|
||||||
|
import { IItemTask } from '../models/itemTask';
|
||||||
|
import { HttpClient } from "@angular/common/http";
|
||||||
|
import { AppConfig } from "../shared/app.config";
|
||||||
|
import { Observable } from 'rxjs';
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root',
|
providedIn: 'root',
|
||||||
@ -11,14 +16,22 @@ import { IPackages } from '../models/package';
|
|||||||
export class PackageService {
|
export class PackageService {
|
||||||
private packages$:IPackages = {};
|
private packages$:IPackages = {};
|
||||||
|
|
||||||
constructor(private store$: Store<appCommonReducer.State>) {
|
constructor(private store$: Store<appCommonReducer.State>, public httpClient: HttpClient, public appConfig: AppConfig) {
|
||||||
store$.select(appCommonReducer.SelectGetUserPackages).subscribe((packages) => {
|
store$.select(appCommonReducer.SelectGetUserPackages).subscribe((packages) => {
|
||||||
this.packages$ = packages;
|
this.packages$ = packages;
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ApiEndpoint() {
|
||||||
|
return this.appConfig.getConfig("apiEndPoint");
|
||||||
|
}
|
||||||
|
|
||||||
hasPackage(id:string):boolean {
|
hasPackage(id:string):boolean {
|
||||||
if(!this.packages$[id]) return false;
|
if(!this.packages$[id]) return false;
|
||||||
return this.packages$[id].enabled == true;
|
return this.packages$[id].enabled == true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
postItemPackageTask(item: IItem, task: IItemTask): Observable<IItemTask> {
|
||||||
|
return this.httpClient.post<IItemTask>(`${this.ApiEndpoint()}/api/v1/items/${item.code}/packagetasks`, task);
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user