mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-11-29 18:48:32 +08:00
04baae5a57
* refactor: vc-upload * refactor: vc-upload * refactor: upload * refactor: upload * refactor: upload
54 lines
1.5 KiB
TypeScript
54 lines
1.5 KiB
TypeScript
import { warning } from '../vc-util/warning';
|
|
import type { RcFile } from './interface';
|
|
|
|
export default (file: RcFile, acceptedFiles: string | string[]) => {
|
|
if (file && acceptedFiles) {
|
|
const acceptedFilesArray = Array.isArray(acceptedFiles)
|
|
? acceptedFiles
|
|
: acceptedFiles.split(',');
|
|
const fileName = file.name || '';
|
|
const mimeType = file.type || '';
|
|
const baseMimeType = mimeType.replace(/\/.*$/, '');
|
|
|
|
return acceptedFilesArray.some(type => {
|
|
const validType = type.trim();
|
|
// This is something like */*,* allow all files
|
|
if (/^\*(\/\*)?$/.test(type)) {
|
|
return true;
|
|
}
|
|
|
|
// like .jpg, .png
|
|
if (validType.charAt(0) === '.') {
|
|
const lowerFileName = fileName.toLowerCase();
|
|
const lowerType = validType.toLowerCase();
|
|
|
|
let affixList = [lowerType];
|
|
if (lowerType === '.jpg' || lowerType === '.jpeg') {
|
|
affixList = ['.jpg', '.jpeg'];
|
|
}
|
|
|
|
return affixList.some(affix => lowerFileName.endsWith(affix));
|
|
}
|
|
|
|
// This is something like a image/* mime type
|
|
if (/\/\*$/.test(validType)) {
|
|
return baseMimeType === validType.replace(/\/.*$/, '');
|
|
}
|
|
|
|
// Full match
|
|
if (mimeType === validType) {
|
|
return true;
|
|
}
|
|
|
|
// Invalidate type should skip
|
|
if (/^\w+$/.test(validType)) {
|
|
warning(false, `Upload takes an invalidate 'accept' type '${validType}'.Skip for check.`);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
});
|
|
}
|
|
return true;
|
|
};
|