X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fshared.module.ts;h=456ce851e53d2487499b2682982ba1659f0903e8;hb=b33f657c304b77938c1f68164d8e754787f5aae5;hp=14192232285fb0ece8d305107a015b08ba1c1fdb;hpb=693b1aba4675f7e3d850e0f6d07dbfc7bdff9b8c;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/shared.module.ts b/client/src/app/shared/shared.module.ts index 141922322..456ce851e 100644 --- a/client/src/app/shared/shared.module.ts +++ b/client/src/app/shared/shared.module.ts @@ -1,62 +1,78 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { HttpModule } from '@angular/http'; -import { FormsModule, ReactiveFormsModule } from '@angular/forms'; -import { RouterModule } from '@angular/router'; - -import { BytesPipe } from 'angular-pipes/src/math/bytes.pipe'; -import { DropdownModule } from 'ng2-bootstrap/components/dropdown'; -import { ProgressbarModule } from 'ng2-bootstrap/components/progressbar'; -import { PaginationModule } from 'ng2-bootstrap/components/pagination'; -import { ModalModule } from 'ng2-bootstrap/components/modal'; -import { FileUploadModule } from 'ng2-file-upload/ng2-file-upload'; - -import { AUTH_HTTP_PROVIDERS } from './auth'; -import { RestExtractor, RestService } from './rest'; -import { SearchComponent, SearchService } from './search'; +import { NgModule } from '@angular/core' +import { HttpClientModule } from '@angular/common/http' +import { CommonModule } from '@angular/common' +import { FormsModule, ReactiveFormsModule } from '@angular/forms' +import { RouterModule } from '@angular/router' + +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 { DataTableModule } from 'primeng/components/datatable/datatable' +import { SharedModule as PrimeSharedModule } from 'primeng/components/common/shared' + +import { AUTH_INTERCEPTOR_PROVIDER } from './auth' +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 { LoaderComponent } from './misc/loader.component' @NgModule({ imports: [ CommonModule, FormsModule, ReactiveFormsModule, - HttpModule, RouterModule, + HttpClientModule, - DropdownModule, - FileUploadModule, - ModalModule, - PaginationModule, - ProgressbarModule + BsDropdownModule.forRoot(), + ModalModule.forRoot(), + PaginationModule.forRoot(), + ProgressbarModule.forRoot(), + + DataTableModule, + PrimeSharedModule ], declarations: [ BytesPipe, - SearchComponent + KeysPipe, + SearchComponent, + LoaderComponent ], exports: [ CommonModule, FormsModule, ReactiveFormsModule, - HttpModule, RouterModule, + HttpClientModule, - DropdownModule, - FileUploadModule, + BsDropdownModule, ModalModule, PaginationModule, ProgressbarModule, + DataTableModule, + PrimeSharedModule, BytesPipe, + KeysPipe, - SearchComponent + SearchComponent, + LoaderComponent ], providers: [ - AUTH_HTTP_PROVIDERS, + AUTH_INTERCEPTOR_PROVIDER, RestExtractor, RestService, - SearchService + SearchService, + VideoAbuseService, + VideoBlacklistService, + UserService ] }) export class SharedModule { }