Merge pull request #1091 from city-unit/feature/chub
This commit is contained in:
commit
8636987d8a
|
@ -6753,6 +6753,22 @@ function connectAPISlash(_, text) {
|
||||||
toastr.info(`API set to ${text}, trying to connect..`);
|
toastr.info(`API set to ${text}, trying to connect..`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function processDroppedFiles(files) {
|
||||||
|
const allowedMimeTypes = [
|
||||||
|
'application/json',
|
||||||
|
'image/png',
|
||||||
|
'image/webp',
|
||||||
|
];
|
||||||
|
|
||||||
|
for (const file of files) {
|
||||||
|
if (allowedMimeTypes.includes(file.type)) {
|
||||||
|
importCharacter(file);
|
||||||
|
} else {
|
||||||
|
toastr.warning('Unsupported file type: ' + file.name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function importCharacter(file) {
|
function importCharacter(file) {
|
||||||
const ext = file.name.match(/\.(\w+)$/);
|
const ext = file.name.match(/\.(\w+)$/);
|
||||||
if (
|
if (
|
||||||
|
@ -8798,21 +8814,6 @@ jQuery(async function () {
|
||||||
processDroppedFiles(files);
|
processDroppedFiles(files);
|
||||||
});
|
});
|
||||||
|
|
||||||
function processDroppedFiles(files) {
|
|
||||||
const allowedMimeTypes = [
|
|
||||||
'application/json',
|
|
||||||
'image/png',
|
|
||||||
'image/webp',
|
|
||||||
];
|
|
||||||
|
|
||||||
for (const file of files) {
|
|
||||||
if (allowedMimeTypes.includes(file.type)) {
|
|
||||||
importCharacter(file);
|
|
||||||
} else {
|
|
||||||
toastr.warning('Unsupported file type: ' + file.name);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$("#charListGridToggle").on('click', async () => {
|
$("#charListGridToggle").on('click', async () => {
|
||||||
doCharListDisplaySwitch();
|
doCharListDisplaySwitch();
|
||||||
|
|
Loading…
Reference in New Issue