Added search for token category in file name
This commit is contained in:
parent
b36bec5d9b
commit
93e5a2d80f
@ -6,7 +6,7 @@ import blobToBuffer from "./blobToBuffer";
|
|||||||
import { createThumbnail, getImageOutline } from "./image";
|
import { createThumbnail, getImageOutline } from "./image";
|
||||||
import Vector2 from "./Vector2";
|
import Vector2 from "./Vector2";
|
||||||
|
|
||||||
import { Token, FileToken } from "../types/Token";
|
import { Token, FileToken, TokenCategory } from "../types/Token";
|
||||||
import { TokenState, BaseTokenState } from "../types/TokenState";
|
import { TokenState, BaseTokenState } from "../types/TokenState";
|
||||||
import { Asset } from "../types/Asset";
|
import { Asset } from "../types/Asset";
|
||||||
import { Outline } from "../types/Outline";
|
import { Outline } from "../types/Outline";
|
||||||
@ -58,6 +58,7 @@ export async function createTokenFromFile(
|
|||||||
return Promise.reject();
|
return Promise.reject();
|
||||||
}
|
}
|
||||||
let name = "Unknown Token";
|
let name = "Unknown Token";
|
||||||
|
let category: TokenCategory = "character";
|
||||||
let defaultSize = 1;
|
let defaultSize = 1;
|
||||||
if (file.name) {
|
if (file.name) {
|
||||||
if (file.name.matchAll) {
|
if (file.name.matchAll) {
|
||||||
@ -76,6 +77,14 @@ export async function createTokenFromFile(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Match only the category e.g mount and not mountain
|
||||||
|
if (/prop([^a-z]+|$)/.test(file.name.toLowerCase())) {
|
||||||
|
category = "prop";
|
||||||
|
} else if (/mount([^a-z]+|$)/.test(file.name.toLowerCase())) {
|
||||||
|
category = "vehicle";
|
||||||
|
} else if (/attachment([^a-z]+|$)/.test(file.name.toLowerCase())) {
|
||||||
|
category = "attachment";
|
||||||
|
}
|
||||||
// Remove file extension
|
// Remove file extension
|
||||||
name = file.name.replace(/\.[^/.]+$/, "");
|
name = file.name.replace(/\.[^/.]+$/, "");
|
||||||
// Removed grid size expression
|
// Removed grid size expression
|
||||||
@ -126,7 +135,7 @@ export async function createTokenFromFile(
|
|||||||
created: Date.now(),
|
created: Date.now(),
|
||||||
lastModified: Date.now(),
|
lastModified: Date.now(),
|
||||||
owner: userId,
|
owner: userId,
|
||||||
defaultCategory: "character",
|
defaultCategory: category,
|
||||||
defaultLabel: "",
|
defaultLabel: "",
|
||||||
hideInSidebar: false,
|
hideInSidebar: false,
|
||||||
width: image.width,
|
width: image.width,
|
||||||
|
Loading…
Reference in New Issue
Block a user