Reorganize client shared modules
[oweals/peertube.git] / client / src / app / +my-account / my-account-video-imports / my-account-video-imports.component.ts
index 31ccb0bc843e50fc348ed43a9bd5381f98bb6346..42ddb0ee28578bb0d041e077a9a25977967d5c83 100644 (file)
@@ -1,11 +1,8 @@
+import { SortMeta } from 'primeng/api'
 import { Component, OnInit } from '@angular/core'
-import { RestPagination, RestTable } from '@app/shared'
-import { SortMeta } from 'primeng/components/common/sortmeta'
-import { NotificationsService } from 'angular2-notifications'
-import { ConfirmService } from '@app/core'
-import { I18n } from '@ngx-translate/i18n-polyfill'
-import { VideoImport, VideoImportState } from '../../../../../shared/models/videos'
-import { VideoImportService } from '@app/shared/video-import'
+import { Notifier, RestPagination, RestTable } from '@app/core'
+import { VideoImportService } from '@app/shared/shared-main'
+import { VideoImport, VideoImportState } from '@shared/models'
 
 @Component({
   selector: 'my-account-video-imports',
@@ -15,21 +12,22 @@ import { VideoImportService } from '@app/shared/video-import'
 export class MyAccountVideoImportsComponent extends RestTable implements OnInit {
   videoImports: VideoImport[] = []
   totalRecords = 0
-  rowsPerPage = 10
   sort: SortMeta = { field: 'createdAt', order: 1 }
   pagination: RestPagination = { count: this.rowsPerPage, start: 0 }
 
   constructor (
-    private notificationsService: NotificationsService,
-    private confirmService: ConfirmService,
-    private videoImportService: VideoImportService,
-    private i18n: I18n
+    private notifier: Notifier,
+    private videoImportService: VideoImportService
   ) {
     super()
   }
 
   ngOnInit () {
-    this.loadSort()
+    this.initialize()
+  }
+
+  getIdentifier () {
+    return 'MyAccountVideoImportsComponent'
   }
 
   isVideoImportSuccess (videoImport: VideoImport) {
@@ -60,7 +58,7 @@ export class MyAccountVideoImportsComponent extends RestTable implements OnInit
             this.totalRecords = resultList.total
           },
 
-          err => this.notificationsService.error(this.i18n('Error'), err.message)
+          err => this.notifier.error(err.message)
         )
   }
 }