Move unsupported files alert to outside the loop
Co-authored-by: Lim Chee Aun <cheeaun@gmail.com>
This commit is contained in:
parent
53f7c39c77
commit
c277cbca8f
1 changed files with 10 additions and 2 deletions
|
@ -600,6 +600,7 @@ function Compose({
|
||||||
const handleItems = (e) => {
|
const handleItems = (e) => {
|
||||||
const { items } = e.clipboardData || e.dataTransfer;
|
const { items } = e.clipboardData || e.dataTransfer;
|
||||||
const files = [];
|
const files = [];
|
||||||
|
const unsupportedFiles = [];
|
||||||
for (let i = 0; i < items.length; i++) {
|
for (let i = 0; i < items.length; i++) {
|
||||||
const item = items[i];
|
const item = items[i];
|
||||||
if (item.kind === 'file') {
|
if (item.kind === 'file') {
|
||||||
|
@ -609,14 +610,21 @@ function Compose({
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else if (supportedMimeTypes !== undefined && !supportedMimeTypes.includes(file.type)) {
|
else if (supportedMimeTypes !== undefined && !supportedMimeTypes.includes(file.type)) {
|
||||||
alert(t`File "${file.name}" is not supported by your instance.`);
|
unsupportedFiles.push(file);
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
files.push(file);
|
files.push(file);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (unsupportedFiles.length > 0) {
|
||||||
|
alert(
|
||||||
|
plural(unsupportedFiles.length, {
|
||||||
|
one: `File ${unsupportedFiles[0]} is not supported by your instance.`,
|
||||||
|
other: `Files ${unsupportedFiles.join(", ")} are not supported by your instance.`,
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
}
|
||||||
if (files.length > 0 && mediaAttachments.length >= maxMediaAttachments) {
|
if (files.length > 0 && mediaAttachments.length >= maxMediaAttachments) {
|
||||||
alert(
|
alert(
|
||||||
plural(maxMediaAttachments, {
|
plural(maxMediaAttachments, {
|
||||||
|
|
Loading…
Add table
Reference in a new issue