X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fshared.module.ts;h=74730e2aa5f95f248c28752d4d90209c2028559b;hb=80109b2ddb14ec4a54cede7885611cb9244da3cb;hp=d6a7426933269acab843faaf22b938f29ebfca7e;hpb=d15ab38a905e6b50972e6f884917db9198279daf;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/shared.module.ts b/client/src/app/shared/shared.module.ts index d6a742693..74730e2aa 100644 --- a/client/src/app/shared/shared.module.ts +++ b/client/src/app/shared/shared.module.ts @@ -1,75 +1,110 @@ -import { NgModule } from '@angular/core' import { CommonModule } from '@angular/common' -import { HttpModule } from '@angular/http' +import { HttpClientModule } from '@angular/common/http' +import { NgModule } from '@angular/core' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { RouterModule } from '@angular/router' -import { BrowserAnimationsModule } from '@angular/platform-browser/animations' +import { MarkdownTextareaComponent } from '@app/shared/forms/markdown-textarea.component' +import { HelpComponent } from '@app/shared/misc/help.component' +import { InfiniteScrollerDirective } from '@app/shared/video/infinite-scroller.directive' +import { MarkdownService } from '@app/videos/shared' -import { BytesPipe } from 'angular-pipes/src/math/bytes.pipe' -import { KeysPipe } from 'angular-pipes/src/object/keys.pipe' import { BsDropdownModule } from 'ngx-bootstrap/dropdown' -import { ProgressbarModule } from 'ngx-bootstrap/progressbar' -import { PaginationModule } from 'ngx-bootstrap/pagination' import { ModalModule } from 'ngx-bootstrap/modal' -import { FileUploadModule } from 'ng2-file-upload/ng2-file-upload' -import { Ng2SmartTableModule } from 'ng2-smart-table' +import { PopoverModule } from 'ngx-bootstrap/popover' +import { TabsModule } from 'ngx-bootstrap/tabs' +import { TooltipModule } from 'ngx-bootstrap/tooltip' +import { BytesPipe, KeysPipe, NgPipesModule } from 'ngx-pipes' +import { SharedModule as PrimeSharedModule } from 'primeng/components/common/shared' -import { AUTH_HTTP_PROVIDERS } from './auth' +import { AUTH_INTERCEPTOR_PROVIDER } from './auth' +import { DeleteButtonComponent } from './misc/delete-button.component' +import { EditButtonComponent } from './misc/edit-button.component' +import { FromNowPipe } from './misc/from-now.pipe' +import { LoaderComponent } from './misc/loader.component' +import { NumberFormatterPipe } from './misc/number-formatter.pipe' +import { ObjectLengthPipe } from './misc/object-length.pipe' import { RestExtractor, RestService } from './rest' -import { SearchComponent, SearchService } from './search' import { UserService } from './users' import { VideoAbuseService } from './video-abuse' +import { VideoBlacklistService } from './video-blacklist' +import { VideoMiniatureComponent } from './video/video-miniature.component' +import { VideoFeedComponent } from './video/video-feed.component' +import { VideoThumbnailComponent } from './video/video-thumbnail.component' +import { VideoService } from './video/video.service' @NgModule({ imports: [ CommonModule, FormsModule, ReactiveFormsModule, - HttpModule, RouterModule, - BrowserAnimationsModule, + HttpClientModule, BsDropdownModule.forRoot(), ModalModule.forRoot(), - PaginationModule.forRoot(), - ProgressbarModule.forRoot(), + PopoverModule.forRoot(), + TabsModule.forRoot(), + TooltipModule.forRoot(), - FileUploadModule, - Ng2SmartTableModule + PrimeSharedModule, + NgPipesModule ], declarations: [ - BytesPipe, - KeysPipe, - SearchComponent + LoaderComponent, + VideoThumbnailComponent, + VideoMiniatureComponent, + VideoFeedComponent, + DeleteButtonComponent, + EditButtonComponent, + NumberFormatterPipe, + ObjectLengthPipe, + FromNowPipe, + MarkdownTextareaComponent, + InfiniteScrollerDirective, + HelpComponent ], exports: [ CommonModule, FormsModule, ReactiveFormsModule, - HttpModule, RouterModule, + HttpClientModule, BsDropdownModule, - FileUploadModule, ModalModule, - PaginationModule, - ProgressbarModule, - Ng2SmartTableModule, + PopoverModule, + TabsModule, + TooltipModule, + PrimeSharedModule, BytesPipe, KeysPipe, - SearchComponent + LoaderComponent, + VideoThumbnailComponent, + VideoMiniatureComponent, + VideoFeedComponent, + DeleteButtonComponent, + EditButtonComponent, + MarkdownTextareaComponent, + InfiniteScrollerDirective, + HelpComponent, + + NumberFormatterPipe, + ObjectLengthPipe, + FromNowPipe ], providers: [ - AUTH_HTTP_PROVIDERS, + AUTH_INTERCEPTOR_PROVIDER, RestExtractor, RestService, - SearchService, VideoAbuseService, - UserService + VideoBlacklistService, + UserService, + VideoService, + MarkdownService ] }) export class SharedModule { }