mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
132 lines
3.9 KiB
TypeScript
132 lines
3.9 KiB
TypeScript
import { APP_BASE_HREF, CommonModule, DOCUMENT } from '@angular/common';
|
|
import { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';
|
|
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
|
import { EffectsModule } from '@ngrx/effects';
|
|
import { RouterStateSerializer, StoreRouterConnectingModule } from '@ngrx/router-store';
|
|
import { MetaReducer, StoreModule, USER_PROVIDED_META_REDUCERS } from '@ngrx/store';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { ScrollToModule } from '@nicky-lenaers/ngx-scroll-to';
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
import { AppComponent } from './app.component';
|
|
import { appEffects } from './app.effects';
|
|
import { appMetaReducers, debugMetaReducers } from './app.metareducers';
|
|
import { appReducers, AppState, storeModuleConfig } from './app.reducer';
|
|
import { CoreModule } from './core/core.module';
|
|
import { ClientCookieService } from './core/services/client-cookie.service';
|
|
import { NavbarModule } from './navbar/navbar.module';
|
|
import { DSpaceRouterStateSerializer } from './shared/ngrx/dspace-router-state-serializer';
|
|
import { SharedModule } from './shared/shared.module';
|
|
import { environment } from '../environments/environment';
|
|
import { AuthInterceptor } from './core/auth/auth.interceptor';
|
|
import { LocaleInterceptor } from './core/locale/locale.interceptor';
|
|
import { XsrfInterceptor } from './core/xsrf/xsrf.interceptor';
|
|
import { LogInterceptor } from './core/log/log.interceptor';
|
|
import { EagerThemesModule } from '../themes/eager-themes.module';
|
|
import { APP_CONFIG, AppConfig } from '../config/app-config.interface';
|
|
import { StoreDevModules } from '../config/store/devtools';
|
|
import { RootModule } from './root.module';
|
|
|
|
export function getConfig() {
|
|
return environment;
|
|
}
|
|
|
|
const getBaseHref = (document: Document, appConfig: AppConfig): string => {
|
|
const baseTag = document.querySelector('head > base');
|
|
baseTag.setAttribute('href', `${appConfig.ui.nameSpace}${appConfig.ui.nameSpace.endsWith('/') ? '' : '/'}`);
|
|
return baseTag.getAttribute('href');
|
|
};
|
|
|
|
export function getMetaReducers(appConfig: AppConfig): MetaReducer<AppState>[] {
|
|
return appConfig.debug ? [...appMetaReducers, ...debugMetaReducers] : appMetaReducers;
|
|
}
|
|
|
|
const IMPORTS = [
|
|
CommonModule,
|
|
SharedModule,
|
|
NavbarModule,
|
|
HttpClientModule,
|
|
AppRoutingModule,
|
|
CoreModule.forRoot(),
|
|
ScrollToModule.forRoot(),
|
|
NgbModule,
|
|
TranslateModule.forRoot(),
|
|
EffectsModule.forRoot(appEffects),
|
|
StoreModule.forRoot(appReducers, storeModuleConfig),
|
|
StoreRouterConnectingModule.forRoot(),
|
|
StoreDevModules,
|
|
EagerThemesModule,
|
|
RootModule,
|
|
];
|
|
|
|
const PROVIDERS = [
|
|
{
|
|
provide: APP_BASE_HREF,
|
|
useFactory: getBaseHref,
|
|
deps: [DOCUMENT, APP_CONFIG]
|
|
},
|
|
{
|
|
provide: USER_PROVIDED_META_REDUCERS,
|
|
useFactory: getMetaReducers,
|
|
deps: [APP_CONFIG]
|
|
},
|
|
{
|
|
provide: RouterStateSerializer,
|
|
useClass: DSpaceRouterStateSerializer
|
|
},
|
|
ClientCookieService,
|
|
// register AuthInterceptor as HttpInterceptor
|
|
{
|
|
provide: HTTP_INTERCEPTORS,
|
|
useClass: AuthInterceptor,
|
|
multi: true
|
|
},
|
|
// register LocaleInterceptor as HttpInterceptor
|
|
{
|
|
provide: HTTP_INTERCEPTORS,
|
|
useClass: LocaleInterceptor,
|
|
multi: true
|
|
},
|
|
// register XsrfInterceptor as HttpInterceptor
|
|
{
|
|
provide: HTTP_INTERCEPTORS,
|
|
useClass: XsrfInterceptor,
|
|
multi: true
|
|
},
|
|
// register LogInterceptor as HttpInterceptor
|
|
{
|
|
provide: HTTP_INTERCEPTORS,
|
|
useClass: LogInterceptor,
|
|
multi: true
|
|
},
|
|
];
|
|
|
|
const DECLARATIONS = [
|
|
AppComponent,
|
|
];
|
|
|
|
const EXPORTS = [
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [
|
|
BrowserModule.withServerTransition({ appId: 'dspace-angular' }),
|
|
...IMPORTS
|
|
],
|
|
providers: [
|
|
...PROVIDERS
|
|
],
|
|
declarations: [
|
|
...DECLARATIONS,
|
|
],
|
|
exports: [
|
|
...EXPORTS,
|
|
...DECLARATIONS,
|
|
]
|
|
})
|
|
export class AppModule {
|
|
|
|
}
|