X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fcore%2Fcore.module.ts;h=04be0671c401ca61e7a80bb9e256cabf18ef636b;hb=dd24f1bb0a4b252e5342b251ba36853364da7b8e;hp=4ef3b1e735dda920d20469332fd16171303a53dd;hpb=b718fd22374d64534bcfe69932cf562894abed6a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/core/core.module.ts b/client/src/app/core/core.module.ts index 4ef3b1e73..04be0671c 100644 --- a/client/src/app/core/core.module.ts +++ b/client/src/app/core/core.module.ts @@ -1,35 +1,43 @@ +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 { 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 { 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 { HotkeyModule } from 'angular2-hotkeys' -import { CheatSheetComponent } from './hotkeys' -import { ToastModule } from 'primeng/toast' -import { Notifier } from './notification' -import { MessageService } from 'primeng/api' -import { UserNotificationSocket } from '@app/core/notification/user-notification-socket.service' +import { UserService } from './users' +import { LocalStorageService, ScreenService, SessionStorageService } from './wrappers' @NgModule({ imports: [ CommonModule, - RouterModule, - FormsModule, BrowserAnimationsModule, - LoadingBarHttpClientModule, - LoadingBarRouterModule, - LoadingBarModule, ToastModule, HotkeyModule.forRoot({ @@ -38,29 +46,55 @@ import { UserNotificationSocket } from '@app/core/notification/user-notification ], declarations: [ - CheatSheetComponent + CheatSheetComponent, + HomepageRedirectComponent ], exports: [ - LoadingBarHttpClientModule, - LoadingBarModule, - ToastModule, - CheatSheetComponent + CheatSheetComponent, + HomepageRedirectComponent ], providers: [ AuthService, + ScopedTokensService, ConfirmService, ServerService, ThemeService, + MenuService, LoginGuard, UserRightGuard, + UnloggedGuard, + + PluginService, + HooksService, + + HtmlRendererService, + LinkifierService, + MarkdownService, + + RestExtractor, + RestService, + + UserService, + + ScreenService, + LocalStorageService, + SessionStorageService, + RedirectService, Notifier, MessageService, - UserNotificationSocket + PeerTubeSocket, + ServerConfigResolver, + CanDeactivateGuard, + PeerTubeRouterService, + ScrollService, + + MetaService, + MetaGuard ] }) export class CoreModule {