ed64c91da6
* fix: hide faces * remove unused variable * fix: work even if one fails * better style for hidden people * add hide face in the menu dropdown * add buttons to toggle visibility for all faces * add server test * close modal with escape key * fix: explore page * improve show & hide faces modal * keep name on people card * simplify layout * sticky app bar in show-hide page * fix format --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
102 lines
1.8 KiB
TypeScript
102 lines
1.8 KiB
TypeScript
import { AssetFaceEntity, PersonEntity } from '@app/infra/entities';
|
|
import { Transform, Type } from 'class-transformer';
|
|
import { IsArray, IsBoolean, IsNotEmpty, IsOptional, IsString, ValidateNested } from 'class-validator';
|
|
import { toBoolean, ValidateUUID } from '../domain.util';
|
|
|
|
export class PersonUpdateDto {
|
|
/**
|
|
* Person name.
|
|
*/
|
|
@IsOptional()
|
|
@IsString()
|
|
name?: string;
|
|
|
|
/**
|
|
* Asset is used to get the feature face thumbnail.
|
|
*/
|
|
@IsOptional()
|
|
@IsString()
|
|
featureFaceAssetId?: string;
|
|
|
|
/**
|
|
* Person visibility
|
|
*/
|
|
@IsOptional()
|
|
@IsBoolean()
|
|
isHidden?: boolean;
|
|
}
|
|
|
|
export class PeopleUpdateDto {
|
|
@IsArray()
|
|
@ValidateNested({ each: true })
|
|
@Type(() => PeopleUpdateItem)
|
|
people!: PeopleUpdateItem[];
|
|
}
|
|
|
|
export class PeopleUpdateItem {
|
|
/**
|
|
* Person id.
|
|
*/
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
id!: string;
|
|
|
|
/**
|
|
* Person name.
|
|
*/
|
|
@IsOptional()
|
|
@IsString()
|
|
name?: string;
|
|
|
|
/**
|
|
* Asset is used to get the feature face thumbnail.
|
|
*/
|
|
@IsOptional()
|
|
@IsString()
|
|
featureFaceAssetId?: string;
|
|
|
|
/**
|
|
* Person visibility
|
|
*/
|
|
@IsOptional()
|
|
@IsBoolean()
|
|
isHidden?: boolean;
|
|
}
|
|
|
|
export class MergePersonDto {
|
|
@ValidateUUID({ each: true })
|
|
ids!: string[];
|
|
}
|
|
|
|
export class PersonSearchDto {
|
|
@IsBoolean()
|
|
@Transform(toBoolean)
|
|
withHidden?: boolean = false;
|
|
}
|
|
|
|
export class PersonResponseDto {
|
|
id!: string;
|
|
name!: string;
|
|
thumbnailPath!: string;
|
|
isHidden!: boolean;
|
|
}
|
|
|
|
export class PeopleResponseDto {
|
|
total!: number;
|
|
visible!: number;
|
|
people!: PersonResponseDto[];
|
|
}
|
|
|
|
export function mapPerson(person: PersonEntity): PersonResponseDto {
|
|
return {
|
|
id: person.id,
|
|
name: person.name,
|
|
thumbnailPath: person.thumbnailPath,
|
|
isHidden: person.isHidden,
|
|
};
|
|
}
|
|
|
|
export function mapFace(face: AssetFaceEntity): PersonResponseDto {
|
|
return mapPerson(face.person);
|
|
}
|