import { FC } from 'react' import { useTranslation } from 'next-i18next' import useSystemTheme from 'react-use-system-theme' import { LightAsync as SyntaxHighlighter } from 'react-syntax-highlighter' import { tomorrowNightEighties, tomorrow } from 'react-syntax-highlighter/dist/cjs/styles/hljs' import useAxiosGet from '../../utils/fetchOnMount' import { getLanguageByFileName } from '../../utils/getPreviewType' import FourOhFour from '../FourOhFour' import Loading from '../Loading' import DownloadButtonGroup from '../DownloadBtnGtoup' import { DownloadBtnContainer, PreviewContainer } from './Containers' const CodePreview: FC<{ file: any }> = ({ file }) => { const { response: content, error, validating } = useAxiosGet(file['@microsoft.graph.downloadUrl']) const theme = useSystemTheme('dark') const { t } = useTranslation() if (error) { return ( ) } if (validating) { return ( ) } return (
{content}
) } export default CodePreview