{"version":3,"file":"905.06c14d1007a54516.js","mappings":"gOAaO,IAAMA,EAAmB,UAAAC,EAA1B,MAAOD,EAIXE,YAAmBC,EAAwBC,GACzCC,KAAKF,WAAaA,EAClBE,KAAKD,qBAAuBA,CAC9B,CAEOE,SACL,OAAOD,KAAKF,WAAWI,IAAI,GAAGF,KAAKD,qBAAqBI,yBAAyBC,QAC/EC,KAASC,MACAC,KAAID,EAAeE,GACjBC,IAAoBC,SAASF,KAI5C,CAEOG,OAAOC,GACZ,OAAOZ,KAAKF,WAAWa,OAAa,GAAGX,KAAKD,qBAAqBI,yBAAyBS,IAC5F,CAEOC,YAAYC,GACjB,OAAOd,KAAKF,WAAWa,OAAO,GAAGX,KAAKD,qBAAqBI,qCAAsC,CAACY,KAAMD,IAAMV,QAC5GC,KAASW,GACAA,EAAaT,IAAKU,GAChBC,IAAoBR,SAASO,KAI5C,CAEOE,QAAQP,GACb,OAAOZ,KAAKF,WAAWI,IAAI,GAAGF,KAAKD,qBAAqBI,yBAAyBS,KAAMR,QAAKC,KAASG,GAAqBY,IAAQV,SAASF,IAC7I,CAEOa,KAAKC,GACV,OAAOtB,KAAKF,WAAWyB,KAAK,GAAGvB,KAAKD,qBAAqBI,wBAAyBmB,EAAKE,UAAUpB,QAAKC,KAASoB,GAA2BA,EAASb,IACrJ,CAEOc,OAAOJ,GACZ,OAAOtB,KAAKF,WAAW6B,IAAU,GAAG3B,KAAKD,qBAAqBI,yBAAyBmB,EAAKV,KAAMU,EAAKE,SACzG,CAEOI,sBAAsBC,GAC3B,MAAMC,GAAS,IAAIC,MAAaC,IAAI,OAAQH,GAE5C,OAAO7B,KAAKF,WAAWI,IAAI,GAAGF,KAAKD,qBAAqBI,mCAAoC,CAAC2B,WAAS1B,QACpGC,KAASoB,GACAA,EAASQ,eAGtB,CAEOC,aAAatB,GAClB,OAAOZ,KAAKF,WACTI,IAAI,GAAGF,KAAKD,qBAAqBI,yBAAyBS,eAC1DR,QAAKC,KAAS8B,MAAuB5B,KAAI4B,EAAgBC,GAAsBC,MAAS3B,SAAS0B,KACtG,WA3DWzC,0CAAmB2C,MAAAC,MAAAD,MAAAE,KAAA,4BAAnB7C,EAAmB8C,QAAnB9C,EAAmB+C,YAAnB/C,CAAmB,gECDzB,IAAMgD,EAA0B,UAAAC,EAAjC,MAAOD,qDAA0B,yBAA1BA,gCAJDE,OAICF,CAA0B,iQCuBhC,IAAMG,EAAe,UAAAC,EAAtB,MAAOD,qDAAe,yBAAfA,iCAXA,CACT,CAACE,QAASC,IAAWC,SAAUC,KAC/B,CAACH,QAASI,IAAmBF,SAAUG,KACvC,CAACL,QAASM,IAAmBJ,SAAUK,KACvC,CAACP,QAASQ,IAAYN,SAAUO,KAChC,CAACT,QAASU,IAAQR,SAAUS,KAC5B,CAACX,QAASY,IAAUV,SAAUvD,KAC9BkE,KACDC,QAAA,CATSjB,IAAckB,IAAsBC,KAAcrB,OAYjDG,CAAe","names":["HttpArticlesService","_HttpArticlesService","constructor","httpClient","backendConfiguration","this","getAll","get","getEndpoint","pipe","rxjsMap","articlesJSON","map","articleJSON","OverviewListArticle","fromJSON","delete","id","deleteMulti","ids","body","reponsesJSON","reponseJSON","MultiDeleteResponse","getById","Article","save","item","post","toJSON","response","update","put","isIdentifierAvailable","name","params","HttpParams","set","nameAvailable","getConflicts","conflictsJSON","conflictJSON","Conflict","i0","i1","i2","factory","ɵfac","DrawingLibrarySharedModule","_DrawingLibrarySharedModule","SharedModule","OrderbookModule","_OrderbookModule","provide","ORDERBOOK","useClass","HttpOrderbookService","COLORED_YARN_SETS","HttpColoredYarnSetsService","MACHINE_QUALITIES","HttpMachineQualitiesService","COLOR_SETS","HttpColorSetsService","COLORS","HttpColorsService","ARTICLES","OrderLinesGridService","imports","orderbookDataRouting","AgGridModule"],"ignoreList":[],"sourceRoot":"webpack:///","sources":["./apps/texconnect/src/app/infrastructure/http/article/http-articles.service.ts","./apps/texconnect/src/app/presentation/pages/texedit/drawing-library/drawing-library-shared.module.ts","./apps/texconnect/src/app/presentation/pages/texfab/orderbook/orderbook.module.ts"],"sourcesContent":["import {HttpClient, HttpParams} from '@angular/common/http';\nimport {Injectable} from '@angular/core';\nimport {BackendConfiguration} from '@application/configuration/backend-configuration';\nimport {Article} from '@domain/article/article';\nimport {MultiDeleteResponse} from '@domain/textile-data/multi-delete-reponse';\nimport {Articles} from '@infrastructure/http/article/articles';\nimport {OverviewListArticle} from '@presentation/pages/texfab/article/overview/overview-list-article';\nimport {Conflict} from '@vdw/angular-component-library';\nimport {map} from 'lodash-es';\nimport {Observable} from 'rxjs';\nimport {map as rxjsMap} from 'rxjs/operators';\n\n@Injectable()\nexport class HttpArticlesService implements Articles {\n private httpClient: HttpClient;\n private backendConfiguration: BackendConfiguration;\n\n public constructor(httpClient: HttpClient, backendConfiguration: BackendConfiguration) {\n this.httpClient = httpClient;\n this.backendConfiguration = backendConfiguration;\n }\n\n public getAll(): Observable {\n return this.httpClient.get(`${this.backendConfiguration.getEndpoint()}articles`).pipe(\n rxjsMap((articlesJSON: any) => {\n return map(articlesJSON, (articleJSON: any) => {\n return OverviewListArticle.fromJSON(articleJSON);\n });\n })\n );\n }\n\n public delete(id: number | string): Observable {\n return this.httpClient.delete(`${this.backendConfiguration.getEndpoint()}articles/${id}`);\n }\n\n public deleteMulti(ids: number[]): Observable {\n return this.httpClient.delete(`${this.backendConfiguration.getEndpoint()}articles/multi-delete`, {body: ids}).pipe(\n rxjsMap((reponsesJSON: any) => {\n return reponsesJSON.map((reponseJSON: any) => {\n return MultiDeleteResponse.fromJSON(reponseJSON);\n });\n })\n );\n }\n\n public getById(id: number | string): Observable
{\n return this.httpClient.get(`${this.backendConfiguration.getEndpoint()}articles/${id}`).pipe(rxjsMap((articleJSON: any) => Article.fromJSON(articleJSON)));\n }\n\n public save(item: Article): Observable {\n return this.httpClient.post(`${this.backendConfiguration.getEndpoint()}articles`, item.toJSON()).pipe(rxjsMap((response: {id: number}) => response.id));\n }\n\n public update(item: Article): Observable {\n return this.httpClient.put(`${this.backendConfiguration.getEndpoint()}articles/${item.id}`, item.toJSON());\n }\n\n public isIdentifierAvailable(name: string): Observable {\n const params = new HttpParams().set('name', name);\n\n return this.httpClient.get(`${this.backendConfiguration.getEndpoint()}articles/check-name`, {params}).pipe(\n rxjsMap((response: {nameAvailable: boolean}) => {\n return response.nameAvailable;\n })\n );\n }\n\n public getConflicts(id: number): Observable {\n return this.httpClient\n .get(`${this.backendConfiguration.getEndpoint()}articles/${id}/conflicts`)\n .pipe(rxjsMap((conflictsJSON: any) => map(conflictsJSON, (conflictJSON: any) => Conflict.fromJSON(conflictJSON))));\n }\n}\n","import {NgModule} from '@angular/core';\nimport {DownloadDrawingComponent} from '@presentation/components/download/download-drawing.component';\nimport {DrawingListComponent} from '@presentation/components/drawing-list/drawing-list.component';\nimport {SharedModule} from '@shared/shared.module';\nimport {DrawingLibraryListViewComponent} from './drawing-library-listview/drawing-library-listview.component';\nimport {DrawingLibraryNewListViewComponent} from './drawing-library-new-listview/drawing-library-new-listview.component';\n\n@NgModule({\n imports: [SharedModule],\n exports: [DrawingListComponent, DrawingLibraryListViewComponent, DrawingLibraryNewListViewComponent],\n declarations: [DrawingListComponent, DrawingLibraryListViewComponent, DownloadDrawingComponent, DrawingLibraryNewListViewComponent]\n})\nexport class DrawingLibrarySharedModule {}\n","import {NgModule} from '@angular/core';\nimport {OrderLinesGridService} from '@application/helper/orderbook/order-lines-grid.service';\nimport {ARTICLES} from '@infrastructure/http/article/articles';\nimport {HttpArticlesService} from '@infrastructure/http/article/http-articles.service';\nimport {COLOR_SETS} from '@infrastructure/http/color-set/color-sets';\nimport {HttpColorSetsService} from '@infrastructure/http/color-set/http-color-sets.service';\nimport {COLORS} from '@infrastructure/http/color/colors';\nimport {HttpColorsService} from '@infrastructure/http/color/http-colors.service';\nimport {COLORED_YARN_SETS} from '@infrastructure/http/colored-yarn-set/colored-yarn-sets';\nimport {HttpColoredYarnSetsService} from '@infrastructure/http/colored-yarn-set/http-colored-yarn-sets.service';\nimport {HttpMachineQualitiesService} from '@infrastructure/http/machine-quality/http-machine-qualities.service';\nimport {MACHINE_QUALITIES} from '@infrastructure/http/machine-quality/machine-qualities';\nimport {HttpOrderbookService} from '@infrastructure/http/orderbook/http-orderbook.service';\nimport {ORDERBOOK} from '@infrastructure/http/orderbook/orderbook';\nimport {DrawingLibrarySharedModule} from '@presentation/pages/texedit/drawing-library/drawing-library-shared.module';\nimport {orderbookDataRouting} from '@presentation/pages/texfab/orderbook/orderbook.routing';\nimport {SharedModule} from '@shared/shared.module';\nimport {AgGridModule} from 'ag-grid-angular';\nimport {OrderbookOverviewPageComponent} from './overview/orderbook-overview-page.component';\nimport {OrderlineDetailsSidebarComponent} from './overview/orderline-details-sidebar/orderline-details-sidebar.component';\nimport {OrderbookCustomSettingsComponent} from './settings/orderbook-custom-settings.component';\n\n@NgModule({\n imports: [SharedModule, orderbookDataRouting, AgGridModule, DrawingLibrarySharedModule],\n providers: [\n {provide: ORDERBOOK, useClass: HttpOrderbookService},\n {provide: COLORED_YARN_SETS, useClass: HttpColoredYarnSetsService},\n {provide: MACHINE_QUALITIES, useClass: HttpMachineQualitiesService},\n {provide: COLOR_SETS, useClass: HttpColorSetsService},\n {provide: COLORS, useClass: HttpColorsService},\n {provide: ARTICLES, useClass: HttpArticlesService},\n OrderLinesGridService\n ],\n declarations: [OrderbookOverviewPageComponent, OrderlineDetailsSidebarComponent, OrderbookCustomSettingsComponent]\n})\nexport class OrderbookModule {}\n"],"x_google_ignoreList":[]}