stream-chat-react
Version:
React components to create chat conversations or livestream style chat
147 lines (146 loc) • 4.08 kB
JavaScript
export const wordMimeTypes = [
// Microsoft Word
// .doc .dot
'application/msword',
// .doc .dot
'application/msword-template',
// .docx
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
// .dotx (no test)
'application/vnd.openxmlformats-officedocument.wordprocessingml.template',
// .docm
'application/vnd.ms-word.document.macroEnabled.12',
// .dotm (no test)
'application/vnd.ms-word.template.macroEnabled.12',
// LibreOffice/OpenOffice Writer
// .odt
'application/vnd.oasis.opendocument.text',
// .ott
'application/vnd.oasis.opendocument.text-template',
// .fodt
'application/vnd.oasis.opendocument.text-flat-xml',
// .uot
// NOTE: firefox doesn't know mimetype so maybe ignore
];
export const excelMimeTypes = [
// .csv
'text/csv',
// TODO: maybe more data files
// Microsoft Excel
// .xls .xlt .xla (no test for .xla)
'application/vnd.ms-excel',
// .xlsx
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
// .xltx (no test)
'application/vnd.openxmlformats-officedocument.spreadsheetml.template',
// .xlsm
'application/vnd.ms-excel.sheet.macroEnabled.12',
// .xltm (no test)
'application/vnd.ms-excel.template.macroEnabled.12',
// .xlam (no test)
'application/vnd.ms-excel.addin.macroEnabled.12',
// .xlsb (no test)
'application/vnd.ms-excel.addin.macroEnabled.12',
// LibreOffice/OpenOffice Calc
// .ods
'application/vnd.oasis.opendocument.spreadsheet',
// .ots
'application/vnd.oasis.opendocument.spreadsheet-template',
// .fods
'application/vnd.oasis.opendocument.spreadsheet-flat-xml',
// .uos
// NOTE: firefox doesn't know mimetype so maybe ignore
];
export const powerpointMimeTypes = [
// Microsoft Word
// .ppt .pot .pps .ppa (no test for .ppa)
'application/vnd.ms-powerpoint',
// .pptx
'application/vnd.openxmlformats-officedocument.presentationml.presentation',
// .potx (no test)
'application/vnd.openxmlformats-officedocument.presentationml.template',
// .ppsx
'application/vnd.openxmlformats-officedocument.presentationml.slideshow',
// .ppam
'application/vnd.ms-powerpoint.addin.macroEnabled.12',
// .pptm
'application/vnd.ms-powerpoint.presentation.macroEnabled.12',
// .potm
'application/vnd.ms-powerpoint.template.macroEnabled.12',
// .ppsm
'application/vnd.ms-powerpoint.slideshow.macroEnabled.12',
// LibreOffice/OpenOffice Writer
// .odp
'application/vnd.oasis.opendocument.presentation',
// .otp
'application/vnd.oasis.opendocument.presentation-template',
// .fodp
'application/vnd.oasis.opendocument.presentation-flat-xml',
// .uop
// NOTE: firefox doesn't know mimetype so maybe ignore
];
export const archiveFileTypes = [
// .zip
'application/zip',
// .z7
'application/x-7z-compressed',
// .ar
'application/x-archive',
// .tar
'application/x-tar',
// .tar.gz
'application/gzip',
// .tar.Z
'application/x-compress',
// .tar.bz2
'application/x-bzip',
// .tar.lz
'application/x-lzip',
// .tar.lz4
'application/x-lz4',
// .tar.lzma
'application/x-lzma',
// .tar.lzo (no test)
'application/x-lzop',
// .tar.xz
'application/x-xz',
// .war
'application/x-webarchive',
// .rar
'application/vnd.rar',
];
export const codeFileTypes = [
// .html .htm
'text/html',
// .css
'text/css',
// .js
'application/x-javascript',
'text/javascript',
// .json
'application/json',
// .py
'text/x-python',
// .go
'text/x-go',
// .c
'text/x-csrc',
// .cpp
'text/x-c++src',
// .rb
'application/x-ruby',
// .rust
'text/rust',
// .java
'text/x-java',
// .php
'application/x-php',
// .cs
'text/x-csharp',
// .scala
'text/x-scala',
// .erl
'text/x-erlang',
// .sh
'application/x-shellscript',
];