2018-03-21 05:26:53 +01:00
|
|
|
<ModalDialog :label :shown background="var(--muted-modal-bg)" muted="true">
|
2018-02-05 00:59:42 +01:00
|
|
|
{{#if type === 'gifv'}}
|
|
|
|
<video
|
|
|
|
aria-label="Animated GIF: {{description || ''}}"
|
|
|
|
poster="{{poster}}"
|
|
|
|
src="{{src}}"
|
|
|
|
width="{{width}}"
|
|
|
|
height="{{height}}"
|
|
|
|
autoplay
|
|
|
|
muted
|
|
|
|
loop
|
|
|
|
playsinline
|
|
|
|
/>
|
|
|
|
{{else}}
|
|
|
|
<img
|
|
|
|
src="{{src}}"
|
|
|
|
width="{{width}}"
|
|
|
|
height="{{height}}"
|
2018-02-05 17:44:46 +01:00
|
|
|
alt="{{description || ''}}"
|
2018-02-05 00:59:42 +01:00
|
|
|
/>
|
|
|
|
{{/if}}
|
|
|
|
</ModalDialog>
|
|
|
|
<style>
|
2018-02-05 04:15:35 +01:00
|
|
|
:global(#modal-dialog img, #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-02-05 00:59:42 +01:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script>
|
2018-02-05 18:43:45 +01:00
|
|
|
import ModalDialog from './ModalDialog.html'
|
2018-02-05 00:59:42 +01:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
ModalDialog
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
async show() {
|
|
|
|
this.set({shown: true})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|