2018-04-08 23:56:20 +00:00
|
|
|
<ModalDialog
|
|
|
|
:id
|
|
|
|
:label
|
|
|
|
background="var(--muted-modal-bg)"
|
|
|
|
muted="true"
|
|
|
|
className="image-modal-dialog"
|
2018-04-01 01:46:44 +00:00
|
|
|
>
|
2018-02-04 23:59:42 +00:00
|
|
|
{{#if type === 'gifv'}}
|
2018-03-31 17:45:11 +00:00
|
|
|
<AutoplayVideo
|
|
|
|
ariaLabel="Animated GIF: {{description || ''}}"
|
|
|
|
:poster
|
|
|
|
:src
|
|
|
|
:width
|
|
|
|
:height
|
2018-02-04 23:59:42 +00:00
|
|
|
/>
|
|
|
|
{{else}}
|
|
|
|
<img
|
|
|
|
src="{{src}}"
|
|
|
|
width="{{width}}"
|
|
|
|
height="{{height}}"
|
2018-02-05 16:44:46 +00:00
|
|
|
alt="{{description || ''}}"
|
2018-04-11 03:02:42 +00:00
|
|
|
title="{{description || ''}}"
|
2018-02-04 23:59:42 +00:00
|
|
|
/>
|
|
|
|
{{/if}}
|
|
|
|
</ModalDialog>
|
|
|
|
<style>
|
2018-04-01 01:46:44 +00:00
|
|
|
:global(.image-modal-dialog img, .image-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-02-04 23:59:42 +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 AutoplayVideo from '../../AutoplayVideo.html'
|
|
|
|
import { show } from '../helpers/showDialog'
|
|
|
|
import { oncreate } from '../helpers/onCreateDialog'
|
2018-02-04 23:59:42 +00:00
|
|
|
|
|
|
|
export default {
|
2018-04-08 23:56:20 +00:00
|
|
|
oncreate,
|
2018-02-04 23:59:42 +00:00
|
|
|
components: {
|
2018-03-31 17:45:11 +00:00
|
|
|
ModalDialog,
|
|
|
|
AutoplayVideo
|
2018-02-04 23:59:42 +00:00
|
|
|
},
|
|
|
|
methods: {
|
2018-04-08 23:56:20 +00:00
|
|
|
show
|
2018-02-04 23:59:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|