diff options
author | Nataly Rocha <nata_r10@hotmail.com> | 2021-10-22 08:11:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-22 15:11:45 +0200 |
commit | 382258676c3ab83f9cebfc4e378ab955cd8fd9ff (patch) | |
tree | 46e54635aa42597a0ff527f065ae1fbd31e81441 /client/src/app/shared/shared-share-modal/video-share.component.html | |
parent | d1bfbdeb203b0e4f37e9468861c690171156ee29 (diff) | |
download | PeerTube-382258676c3ab83f9cebfc4e378ab955cd8fd9ff.tar.gz PeerTube-382258676c3ab83f9cebfc4e378ab955cd8fd9ff.tar.zst PeerTube-382258676c3ab83f9cebfc4e378ab955cd8fd9ff.zip |
Add warning and update privacy on share playlist (#4469)
* add warning and update privacy on share
* update playlist display name on toast
* change privacy update to link
* remove conditional
* Improve share private warning styling
Co-authored-by: Chocobozzz <me@florianbigard.com>
Diffstat (limited to 'client/src/app/shared/shared-share-modal/video-share.component.html')
-rw-r--r-- | client/src/app/shared/shared-share-modal/video-share.component.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/client/src/app/shared/shared-share-modal/video-share.component.html b/client/src/app/shared/shared-share-modal/video-share.component.html index bcb1db4c4..059699d3b 100644 --- a/client/src/app/shared/shared-share-modal/video-share.component.html +++ b/client/src/app/shared/shared-share-modal/video-share.component.html | |||
@@ -10,6 +10,15 @@ | |||
10 | <div class="playlist" *ngIf="playlist"> | 10 | <div class="playlist" *ngIf="playlist"> |
11 | <div class="title-page title-page-single" i18n *ngIf="video">Share the playlist</div> | 11 | <div class="title-page title-page-single" i18n *ngIf="video">Share the playlist</div> |
12 | 12 | ||
13 | |||
14 | <div *ngIf="isPrivatePlaylist()" class="alert-private alert alert-warning"> | ||
15 | <div i18n>This playlist is private so you won't be able to share it with external users</div> | ||
16 | |||
17 | <a i18n class="peertube-button-link orange-button" [routerLink]="[ '/my-library/video-playlists/update', playlist.uuid ]" target="_blank" rel="noopener noreferrer"> | ||
18 | Update playlist privacy | ||
19 | </a> | ||
20 | </div> | ||
21 | |||
13 | <div ngbNav #nav="ngbNav" class="nav-tabs" [(activeId)]="activePlaylistId"> | 22 | <div ngbNav #nav="ngbNav" class="nav-tabs" [(activeId)]="activePlaylistId"> |
14 | 23 | ||
15 | <ng-container ngbNavItem="url"> | 24 | <ng-container ngbNavItem="url"> |
@@ -65,6 +74,14 @@ | |||
65 | <div class="video" *ngIf="video"> | 74 | <div class="video" *ngIf="video"> |
66 | <div class="title-page title-page-single" *ngIf="playlist" i18n>Share the video</div> | 75 | <div class="title-page title-page-single" *ngIf="playlist" i18n>Share the video</div> |
67 | 76 | ||
77 | <div *ngIf="isPrivateVideo()" class="alert-private alert alert-warning"> | ||
78 | <div i18n>This video is private so you won't be able to share it with external users</div> | ||
79 | |||
80 | <a i18n class="peertube-button-link orange-button" [routerLink]="[ '/videos/', 'update', video.shortUUID ]" target="_blank" rel="noopener noreferrer"> | ||
81 | Update video privacy | ||
82 | </a> | ||
83 | </div> | ||
84 | |||
68 | <div ngbNav #nav="ngbNav" class="nav-tabs" [(activeId)]="activeVideoId"> | 85 | <div ngbNav #nav="ngbNav" class="nav-tabs" [(activeId)]="activeVideoId"> |
69 | 86 | ||
70 | <ng-container ngbNavItem="url"> | 87 | <ng-container ngbNavItem="url"> |