mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-02 04:39:54 -05:00
48 lines
1.2 KiB
Vue
48 lines
1.2 KiB
Vue
<template>
|
|
<v-card class="mt-1 h-100">
|
|
<iframe width="100%" height="700px" :src="`${getDjangoUrl('/static/pdfjs/web/viewer.html', false)}?file=${getDjangoUrl('/api/get_recipe_file/')}${props.recipe.id}/`" v-if="isPdf"></iframe>
|
|
|
|
<v-img :src="`${getDjangoUrl('/api/get_recipe_file/')}${props.recipe.id}/`" v-if="isImage"></v-img>
|
|
</v-card>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import {computed, PropType} from "vue";
|
|
import {Recipe} from "@/openapi";
|
|
import {useDjangoUrls} from "@/composables/useDjangoUrls";
|
|
|
|
|
|
const props = defineProps({
|
|
recipe: {type: {} as PropType<Recipe>, required: true}
|
|
})
|
|
|
|
const {getDjangoUrl} = useDjangoUrls()
|
|
|
|
/**
|
|
* determines if the file is a PDF based on the path
|
|
*/
|
|
const isPdf = computed(() => {
|
|
let filePath = props.recipe.filePath
|
|
if (filePath) {
|
|
return filePath.includes('.pdf')
|
|
}
|
|
return false
|
|
})
|
|
|
|
/**
|
|
* determines if the file is an image based on the path
|
|
*/
|
|
const isImage = computed(() => {
|
|
let filePath = props.recipe.filePath
|
|
if (filePath) {
|
|
return filePath.includes('.png') || filePath.includes('.jpg') || filePath.includes('.jpeg') || filePath.includes('.gif')
|
|
}
|
|
return false
|
|
})
|
|
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |