blob: aeef65ecfbd5a87b8b6c8083926a569dc3c3aeae (
plain) (
tree)
|
|
import { Component, Input, ViewChild } from '@angular/core'
import { ModalDirective } from 'ngx-bootstrap/modal'
import { VideoDetails } from '../shared'
@Component({
selector: 'my-video-share',
templateUrl: './video-share.component.html'
})
export class VideoShareComponent {
@Input() video: VideoDetails = null
@ViewChild('modal') modal: ModalDirective
constructor () {
// empty
}
show () {
this.modal.show()
}
hide () {
this.modal.hide()
}
getVideoIframeCode () {
return '<iframe width="560" height="315" ' +
'src="' + this.video.embedUrl + '" ' +
'frameborder="0" allowfullscreen>' +
'</iframe>'
}
getVideoUrl () {
return window.location.href
}
notSecure () {
return window.location.protocol === 'http:'
}
}
|