mirror of
https://github.com/Nezumi-2711/onedrive-vercel-index.git
synced 2026-09-22 20:01:46 +00:00
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
import type { OdFileObject } from '../../types'
|
|
import { FC, useEffect, useRef, useState } from 'react'
|
|
import { useRouter } from 'next/router'
|
|
|
|
import Preview from 'preview-office-docs'
|
|
|
|
import DownloadButtonGroup from '../DownloadBtnGtoup'
|
|
import { DownloadBtnContainer } from './Containers'
|
|
import { getBaseUrl } from '../../utils/getBaseUrl'
|
|
import { getStoredToken } from '../../utils/protectedRouteHandler'
|
|
|
|
const OfficePreview: FC<{ file: OdFileObject }> = ({ file }) => {
|
|
const { asPath } = useRouter()
|
|
const hashedToken = getStoredToken(asPath)
|
|
|
|
const docContainer = useRef<HTMLDivElement>(null)
|
|
const [docContainerWidth, setDocContainerWidth] = useState(600)
|
|
|
|
const docUrl = encodeURIComponent(
|
|
`${getBaseUrl()}/api/raw/?path=${asPath}${hashedToken ? `&odpt=${hashedToken}` : ''}`
|
|
)
|
|
|
|
useEffect(() => {
|
|
setDocContainerWidth(docContainer.current ? docContainer.current.offsetWidth : 600)
|
|
}, [])
|
|
|
|
return (
|
|
<div>
|
|
<div className="overflow-scroll" ref={docContainer} style={{ maxHeight: '90vh' }}>
|
|
<Preview url={docUrl} width={docContainerWidth.toString()} height="600" />
|
|
</div>
|
|
<DownloadBtnContainer>
|
|
<DownloadButtonGroup />
|
|
</DownloadBtnContainer>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default OfficePreview
|