Add features table on signup
[oweals/peertube.git] / client / src / app / shared / shared.module.ts
index e76f7636aa6e9355fc3856d489174f7723b01b04..2cbaaf4aedabc0578f369713c59de15d42121581 100644 (file)
@@ -3,26 +3,55 @@ 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 { ProgressbarModule } from 'ngx-bootstrap/progressbar'
-import { BytesPipe, KeysPipe } from 'ngx-pipes'
+import { BytesPipe, KeysPipe, NgPipesModule } from 'ngx-pipes'
 import { SharedModule as PrimeSharedModule } from 'primeng/components/common/shared'
-import { DataTableModule } from 'primeng/components/datatable/datatable'
 
 import { AUTH_INTERCEPTOR_PROVIDER } from './auth'
+import { DeleteButtonComponent } from './buttons/delete-button.component'
+import { EditButtonComponent } from './buttons/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'
-import { InfiniteScrollModule } from 'ngx-infinite-scroll'
+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,
+  VideoBlacklistValidatorsService,
+  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'
+import { VideoImportService } from '@app/shared/video-import/video-import.service'
+import { ActionDropdownComponent } from '@app/shared/buttons/action-dropdown.component'
+import { NgbDropdownModule, NgbModalModule, NgbPopoverModule, NgbTabsetModule, NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'
+import { SubscribeButtonComponent, UserSubscriptionService } from '@app/shared/user-subscription'
+import { InstanceFeaturesTableComponent } from '@app/shared/instance/instance-features-table.component'
 
 @NgModule({
   imports: [
@@ -32,23 +61,34 @@ import { InfiniteScrollModule } from 'ngx-infinite-scroll'
     RouterModule,
     HttpClientModule,
 
-    BsDropdownModule.forRoot(),
-    ModalModule.forRoot(),
-    ProgressbarModule.forRoot(),
+    NgbDropdownModule,
+    NgbModalModule,
+    NgbPopoverModule,
+    NgbTabsetModule,
+    NgbTooltipModule,
 
-    DataTableModule,
     PrimeSharedModule,
-    InfiniteScrollModule
+    NgPipesModule
   ],
 
   declarations: [
-    BytesPipe,
-    KeysPipe,
-    SearchComponent,
     LoaderComponent,
     VideoThumbnailComponent,
+    VideoMiniatureComponent,
+    VideoFeedComponent,
+    DeleteButtonComponent,
+    EditButtonComponent,
+    ActionDropdownComponent,
     NumberFormatterPipe,
-    FromNowPipe
+    ObjectLengthPipe,
+    FromNowPipe,
+    MarkdownTextareaComponent,
+    InfiniteScrollerDirective,
+    HelpComponent,
+    ReactiveFileComponent,
+    PeertubeCheckboxComponent,
+    SubscribeButtonComponent,
+    InstanceFeaturesTableComponent
   ],
 
   exports: [
@@ -58,20 +98,33 @@ import { InfiniteScrollModule } from 'ngx-infinite-scroll'
     RouterModule,
     HttpClientModule,
 
-    BsDropdownModule,
-    ModalModule,
-    ProgressbarModule,
-    DataTableModule,
+    NgbDropdownModule,
+    NgbModalModule,
+    NgbPopoverModule,
+    NgbTabsetModule,
+    NgbTooltipModule,
+
     PrimeSharedModule,
-    InfiniteScrollModule,
     BytesPipe,
     KeysPipe,
 
-    SearchComponent,
     LoaderComponent,
     VideoThumbnailComponent,
+    VideoMiniatureComponent,
+    VideoFeedComponent,
+    DeleteButtonComponent,
+    EditButtonComponent,
+    ActionDropdownComponent,
+    MarkdownTextareaComponent,
+    InfiniteScrollerDirective,
+    HelpComponent,
+    ReactiveFileComponent,
+    PeertubeCheckboxComponent,
+    SubscribeButtonComponent,
+    InstanceFeaturesTableComponent,
 
     NumberFormatterPipe,
+    ObjectLengthPipe,
     FromNowPipe
   ],
 
@@ -79,11 +132,33 @@ import { InfiniteScrollModule } from 'ngx-infinite-scroll'
     AUTH_INTERCEPTOR_PROVIDER,
     RestExtractor,
     RestService,
-    SearchService,
     VideoAbuseService,
     VideoBlacklistService,
     UserService,
-    VideoService
+    VideoService,
+    AccountService,
+    MarkdownService,
+    VideoChannelService,
+    VideoCaptionService,
+    VideoImportService,
+    UserSubscriptionService,
+
+    FormValidatorService,
+    CustomConfigValidatorsService,
+    LoginValidatorsService,
+    ResetPasswordValidatorsService,
+    UserValidatorsService,
+    VideoAbuseValidatorsService,
+    VideoChannelValidatorsService,
+    VideoCommentValidatorsService,
+    VideoValidatorsService,
+    VideoCaptionsValidatorsService,
+    VideoBlacklistValidatorsService,
+
+    I18nPrimengCalendarService,
+    ScreenService,
+
+    I18n
   ]
 })
 export class SharedModule { }