X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fcore%2Fcore.module.ts;h=04be0671c401ca61e7a80bb9e256cabf18ef636b;hb=dd24f1bb0a4b252e5342b251ba36853364da7b8e;hp=30ac101191780e9e79bcb3d5404258c69fce9660;hpb=63347a0ff966c7863e5b7431effa1cb0668df893;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/core/core.module.ts b/client/src/app/core/core.module.ts index 30ac10119..04be0671c 100644 --- a/client/src/app/core/core.module.ts +++ b/client/src/app/core/core.module.ts @@ -1,53 +1,100 @@ +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 { FormsModule } from '@angular/forms' import { BrowserAnimationsModule } from '@angular/platform-browser/animations' -import { RouterModule } from '@angular/router' -import { LoadingBarModule } from '@ngx-loading-bar/core' -import { LoadingBarHttpClientModule } from '@ngx-loading-bar/http-client' -import { LoadingBarRouterModule } from '@ngx-loading-bar/router' - -import { SimpleNotificationsModule } from 'angular2-notifications' - +import { PeerTubeSocket } from '@app/core/notification/peertube-socket.service' +import { HooksService, PluginService } from '@app/core/plugins' import { AuthService } from './auth' -import { ConfirmComponent, ConfirmService } from './confirm' +import { ConfirmService } from './confirm' +import { CheatSheetComponent } from './hotkeys' +import { MenuService } from './menu' import { throwIfAlreadyLoaded } from './module-import-guard' -import { LoginGuard, RedirectService, UserRightGuard } from './routing' +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, - RouterModule, - FormsModule, BrowserAnimationsModule, - SimpleNotificationsModule.forRoot(), + ToastModule, - LoadingBarHttpClientModule, - LoadingBarRouterModule, - LoadingBarModule.forRoot() + HotkeyModule.forRoot({ + cheatSheetCloseEsc: true + }) ], declarations: [ - ConfirmComponent + CheatSheetComponent, + HomepageRedirectComponent ], exports: [ - SimpleNotificationsModule, - LoadingBarHttpClientModule, - LoadingBarModule, + ToastModule, - ConfirmComponent + CheatSheetComponent, + HomepageRedirectComponent ], providers: [ AuthService, + ScopedTokensService, ConfirmService, ServerService, + ThemeService, + MenuService, LoginGuard, UserRightGuard, - RedirectService + 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 {