2018-04-04 20:33:17 -07:00
|
|
|
<ModalDialog
|
2018-05-01 17:05:36 -07:00
|
|
|
{id}
|
|
|
|
{label}
|
2018-04-04 20:33:17 -07:00
|
|
|
background="var(--muted-modal-bg)"
|
|
|
|
muted="true"
|
|
|
|
className="video-modal-dialog"
|
2018-03-31 18:46:44 -07:00
|
|
|
>
|
2018-05-01 17:05:36 -07:00
|
|
|
<video {poster}
|
|
|
|
{src}
|
|
|
|
{width}
|
|
|
|
{height}
|
|
|
|
aria-label="Video: {description || ''}"
|
2018-01-20 19:19:24 -08:00
|
|
|
controls
|
|
|
|
/>
|
2018-02-04 13:49:43 -08:00
|
|
|
</ModalDialog>
|
2018-01-20 19:19:24 -08:00
|
|
|
<style>
|
2018-03-31 18:46:44 -07:00
|
|
|
:global(.video-modal-dialog video) {
|
2018-02-04 15:59:42 -08:00
|
|
|
object-fit: contain;
|
|
|
|
max-width: calc(100vw - 20px);
|
2018-02-22 20:04:19 -08:00
|
|
|
max-height: calc(100% - 20px);
|
|
|
|
overflow: hidden;
|
2018-01-20 19:19:24 -08:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script>
|
2018-02-05 09:43:45 -08:00
|
|
|
import ModalDialog from './ModalDialog.html'
|
2018-04-08 16:56:20 -07:00
|
|
|
import { show } from '../helpers/showDialog'
|
|
|
|
import { oncreate } from '../helpers/onCreateDialog'
|
2018-01-20 19:19:24 -08:00
|
|
|
|
|
|
|
export default {
|
2018-04-08 16:56:20 -07:00
|
|
|
oncreate,
|
2018-02-04 13:49:43 -08:00
|
|
|
components: {
|
|
|
|
ModalDialog
|
2018-01-20 19:19:24 -08:00
|
|
|
},
|
|
|
|
methods: {
|
2018-04-08 16:56:20 -07:00
|
|
|
show
|
2018-01-20 19:19:24 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|