</div>
<div class="modal-body">
- <div class="peertube-select-container">
- <select [(ngModel)]="resolutionId">
- <option *ngFor="let file of video.files" [value]="file.resolution.id">{{ file.resolution.label }}</option>
- </select>
+ <div class="form-group">
+ <div class="input-group input-group-sm">
+ <div class="input-group-prepend peertube-select-container">
+ <select [(ngModel)]="resolutionId">
+ <option *ngFor="let file of video.files" [value]="file.resolution.id">{{ file.resolution.label }}</option>
+ </select>
+ </div>
+ <input #urlInput (click)="urlInput.select()" type="text" class="form-control input-sm readonly" readonly [value]="getLink()" />
+ <div class="input-group-append">
+ <button [ngxClipboard]="urlInput" (click)="activateCopiedMessage()" type="button" class="btn btn-outline-secondary">
+ <span class="glyphicon glyphicon-copy"></span>
+ </button>
+ </div>
+ </div>
</div>
<div class="download-type">
@import 'mixins';
.peertube-select-container {
- @include peertube-select-container(130px);
+ @include peertube-select-container(100px);
+ border-top-right-radius: 0px;
+ border-bottom-right-radius: 0px;
+
+ select {
+ height: inherit;
+ }
}
.download-type {
import { Component, ElementRef, Input, OnInit, ViewChild } from '@angular/core'
import { VideoDetails } from '../../../shared/video/video-details.model'
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
+import { I18n } from '@ngx-translate/i18n-polyfill'
+import { NotificationsService } from 'angular2-notifications'
@Component({
selector: 'my-video-download',
downloadType: 'direct' | 'torrent' | 'magnet' = 'torrent'
resolutionId: number | string = -1
- constructor (private modalService: NgbModal) {
- // empty
- }
+ constructor (
+ private notificationsService: NotificationsService,
+ private modalService: NgbModal,
+ private i18n: I18n
+ ) { }
ngOnInit () {
this.resolutionId = this.video.files[0].resolution.id
}
download () {
+ window.location.assign(this.getLink())
+ }
+
+ getLink () {
// HTML select send us a string, so convert it to a number
this.resolutionId = parseInt(this.resolutionId.toString(), 10)
}
}
})()
- window.location.assign(link)
+
+ return link
+ }
+
+ activateCopiedMessage () {
+ this.notificationsService.success(this.i18n('Success'), this.i18n('Copied'))
}
}