Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: set overflow and scrollbars style on the pdf viewer #8 #11

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 23 additions & 16 deletions streamlit_pdf_viewer/frontend/src/PdfViewer.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<template>
<div id="pdfViewer">

<div id="pdfViewer" :style="{overflow: 'scroll', height: pdfViewerHeight + 'px'}">
</div>
</template>

<script>
import {onMounted, onUpdated} from "vue"
import { onMounted, onUpdated, ref } from "vue"
import "pdfjs-dist/build/pdf.worker.entry"
import {getDocument} from "pdfjs-dist/build/pdf"
import {Streamlit} from "streamlit-component-lib"
Expand All @@ -15,8 +14,17 @@ export default {
props: ["args"], // Arguments that are passed to the plugin in Python are accessible in prop "args"
setup(props) {

let totalHeight = 0
let maxWidth = 0
// let totalHeight = 0
// let maxWidth = 0

const pdfViewerHeight = ref(800) // for debug mode
try {
pdfViewerHeight.value = window.parent.innerHeight * 0.85
} catch (error) {
// While debugging, the parent window cannot be retrieved due to CORS constraints, so this error occurs.
console.debug(error)
}

const loadPdfs = async (url) => {
try {
const loadingTask = await getDocument(url)
Expand All @@ -36,13 +44,11 @@ export default {
pdfViewer?.append(canvas)
canvas.height = viewport.height
canvas.width = viewport.width
if (canvas.width > maxWidth) {
maxWidth = canvas.width
}
totalHeight += canvas.height
// if (canvas.width > maxWidth) {
// maxWidth = canvas.width
// }
// totalHeight = canvas.height

// console.log(canvas.height)
// console.log(canvas.width)
canvas.style.display = "block"

const renderContext = {
Expand All @@ -63,24 +69,25 @@ export default {
}

onMounted(() => {
console.debug("Mounted")

if (props.args?.binary) {
const binaryDataUrl = `data:application/pdf;base64,${props.args.binary}`
loadPdfs(binaryDataUrl)
}
Streamlit.setFrameHeight(totalHeight)
Streamlit.setFrameHeight(pdfViewerHeight.value)
Streamlit.setComponentReady()
});

onUpdated(() => {
console.debug('Updated')
// After we're updated, tell Streamlit that our height may have changed.
Streamlit.setFrameHeight(totalHeight)
Streamlit.setComponentReady()
// Streamlit.setFrameHeight(pdfViewerHeight.value)
// Streamlit.setComponentReady()
});

return {
width: props.args?.width,
height: props.args?.height,
pdfViewerHeight,
}
},
}
Expand Down