diff options
author | Chocobozzz <me@florianbigard.com> | 2020-11-12 15:28:54 +0100 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-11-13 12:02:21 +0100 |
commit | 17119e4a546522468878cf115558b17949ab50d0 (patch) | |
tree | 3f130cfd7fdccf5aeeac9beee941750590239047 /client/src/app/+my-account/my-account-video-imports | |
parent | b4bc269e5517849b5b89052f0c1a2c01b6f65089 (diff) | |
download | PeerTube-17119e4a546522468878cf115558b17949ab50d0.tar.gz PeerTube-17119e4a546522468878cf115558b17949ab50d0.tar.zst PeerTube-17119e4a546522468878cf115558b17949ab50d0.zip |
Reorganize left menu and account menu
Add my-settings and my-library in left menu
Move administration below my-library
Split account menu: my-setting and my library
Diffstat (limited to 'client/src/app/+my-account/my-account-video-imports')
3 files changed, 0 insertions, 161 deletions
diff --git a/client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.html b/client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.html deleted file mode 100644 index 1d3a45f76..000000000 --- a/client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.html +++ /dev/null | |||
@@ -1,70 +0,0 @@ | |||
1 | <h1> | ||
2 | <my-global-icon iconName="cloud-download" aria-hidden="true"></my-global-icon> | ||
3 | <ng-container i18n>My imports</ng-container> | ||
4 | </h1> | ||
5 | |||
6 | <p-table | ||
7 | [value]="videoImports" [lazy]="true" [paginator]="totalRecords > 0" [totalRecords]="totalRecords" [rows]="rowsPerPage" [rowsPerPageOptions]="rowsPerPageOptions" | ||
8 | [sortField]="sort.field" [sortOrder]="sort.order" (onLazyLoad)="loadLazy($event)" dataKey="id" | ||
9 | [showCurrentPageReport]="true" i18n-currentPageReportTemplate | ||
10 | currentPageReportTemplate="Showing {{'{first}'}} to {{'{last}'}} of {{'{totalRecords}'}} imports" | ||
11 | (onPage)="onPage($event)" [expandedRowKeys]="expandedRows" | ||
12 | > | ||
13 | <ng-template pTemplate="header"> | ||
14 | <tr> | ||
15 | <th style="width: 40px;"></th> | ||
16 | <th style="width: 70px">Action</th> | ||
17 | <th style="width: 45%" i18n>Target</th> | ||
18 | <th style="width: 55%" i18n>Video</th> | ||
19 | <th style="width: 150px" i18n>State</th> | ||
20 | <th style="width: 150px" i18n pSortableColumn="createdAt">Created <p-sortIcon field="createdAt"></p-sortIcon></th> | ||
21 | </tr> | ||
22 | </ng-template> | ||
23 | |||
24 | <ng-template pTemplate="body" let-expanded="expanded" let-videoImport> | ||
25 | <tr> | ||
26 | <td class="expand-cell"> | ||
27 | <span *ngIf="videoImport.error" class="expander" [pRowToggler]="videoImport" i18n-ngbTooltip ngbTooltip="See the error"> | ||
28 | <i [ngClass]="expanded ? 'glyphicon glyphicon-menu-down' : 'glyphicon glyphicon-menu-right'"></i> | ||
29 | </span> | ||
30 | </td> | ||
31 | |||
32 | <td class="action-cell"> | ||
33 | <my-edit-button *ngIf="isVideoImportSuccess(videoImport) && videoImport.video" | ||
34 | [routerLink]="getEditVideoUrl(videoImport.video)"></my-edit-button> | ||
35 | </td> | ||
36 | |||
37 | <td> | ||
38 | <a *ngIf="videoImport.targetUrl; else torrent" [href]="videoImport.targetUrl" target="_blank" rel="noopener noreferrer">{{ videoImport.targetUrl }}</a> | ||
39 | <ng-template #torrent> | ||
40 | <span [title]="videoImport.torrentName || videoImport.magnetUri">{{ videoImport.torrentName || videoImport.magnetUri }}</span> | ||
41 | </ng-template> | ||
42 | </td> | ||
43 | |||
44 | <td> | ||
45 | <ng-container *ngIf="isVideoImportPending(videoImport)">{{ videoImport.video?.name }}</ng-container> | ||
46 | <ng-container *ngIf="isVideoImportSuccess(videoImport) && videoImport.video"> | ||
47 | <a [href]="getVideoUrl(videoImport.video)" target="_blank" rel="noopener noreferrer">{{ videoImport.video?.name }}</a> | ||
48 | </ng-container> | ||
49 | <ng-container *ngIf="isVideoImportSuccess(videoImport) && !videoImport.video" i18n>This video was deleted</ng-container> | ||
50 | <ng-container *ngIf="isVideoImportFailed(videoImport)"></ng-container> | ||
51 | </td> | ||
52 | |||
53 | <td> | ||
54 | <span class="badge" [ngClass]="getVideoImportStateClass(videoImport.state)"> | ||
55 | {{ videoImport.state.label }} | ||
56 | </span> | ||
57 | </td> | ||
58 | |||
59 | <td>{{ videoImport.createdAt | date: 'short' }}</td> | ||
60 | </tr> | ||
61 | </ng-template> | ||
62 | |||
63 | <ng-template pTemplate="rowexpansion" let-videoImport> | ||
64 | <tr class="video-import-error" *ngIf="videoImport.error"> | ||
65 | <td colspan="6"> | ||
66 | <pre>{{ videoImport.error }}</pre> | ||
67 | </td> | ||
68 | </tr> | ||
69 | </ng-template> | ||
70 | </p-table> | ||
diff --git a/client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.scss b/client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.scss deleted file mode 100644 index a93c28028..000000000 --- a/client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.scss +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | @import '_variables'; | ||
2 | @import '_mixins'; | ||
3 | |||
4 | pre { | ||
5 | font-size: 11px; | ||
6 | } | ||
7 | |||
8 | .video-import-error { | ||
9 | color: red; | ||
10 | } | ||
11 | |||
12 | .badge { | ||
13 | @include table-badge; | ||
14 | } | ||
diff --git a/client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.ts b/client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.ts deleted file mode 100644 index 9dd5ef142..000000000 --- a/client/src/app/+my-account/my-account-video-imports/my-account-video-imports.component.ts +++ /dev/null | |||
@@ -1,77 +0,0 @@ | |||
1 | import { SortMeta } from 'primeng/api' | ||
2 | import { Component, OnInit } from '@angular/core' | ||
3 | import { Notifier, RestPagination, RestTable } from '@app/core' | ||
4 | import { VideoImportService } from '@app/shared/shared-main' | ||
5 | import { VideoImport, VideoImportState } from '@shared/models' | ||
6 | |||
7 | @Component({ | ||
8 | selector: 'my-account-video-imports', | ||
9 | templateUrl: './my-account-video-imports.component.html', | ||
10 | styleUrls: [ './my-account-video-imports.component.scss' ] | ||
11 | }) | ||
12 | export class MyAccountVideoImportsComponent extends RestTable implements OnInit { | ||
13 | videoImports: VideoImport[] = [] | ||
14 | totalRecords = 0 | ||
15 | sort: SortMeta = { field: 'createdAt', order: 1 } | ||
16 | pagination: RestPagination = { count: this.rowsPerPage, start: 0 } | ||
17 | |||
18 | constructor ( | ||
19 | private notifier: Notifier, | ||
20 | private videoImportService: VideoImportService | ||
21 | ) { | ||
22 | super() | ||
23 | } | ||
24 | |||
25 | ngOnInit () { | ||
26 | this.initialize() | ||
27 | } | ||
28 | |||
29 | getIdentifier () { | ||
30 | return 'MyAccountVideoImportsComponent' | ||
31 | } | ||
32 | |||
33 | getVideoImportStateClass (state: VideoImportState) { | ||
34 | switch (state) { | ||
35 | case VideoImportState.FAILED: | ||
36 | return 'badge-red' | ||
37 | case VideoImportState.REJECTED: | ||
38 | return 'badge-banned' | ||
39 | case VideoImportState.PENDING: | ||
40 | return 'badge-yellow' | ||
41 | default: | ||
42 | return 'badge-green' | ||
43 | } | ||
44 | } | ||
45 | |||
46 | isVideoImportSuccess (videoImport: VideoImport) { | ||
47 | return videoImport.state.id === VideoImportState.SUCCESS | ||
48 | } | ||
49 | |||
50 | isVideoImportPending (videoImport: VideoImport) { | ||
51 | return videoImport.state.id === VideoImportState.PENDING | ||
52 | } | ||
53 | |||
54 | isVideoImportFailed (videoImport: VideoImport) { | ||
55 | return videoImport.state.id === VideoImportState.FAILED | ||
56 | } | ||
57 | |||
58 | getVideoUrl (video: { uuid: string }) { | ||
59 | return '/videos/watch/' + video.uuid | ||
60 | } | ||
61 | |||
62 | getEditVideoUrl (video: { uuid: string }) { | ||
63 | return '/videos/update/' + video.uuid | ||
64 | } | ||
65 | |||
66 | protected loadData () { | ||
67 | this.videoImportService.getMyVideoImports(this.pagination, this.sort) | ||
68 | .subscribe( | ||
69 | resultList => { | ||
70 | this.videoImports = resultList.data | ||
71 | this.totalRecords = resultList.total | ||
72 | }, | ||
73 | |||
74 | err => this.notifier.error(err.message) | ||
75 | ) | ||
76 | } | ||
77 | } | ||