]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/video-playlist/video-add-to-playlist.component.html
Share playlists state
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / video-playlist / video-add-to-playlist.component.html
CommitLineData
3a0fb65c
C
1<div class="root">
2 <div class="header">
3 <div class="first-row">
4 <div i18n class="title">Save to</div>
f0a39880 5
3a0fb65c
C
6 <div class="options" (click)="displayOptions = !displayOptions">
7 <my-global-icon iconName="cog"></my-global-icon>
f0a39880 8
3a0fb65c
C
9 <span i18n>Options</span>
10 </div>
f0a39880 11 </div>
f0a39880 12
3a0fb65c
C
13 <div class="options-row" *ngIf="displayOptions">
14 <div>
15 <my-peertube-checkbox
16 inputName="startAt" [(ngModel)]="timestampOptions.startTimestampEnabled"
17 i18n-labelText labelText="Start at"
18 ></my-peertube-checkbox>
f0a39880 19
3a0fb65c
C
20 <my-timestamp-input
21 [timestamp]="timestampOptions.startTimestamp"
22 [maxTimestamp]="video.duration"
23 [disabled]="!timestampOptions.startTimestampEnabled"
24 [(ngModel)]="timestampOptions.startTimestamp"
25 ></my-timestamp-input>
26 </div>
f0a39880 27
3a0fb65c
C
28 <div>
29 <my-peertube-checkbox
30 inputName="stopAt" [(ngModel)]="timestampOptions.stopTimestampEnabled"
31 i18n-labelText labelText="Stop at"
32 ></my-peertube-checkbox>
f0a39880 33
3a0fb65c
C
34 <my-timestamp-input
35 [timestamp]="timestampOptions.stopTimestamp"
36 [maxTimestamp]="video.duration"
37 [disabled]="!timestampOptions.stopTimestampEnabled"
38 [(ngModel)]="timestampOptions.stopTimestamp"
39 ></my-timestamp-input>
40 </div>
f0a39880
C
41 </div>
42 </div>
f0a39880 43
c06af501 44 <div class="input-container">
bf64ed41 45 <input type="text" placeholder="Search playlists" i18n-placeholder [(ngModel)]="videoPlaylistSearch" (ngModelChange)="onVideoPlaylistSearchChanged()" />
c06af501
RK
46 </div>
47
223b24e6
RK
48 <div class="playlists">
49 <div class="playlist dropdown-item" *ngFor="let playlist of videoPlaylists" (click)="togglePlaylist($event, playlist)">
50 <my-peertube-checkbox [inputName]="'in-playlist-' + playlist.id" [(ngModel)]="playlist.inPlaylist" [onPushWorkaround]="true"></my-peertube-checkbox>
f0a39880 51
223b24e6
RK
52 <div class="display-name">
53 {{ playlist.displayName }}
f0a39880 54
223b24e6
RK
55 <div *ngIf="playlist.inPlaylist && (playlist.startTimestamp || playlist.stopTimestamp)" class="timestamp-info">
56 {{ formatTimestamp(playlist) }}
57 </div>
3a0fb65c 58 </div>
f0a39880
C
59 </div>
60 </div>
f0a39880 61
3a0fb65c
C
62 <div class="new-playlist-button dropdown-item" (click)="openCreateBlock($event)" [hidden]="isNewPlaylistBlockOpened">
63 <my-global-icon iconName="add"></my-global-icon>
f0a39880 64
8dfceec4 65 Create a private playlist
3a0fb65c 66 </div>
f0a39880 67
3a0fb65c
C
68 <form class="new-playlist-block dropdown-item" *ngIf="isNewPlaylistBlockOpened" (ngSubmit)="createPlaylist()" [formGroup]="form">
69 <div class="form-group">
70 <label i18n for="displayName">Display name</label>
71 <input
72 type="text" id="displayName"
73 formControlName="displayName" [ngClass]="{ 'input-error': formErrors['displayName'] }"
74 >
75 <div *ngIf="formErrors['displayName']" class="form-error">
76 {{ formErrors['displayName'] }}
77 </div>
f0a39880 78 </div>
f0a39880 79
3a0fb65c
C
80 <input type="submit" i18n-value value="Create" [disabled]="!form.valid">
81 </form>
82</div>