c3lf-system-3/web/src/components/Lightbox.vue

33 lines
825 B
Vue
Raw Normal View History

2019-12-23 20:49:21 +00:00
<template>
<Modal @close="$emit('close')">
<template #body>
<AuthenticatedImage
2019-12-23 20:49:21 +00:00
class="img-fluid rounded mx-auto d-block mb-3 w-100"
:src="`/media/2/${hash}/`"
2019-12-23 20:49:21 +00:00
alt="Image not available."
id="lightbox-image"
/>
2019-12-23 20:49:21 +00:00
</template>
<template #buttons>
<button type="button" class="btn btn-secondary" @click="$emit('close')">Cancel</button>
</template>
</Modal>
</template>
<script>
import Modal from '@/components/Modal';
import AuthenticatedImage from "@/components/AuthenticatedImage.vue";
2019-12-23 20:49:21 +00:00
export default {
2023-11-27 00:14:52 +00:00
name: 'Lightbox',
components: {Modal, AuthenticatedImage},
props: ['hash']
2019-12-23 20:49:21 +00:00
};
</script>
<style>
2023-11-27 00:14:52 +00:00
#lightbox-image {
2019-12-23 20:49:21 +00:00
max-height: 75vh;
object-fit: contain;
2023-11-27 00:14:52 +00:00
}
2019-12-23 20:49:21 +00:00
</style>