You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.4 KiB
71 lines
1.4 KiB
"use strict";
|
|
|
|
exports.__esModule = true;
|
|
exports.toArray = toArray;
|
|
exports.readFile = readFile;
|
|
exports.isOversize = isOversize;
|
|
exports.isImageUrl = isImageUrl;
|
|
exports.isImageFile = isImageFile;
|
|
|
|
function toArray(item) {
|
|
if (Array.isArray(item)) {
|
|
return item;
|
|
}
|
|
|
|
return [item];
|
|
}
|
|
|
|
function readFile(file, resultType) {
|
|
return new Promise(function (resolve) {
|
|
if (resultType === 'file') {
|
|
resolve();
|
|
return;
|
|
}
|
|
|
|
var reader = new FileReader();
|
|
|
|
reader.onload = function (event) {
|
|
resolve(event.target.result);
|
|
};
|
|
|
|
if (resultType === 'dataUrl') {
|
|
reader.readAsDataURL(file);
|
|
} else if (resultType === 'text') {
|
|
reader.readAsText(file);
|
|
}
|
|
});
|
|
}
|
|
|
|
function isOversize(files, maxSize) {
|
|
return toArray(files).some(function (file) {
|
|
return file.size > maxSize;
|
|
});
|
|
}
|
|
|
|
var IMAGE_REGEXP = /\.(jpeg|jpg|gif|png|svg|webp|jfif|bmp|dpg)/i;
|
|
|
|
function isImageUrl(url) {
|
|
return IMAGE_REGEXP.test(url);
|
|
}
|
|
|
|
function isImageFile(item) {
|
|
// some special urls cannot be recognized
|
|
// user can add `isImage` flag to mark it as an image url
|
|
if (item.isImage) {
|
|
return true;
|
|
}
|
|
|
|
if (item.file && item.file.type) {
|
|
return item.file.type.indexOf('image') === 0;
|
|
}
|
|
|
|
if (item.url) {
|
|
return isImageUrl(item.url);
|
|
}
|
|
|
|
if (item.content) {
|
|
return item.content.indexOf('data:image') === 0;
|
|
}
|
|
|
|
return false;
|
|
} |