]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.ts
Fix my-video-imports display when a video gets deleted
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-video-imports / my-account-video-imports.component.ts
index 31ccb0bc843e50fc348ed43a9bd5381f98bb6346..9281f978941671c8bf9e4470460541a2e48c9499 100644 (file)
@@ -1,8 +1,7 @@
 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 { SortMeta } from 'primeng/api'
+import { Notifier } from '@app/core'
 import { I18n } from '@ngx-translate/i18n-polyfill'
 import { VideoImport, VideoImportState } from '../../../../../shared/models/videos'
 import { VideoImportService } from '@app/shared/video-import'
@@ -20,16 +19,18 @@ export class MyAccountVideoImportsComponent extends RestTable implements OnInit
   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 +61,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)
         )
   }
 }