[feature-136] Models panel + models linkage + models linkage modals + some cleaning

This commit is contained in:
MathieuG-P
2023-04-29 15:24:45 +02:00
parent f602547ca4
commit bdbdcfb1b4
21 changed files with 649 additions and 55 deletions
@@ -17,8 +17,18 @@ export interface MSModel {
date: string
}
export type MSModelType = "saber"|"platform"|"bloq"|"misc"|"avatar";
export type MSModelPlatform = "pc"|"quest"|"all";
export enum MSModelType {
Avatar = "avatar",
Saber = "saber",
Platfrom = "platform",
Bloq = "bloq"
};
export enum MSModelPlatform {
PC = "pc",
QUEST = "quest",
ALL = "all"
};
export interface MSGetQuery {
type?: MSModelType;
@@ -0,0 +1,8 @@
import { MSModelType } from "./model-saber.model";
export const MODEL_TYPE_FOLDERS = {
[MSModelType.Avatar]: "CustomAvatars",
[MSModelType.Bloq]: "CustomNotes",
[MSModelType.Platfrom]: "CustomPlatforms",
[MSModelType.Saber]: "CustomSabers"
}