]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/catalog/catalog.module.ts
LP1840050 Modularize various standalone components + more.
[working/Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / catalog / catalog.module.ts
1 import {NgModule} from '@angular/core';
2 import {FmRecordEditorModule} from '@eg/share/fm-editor/fm-editor.module';
3 import {StaffCommonModule} from '@eg/staff/common.module';
4 import {CatalogCommonModule} from '@eg/share/catalog/catalog-common.module';
5 import {CatalogRoutingModule} from './routing.module';
6 import {HoldsModule} from '@eg/staff/share/holds/holds.module';
7 import {HoldingsModule} from '@eg/staff/share/holdings/holdings.module';
8 import {BookingModule} from '@eg/staff/share/booking/booking.module';
9 import {CatalogComponent} from './catalog.component';
10 import {SearchFormComponent} from './search-form.component';
11 import {ResultsComponent} from './result/results.component';
12 import {RecordComponent} from './record/record.component';
13 import {CopiesComponent} from './record/copies.component';
14 import {ResultPaginationComponent} from './result/pagination.component';
15 import {ResultFacetsComponent} from './result/facets.component';
16 import {ResultRecordComponent} from './result/record.component';
17 import {StaffCatalogService} from './catalog.service';
18 import {RecordPaginationComponent} from './record/pagination.component';
19 import {RecordActionsComponent} from './record/actions.component';
20 import {BasketActionsComponent} from './basket-actions.component';
21 import {HoldComponent} from './hold/hold.component';
22 import {PartsComponent} from './record/parts.component';
23 import {PartMergeDialogComponent} from './record/part-merge-dialog.component';
24 import {BrowseComponent} from './browse.component';
25 import {BrowseResultsComponent} from './browse/results.component';
26 import {HoldingsMaintenanceComponent} from './record/holdings.component';
27 import {ConjoinedComponent} from './record/conjoined.component';
28 import {CnBrowseComponent} from './cnbrowse.component';
29 import {CnBrowseResultsComponent} from './cnbrowse/results.component';
30 import {SearchTemplatesComponent} from './search-templates.component';
31 import {MarcEditModule} from '@eg/staff/share/marc-edit/marc-edit.module';
32
33 @NgModule({
34   declarations: [
35     CatalogComponent,
36     ResultsComponent,
37     RecordComponent,
38     CopiesComponent,
39     SearchFormComponent,
40     ResultRecordComponent,
41     ResultFacetsComponent,
42     ResultPaginationComponent,
43     RecordPaginationComponent,
44     RecordActionsComponent,
45     BasketActionsComponent,
46     HoldComponent,
47     PartsComponent,
48     PartMergeDialogComponent,
49     BrowseComponent,
50     BrowseResultsComponent,
51     ConjoinedComponent,
52     HoldingsMaintenanceComponent,
53     SearchTemplatesComponent,
54     CnBrowseComponent,
55     CnBrowseResultsComponent
56   ],
57   imports: [
58     StaffCommonModule,
59     FmRecordEditorModule,
60     CatalogCommonModule,
61     CatalogRoutingModule,
62     HoldsModule,
63     HoldingsModule,
64     BookingModule,
65     MarcEditModule
66   ],
67   providers: [
68     StaffCatalogService
69   ]
70 })
71
72 export class CatalogModule {
73
74 }