X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fshared.module.ts;h=99df61cdb4dbadf3c96897cae998781c44feb73f;hb=5e319fb7898fd0482c399cc3ae9dcfc20d274a58;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..99df61cdb 100644 --- a/client/src/app/shared/shared.module.ts +++ b/client/src/app/shared/shared.module.ts @@ -1,62 +1,153 @@ -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 { CommonModule } from '@angular/common' +import { HttpClientModule } from '@angular/common/http' +import { NgModule } from '@angular/core' +import { FormsModule, ReactiveFormsModule } from '@angular/forms' +import { RouterModule } from '@angular/router' +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 { BsDropdownModule } from 'ngx-bootstrap/dropdown' +import { ModalModule } from 'ngx-bootstrap/modal' +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_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 { 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' +import { AccountService } from '@app/shared/account/account.service' +import { VideoChannelService } from '@app/shared/video-channel/video-channel.service' +import { I18n } from '@ngx-translate/i18n-polyfill' +import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service' +import { + CustomConfigValidatorsService, + LoginValidatorsService, + ReactiveFileComponent, + ResetPasswordValidatorsService, + UserValidatorsService, + VideoAbuseValidatorsService, + VideoChannelValidatorsService, + VideoCommentValidatorsService, + VideoValidatorsService +} from '@app/shared/forms' +import { I18nPrimengCalendarService } from '@app/shared/i18n/i18n-primeng-calendar' +import { ScreenService } from '@app/shared/misc/screen.service' +import { VideoCaptionsValidatorsService } from '@app/shared/forms/form-validators/video-captions-validators.service' +import { VideoCaptionService } from '@app/shared/video-caption' +import { PeertubeCheckboxComponent } from '@app/shared/forms/peertube-checkbox.component' @NgModule({ imports: [ CommonModule, FormsModule, ReactiveFormsModule, - HttpModule, RouterModule, + HttpClientModule, - DropdownModule, - FileUploadModule, - ModalModule, - PaginationModule, - ProgressbarModule + BsDropdownModule.forRoot(), + ModalModule.forRoot(), + PopoverModule.forRoot(), + TabsModule.forRoot(), + TooltipModule.forRoot(), + + PrimeSharedModule, + NgPipesModule ], declarations: [ - BytesPipe, - SearchComponent + LoaderComponent, + VideoThumbnailComponent, + VideoMiniatureComponent, + VideoFeedComponent, + DeleteButtonComponent, + EditButtonComponent, + NumberFormatterPipe, + ObjectLengthPipe, + FromNowPipe, + MarkdownTextareaComponent, + InfiniteScrollerDirective, + HelpComponent, + ReactiveFileComponent, + PeertubeCheckboxComponent ], exports: [ CommonModule, FormsModule, ReactiveFormsModule, - HttpModule, RouterModule, + HttpClientModule, - DropdownModule, - FileUploadModule, + BsDropdownModule, ModalModule, - PaginationModule, - ProgressbarModule, + PopoverModule, + TabsModule, + TooltipModule, + PrimeSharedModule, BytesPipe, + KeysPipe, - SearchComponent + LoaderComponent, + VideoThumbnailComponent, + VideoMiniatureComponent, + VideoFeedComponent, + DeleteButtonComponent, + EditButtonComponent, + MarkdownTextareaComponent, + InfiniteScrollerDirective, + HelpComponent, + ReactiveFileComponent, + PeertubeCheckboxComponent, + + NumberFormatterPipe, + ObjectLengthPipe, + FromNowPipe ], providers: [ - AUTH_HTTP_PROVIDERS, + AUTH_INTERCEPTOR_PROVIDER, RestExtractor, RestService, - SearchService + VideoAbuseService, + VideoBlacklistService, + UserService, + VideoService, + AccountService, + MarkdownService, + VideoChannelService, + VideoCaptionService, + + FormValidatorService, + CustomConfigValidatorsService, + LoginValidatorsService, + ResetPasswordValidatorsService, + UserValidatorsService, + VideoAbuseValidatorsService, + VideoChannelValidatorsService, + VideoCommentValidatorsService, + VideoValidatorsService, + VideoCaptionsValidatorsService, + + I18nPrimengCalendarService, + ScreenService, + + I18n ] }) export class SharedModule { }