2018-04-05 03:33:17 +00:00
|
|
|
<ModalDialog
|
2018-05-02 00:05:36 +00:00
|
|
|
{id}
|
|
|
|
{label}
|
2018-04-05 03:33:17 +00:00
|
|
|
background="var(--muted-modal-bg)"
|
|
|
|
muted="true"
|
|
|
|
className="video-modal-dialog"
|
2018-11-13 00:20:59 +00:00
|
|
|
on:close="onClose()"
|
2018-04-01 01:46:44 +00:00
|
|
|
>
|
2018-05-02 00:05:36 +00:00
|
|
|
<video {poster}
|
|
|
|
{src}
|
|
|
|
{width}
|
|
|
|
{height}
|
|
|
|
aria-label="Video: {description || ''}"
|
2018-01-21 03:19:24 +00:00
|
|
|
controls
|
2018-11-13 00:20:59 +00:00
|
|
|
ref:video
|
2018-01-21 03:19:24 +00:00
|
|
|
/>
|
2018-02-04 21:49:43 +00:00
|
|
|
</ModalDialog>
|
2018-01-21 03:19:24 +00:00
|
|
|
<style>
|
2018-04-01 01:46:44 +00:00
|
|
|
:global(.video-modal-dialog video) {
|
2018-02-04 23:59:42 +00:00
|
|
|
object-fit: contain;
|
|
|
|
max-width: calc(100vw - 20px);
|
2018-02-23 04:04:19 +00:00
|
|
|
max-height: calc(100% - 20px);
|
|
|
|
overflow: hidden;
|
2018-01-21 03:19:24 +00:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script>
|
2018-02-05 17:43:45 +00:00
|
|
|
import ModalDialog from './ModalDialog.html'
|
2018-04-08 23:56:20 +00:00
|
|
|
import { show } from '../helpers/showDialog'
|
|
|
|
import { oncreate } from '../helpers/onCreateDialog'
|
2018-01-21 03:19:24 +00:00
|
|
|
|
|
|
|
export default {
|
2018-04-08 23:56:20 +00:00
|
|
|
oncreate,
|
2018-02-04 21:49:43 +00:00
|
|
|
components: {
|
|
|
|
ModalDialog
|
2018-01-21 03:19:24 +00:00
|
|
|
},
|
|
|
|
methods: {
|
2018-11-13 00:20:59 +00:00
|
|
|
show,
|
|
|
|
onClose () {
|
|
|
|
if (this.refs.video && !this.refs.video.paused) {
|
|
|
|
this.refs.video.pause()
|
|
|
|
}
|
|
|
|
}
|
2018-01-21 03:19:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|