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