X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fcore%2Fcore.module.ts;h=04be0671c401ca61e7a80bb9e256cabf18ef636b;hb=dd24f1bb0a4b252e5342b251ba36853364da7b8e;hp=27e6ee1fb765b2d73aa5e392db9f7001a79bcfc9;hpb=50b0c262fd446e9f57630aa5775e1b4708bdf4cb;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/core/core.module.ts b/client/src/app/core/core.module.ts index 27e6ee1fb..04be0671c 100644 --- a/client/src/app/core/core.module.ts +++ b/client/src/app/core/core.module.ts @@ -1,24 +1,104 @@ -import { NgModule, Optional, SkipSelf } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { HttpModule } from '@angular/http'; -import { RouterModule } from '@angular/router'; - -import { AuthService } from './auth'; -import { MenuComponent } from './menu'; -import { throwIfAlreadyLoaded } from './module-import-guard'; +import { HotkeyModule } from 'angular2-hotkeys' +import { MessageService } from 'primeng/api' +import { ToastModule } from 'primeng/toast' +import { CommonModule } from '@angular/common' +import { NgModule, Optional, SkipSelf } from '@angular/core' +import { BrowserAnimationsModule } from '@angular/platform-browser/animations' +import { PeerTubeSocket } from '@app/core/notification/peertube-socket.service' +import { HooksService, PluginService } from '@app/core/plugins' +import { AuthService } from './auth' +import { ConfirmService } from './confirm' +import { CheatSheetComponent } from './hotkeys' +import { MenuService } from './menu' +import { throwIfAlreadyLoaded } from './module-import-guard' +import { Notifier } from './notification' +import { HtmlRendererService, LinkifierService, MarkdownService } from './renderer' +import { RestExtractor, RestService } from './rest' +import { + HomepageRedirectComponent, + LoginGuard, + MetaGuard, + MetaService, + PeerTubeRouterService, + RedirectService, + ScrollService, + UnloggedGuard, + UserRightGuard +} from './routing' +import { CanDeactivateGuard } from './routing/can-deactivate-guard.service' +import { ServerConfigResolver } from './routing/server-config-resolver.service' +import { ScopedTokensService } from './scoped-tokens' +import { ServerService } from './server' +import { ThemeService } from './theme' +import { UserService } from './users' +import { LocalStorageService, ScreenService, SessionStorageService } from './wrappers' @NgModule({ imports: [ CommonModule, - HttpModule, - RouterModule + BrowserAnimationsModule, + + ToastModule, + + HotkeyModule.forRoot({ + cheatSheetCloseEsc: true + }) + ], + + declarations: [ + CheatSheetComponent, + HomepageRedirectComponent + ], + + exports: [ + ToastModule, + + CheatSheetComponent, + HomepageRedirectComponent ], - declarations: [ MenuComponent ], - exports: [ MenuComponent ], - providers: [ AuthService ] + + providers: [ + AuthService, + ScopedTokensService, + ConfirmService, + ServerService, + ThemeService, + MenuService, + LoginGuard, + UserRightGuard, + UnloggedGuard, + + PluginService, + HooksService, + + HtmlRendererService, + LinkifierService, + MarkdownService, + + RestExtractor, + RestService, + + UserService, + + ScreenService, + LocalStorageService, + SessionStorageService, + + RedirectService, + Notifier, + MessageService, + PeerTubeSocket, + ServerConfigResolver, + CanDeactivateGuard, + PeerTubeRouterService, + ScrollService, + + MetaService, + MetaGuard + ] }) export class CoreModule { - constructor( @Optional() @SkipSelf() parentModule: CoreModule) { - throwIfAlreadyLoaded(parentModule, 'CoreModule'); + constructor (@Optional() @SkipSelf() parentModule: CoreModule) { + throwIfAlreadyLoaded(parentModule, 'CoreModule') } }