X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fcore%2Fcore.module.ts;h=4a4c2321b5e0d870375603b5ae372754b69cd52e;hb=9c931cf0bb162aa4733584be96107cdcd922d308;hp=22896e2e96ec04d7f136751da234ccc5fa5a909d;hpb=67ed6552b831df66713bac9e672738796128d33f;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/core/core.module.ts b/client/src/app/core/core.module.ts index 22896e2e9..4a4c2321b 100644 --- a/client/src/app/core/core.module.ts +++ b/client/src/app/core/core.module.ts @@ -4,13 +4,8 @@ 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 { UserNotificationSocket } from '@app/core/notification/user-notification-socket.service' -import { HooksService } from '@app/core/plugins/hooks.service' -import { PluginService } from '@app/core/plugins/plugin.service' -import { UnloggedGuard } from '@app/core/routing/unlogged-guard.service' -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' @@ -19,12 +14,23 @@ import { throwIfAlreadyLoaded } from './module-import-guard' import { Notifier } from './notification' import { HtmlRendererService, LinkifierService, MarkdownService } from './renderer' import { RestExtractor, RestService } from './rest' -import { LoginGuard, RedirectService, UserRightGuard } from './routing' +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 { UserLocalStorageService, UserService } from './users' import { LocalStorageService, ScreenService, SessionStorageService } from './wrappers' @NgModule({ @@ -32,31 +38,30 @@ import { LocalStorageService, ScreenService, SessionStorageService } from './wra CommonModule, BrowserAnimationsModule, - LoadingBarHttpClientModule, - LoadingBarRouterModule, - LoadingBarModule, ToastModule, HotkeyModule.forRoot({ - cheatSheetCloseEsc: true + cheatSheetCloseEsc: true, + cheatSheetDescription: $localize`Show/hide this help menu`, + cheatSheetCloseEscDescription: $localize`Hide this help menu` }) ], declarations: [ - CheatSheetComponent + CheatSheetComponent, + HomepageRedirectComponent ], exports: [ - LoadingBarHttpClientModule, - LoadingBarModule, - ToastModule, - CheatSheetComponent + CheatSheetComponent, + HomepageRedirectComponent ], providers: [ AuthService, + ScopedTokensService, ConfirmService, ServerService, ThemeService, @@ -76,6 +81,7 @@ import { LocalStorageService, ScreenService, SessionStorageService } from './wra RestService, UserService, + UserLocalStorageService, ScreenService, LocalStorageService, @@ -84,9 +90,14 @@ import { LocalStorageService, ScreenService, SessionStorageService } from './wra RedirectService, Notifier, MessageService, - UserNotificationSocket, + PeerTubeSocket, ServerConfigResolver, - CanDeactivateGuard + CanDeactivateGuard, + PeerTubeRouterService, + ScrollService, + + MetaService, + MetaGuard ] }) export class CoreModule {