import { MouseEventHandler } from 'react' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { IconProp } from '@fortawesome/fontawesome-svg-core' import toast from 'react-hot-toast' import { useClipboard } from 'use-clipboard-copy' import Image from 'next/image' import { useRouter } from 'next/router' import { getBaseUrl } from '../utils/getBaseUrl' const btnStyleMap = (btnColor?: string) => { const colorMap = { gray: 'hover:text-gray-600 dark:hover:text-white focus:ring-gray-200 focus:text-gray-600 dark:focus:text-white border-gray-300 dark:border-gray-500 dark:focus:ring-gray-500', blue: 'hover:text-blue-600 focus:ring-blue-200 focus:text-blue-600 border-blue-300 dark:border-blue-700 dark:focus:ring-blue-500', teal: 'hover:text-teal-600 focus:ring-teal-200 focus:text-teal-600 border-teal-300 dark:border-teal-700 dark:focus:ring-teal-500', red: 'hover:text-red-600 focus:ring-red-200 focus:text-red-600 border-red-300 dark:border-red-700 dark:focus:ring-red-500', green: 'hover:text-green-600 focus:ring-green-200 focus:text-green-600 border-green-300 dark:border-green-700 dark:focus:ring-green-500', pink: 'hover:text-pink-600 focus:ring-pink-200 focus:text-pink-600 border-pink-300 dark:border-pink-700 dark:focus:ring-pink-500', yellow: 'hover:text-yellow-400 focus:ring-yellow-100 focus:text-yellow-400 border-yellow-300 dark:border-yellow-400 dark:focus:ring-yellow-300', } if (btnColor) { return colorMap[btnColor] } return colorMap.gray } export const DownloadButton = ({ onClickCallback, btnColor, btnText, btnIcon, btnImage, btnTitle, }: { onClickCallback: MouseEventHandler btnColor?: string btnText: string btnIcon?: IconProp btnImage?: string btnTitle?: string }) => { return ( ) } const DownloadButtonGroup: React.FC<{ downloadUrl: string }> = ({ downloadUrl }) => { const { asPath } = useRouter() const clipboard = useClipboard() return (
window.open(downloadUrl)} btnColor="blue" btnText="Download" btnIcon="file-download" btnTitle="Download the file directly through OneDrive" /> {/* window.open(`/api/proxy?url=${encodeURIComponent(downloadUrl)}`)} btnColor="teal" btnText="Proxy download" btnIcon="download" btnTitle="Download the file with the stream proxied through Vercel Serverless" /> */} { clipboard.copy(`${getBaseUrl()}/api?path=${asPath}&raw=true`) toast.success('Copied direct link to clipboard.') }} btnColor="pink" btnText="Copy direct link" btnIcon="copy" btnTitle="Copy the permalink to the file to the clipboard" />
) } export default DownloadButtonGroup