You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<script setup lang="ts">
|
|
|
|
interface Props {
|
|
|
|
src: string[]
|
|
|
|
class?: string
|
|
|
|
}
|
|
|
|
|
|
|
|
const props = defineProps<Props>()
|
|
|
|
|
|
|
|
const currentIndex = ref(0)
|
|
|
|
|
|
|
|
const handleError = () => {
|
|
|
|
if (currentIndex.value < props.src.length - 1) {
|
|
|
|
currentIndex.value = currentIndex.value + 1
|
|
|
|
} else {
|
|
|
|
currentIndex.value = -1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const openMethod = ref<'google' | undefined>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div v-if="!openMethod" :class="props.class" class="flex flex-col text-white gap-2 items-center justify-center">
|
|
|
|
<GeneralIcon class="w-28 h-28" icon="pdfFile" />
|
|
|
|
|
|
|
|
<NcButton type="secondary" @click="openMethod = 'google'">
|
|
|
|
<div class="flex items-center gap-1">
|
|
|
|
<GeneralIcon class="w-4 h-4" icon="googleDocs" />
|
|
|
|
|
|
|
|
Open with Google Docs
|
|
|
|
</div>
|
|
|
|
</NcButton>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<iframe
|
|
|
|
v-else-if="openMethod === 'google'"
|
|
|
|
:class="props.class"
|
|
|
|
:src="`https://docs.google.com/viewer?url=${encodeURIComponent(src[currentIndex])}&embedded=true`"
|
|
|
|
width="100%"
|
|
|
|
height="100%"
|
|
|
|
frameborder="0"
|
|
|
|
@error="handleError"
|
|
|
|
></iframe>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped lang="scss"></style>
|