mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00

# Conflicts: # package.json # src/app/app.component.html # src/app/app.component.ts # src/app/core/cache/request-cache.reducer.spec.ts # src/app/core/cache/request-cache.service.spec.ts # src/app/core/core.module.ts # src/app/shared/shared.module.ts
64 lines
1.7 KiB
TypeScript
64 lines
1.7 KiB
TypeScript
import { NgModule, Optional, SkipSelf, ModuleWithProviders } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { SharedModule } from "../shared/shared.module";
|
|
|
|
import { isNotEmpty } from "../shared/empty.util";
|
|
import { FooterComponent } from "./footer/footer.component";
|
|
import { DSpaceRESTv2Service } from "./dspace-rest-v2/dspace-rest-v2.service";
|
|
import { ObjectCacheService } from "./cache/object-cache.service";
|
|
import { ResponseCacheService } from "./cache/response-cache.service";
|
|
import { CollectionDataService } from "./data/collection-data.service";
|
|
import { ItemDataService } from "./data/item-data.service";
|
|
import { RequestService } from "./data/request.service";
|
|
import { RemoteDataBuildService } from "./cache/builders/remote-data-build.service";
|
|
import { CommunityDataService } from "./data/community-data.service";
|
|
import { PaginationOptions } from "./cache/models/pagination-options.model";
|
|
|
|
const IMPORTS = [
|
|
CommonModule,
|
|
SharedModule
|
|
];
|
|
|
|
const DECLARATIONS = [
|
|
FooterComponent
|
|
];
|
|
|
|
const EXPORTS = [
|
|
FooterComponent
|
|
];
|
|
|
|
const PROVIDERS = [
|
|
CommunityDataService,
|
|
CollectionDataService,
|
|
ItemDataService,
|
|
DSpaceRESTv2Service,
|
|
ObjectCacheService,
|
|
PaginationOptions,
|
|
RequestService,
|
|
RemoteDataBuildService
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [ ...IMPORTS ],
|
|
declarations: [...DECLARATIONS],
|
|
exports: [...EXPORTS],
|
|
providers: [...PROVIDERS]
|
|
})
|
|
export class CoreModule {
|
|
constructor (@Optional() @SkipSelf() parentModule: CoreModule) {
|
|
if (isNotEmpty(parentModule)) {
|
|
throw new Error(
|
|
'CoreModule is already loaded. Import it in the AppModule only');
|
|
}
|
|
}
|
|
|
|
static forRoot(): ModuleWithProviders {
|
|
return {
|
|
ngModule: CoreModule,
|
|
providers: [
|
|
...PROVIDERS
|
|
]
|
|
};
|
|
}
|
|
}
|