import { IsNotEmpty, IsString, IsDate, Length, IsInt, Min, Max, IsArray, IsJSON, } from 'class-validator'; import { Timestamp } from 'typeorm'; export class GameDTO { @IsString() @IsNotEmpty() @Length(3, 30) name: string; @IsString() gameDescription?: string; @IsDate() @IsNotEmpty() @Length(1, 255) desc: string; @IsNotEmpty() //@IsJSON() center: JSON; //@IsJSON() // doesn't accept with IsJSON, WIP to get validation for map and center // IsJSON checks with json.parse, expecting string map?: JSON; @IsDateString() @IsNotEmpty() startdate: string; @IsDateString() @IsNotEmpty() enddate: string; // custom validation for array length (arr>min, arr<max) //@Validate(ArrayLength, [4, 8]) factions?: FactionDTO[]; @IsArray() @IsNotEmpty() objectivePoint?: ObjectivePointDTO[]; @IsJSON() @IsNotEmpty() mapCoordinates: JSON; } export class FactionDTO { @IsString() @IsNotEmpty() @Length(2, 15) name: string; id: string; game: GameDTO; password: string; } export class GameGroupDTO { @IsString() @Length(3, 31) name: string; }