mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-27 18:32:55 +03:00
5eed1a05cb
added loaders and compatibility # Description Please include a summary of the changes and the related issue. Please also include relevant motivation and context. ## Checklist before requesting a review Please delete options that are not relevant. - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented hard-to-understand areas - [ ] I have ideally added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged ## Screenshots (if appropriate):
54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
import {
|
|
BsFiletypeCsv,
|
|
BsFiletypeDocx,
|
|
BsFiletypeHtml,
|
|
BsFiletypeMd,
|
|
BsFiletypeMp3,
|
|
BsFiletypeMp4,
|
|
BsFiletypePdf,
|
|
BsFiletypePptx,
|
|
BsFiletypePy,
|
|
BsFiletypeTxt,
|
|
BsFiletypeXls,
|
|
BsFiletypeXlsx,
|
|
} from "react-icons/bs";
|
|
import { FaFile, FaRegFileAudio } from "react-icons/fa";
|
|
import { LiaFileVideo } from "react-icons/lia";
|
|
import { IconType } from "react-icons/lib";
|
|
|
|
import { getFileType } from "./getFileType";
|
|
import { SupportedFileExtensions } from "../types/SupportedFileExtensions";
|
|
|
|
const fileTypeIcons: Record<SupportedFileExtensions, IconType> = {
|
|
pdf: BsFiletypePdf,
|
|
mp3: BsFiletypeMp3,
|
|
mp4: BsFiletypeMp4,
|
|
html: BsFiletypeHtml,
|
|
txt: BsFiletypeTxt,
|
|
csv: BsFiletypeCsv,
|
|
md: BsFiletypeMd,
|
|
markdown: BsFiletypeMd,
|
|
m4a: LiaFileVideo,
|
|
mpga: FaRegFileAudio,
|
|
mpeg: LiaFileVideo,
|
|
webm: LiaFileVideo,
|
|
wav: FaRegFileAudio,
|
|
pptx: BsFiletypePptx,
|
|
docx: BsFiletypeDocx,
|
|
odt: BsFiletypeDocx,
|
|
xlsx: BsFiletypeXlsx,
|
|
xls: BsFiletypeXls,
|
|
epub: FaFile,
|
|
ipynb: BsFiletypePy,
|
|
py: BsFiletypePy,
|
|
telegram: BsFiletypeDocx,
|
|
};
|
|
|
|
export const getFileIcon = (fileName: string): JSX.Element => {
|
|
const fileType = getFileType(fileName);
|
|
|
|
const Icon = fileType !== undefined ? fileTypeIcons[fileType] : FaFile;
|
|
|
|
return <Icon className="text-2xl" />;
|
|
};
|