X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fcore%2Fcore.module.ts;h=04be0671c401ca61e7a80bb9e256cabf18ef636b;hb=dd24f1bb0a4b252e5342b251ba36853364da7b8e;hp=48fec2d439a0bed607f69cc09077579f237e7d45;hpb=7ddd02c9b8c1e088f6679a2227f105e6439fc992;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/core/core.module.ts b/client/src/app/core/core.module.ts index 48fec2d43..04be0671c 100644 --- a/client/src/app/core/core.module.ts +++ b/client/src/app/core/core.module.ts @@ -1,36 +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 { SimpleNotificationsModule } from 'angular2-notifications'; - -import { AuthService } from './auth'; -import { MenuComponent, MenuAdminComponent } 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, - SimpleNotificationsModule + ToastModule, + + HotkeyModule.forRoot({ + cheatSheetCloseEsc: true + }) ], + declarations: [ - MenuComponent, - MenuAdminComponent + CheatSheetComponent, + HomepageRedirectComponent ], + exports: [ - SimpleNotificationsModule, + ToastModule, - MenuComponent, - MenuAdminComponent + CheatSheetComponent, + HomepageRedirectComponent ], - 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') } }