Files
hoppscotch/packages/hoppscotch-app/components/lenses/renderers/PDFLensRenderer.vue
2022-03-01 15:55:25 +05:30

53 lines
1.4 KiB
Vue

<template>
<div class="flex flex-col flex-1">
<div
class="sticky z-10 flex items-center justify-between pl-4 border-b bg-primary border-dividerLight top-lowerSecondaryStickyFold"
>
<label class="font-semibold text-secondaryLight">
{{ $t("response.body") }}
</label>
<div class="flex">
<ButtonSecondary
v-if="response.body"
ref="downloadResponse"
v-tippy="{ theme: 'tooltip' }"
:title="$t('action.download_file')"
:svg="downloadIcon"
@click.native="downloadResponse"
/>
</div>
</div>
<vue-pdf-embed
:source="pdfsrc"
class="flex flex-1 overflow-auto border-b hide-scrollbar border-dividerLight"
type="application/pdf"
/>
</div>
</template>
<script setup lang="ts">
import { computed } from "@nuxtjs/composition-api"
import VuePdfEmbed from "vue-pdf-embed/dist/vue2-pdf-embed"
import useDownloadResponse from "~/helpers/lenses/composables/useDownloadResponse"
import { HoppRESTResponse } from "~/helpers/types/HoppRESTResponse"
const props = defineProps<{
response: HoppRESTResponse & {
type: "success" | "fail"
}
}>()
const pdfsrc = computed(() =>
URL.createObjectURL(
new Blob([props.response.body], {
type: "application/pdf",
})
)
)
const { downloadIcon, downloadResponse } = useDownloadResponse(
"application/pdf",
computed(() => props.response.body)
)
</script>