Update the series view command to be in greyscale if the user has not claimed the card #297

Merged
Vylpes merged 5 commits from feature/279-series-view-image-grid-2 into develop 2024-07-12 17:35:13 +01:00
2 changed files with 9 additions and 1 deletions
Showing only changes of commit 3b9706ae94 - Show all commits

View file

@ -47,6 +47,14 @@ export default class Inventory extends AppBaseEntity {
return single;
}
public static async ExistsByCardNumberAndUserId(userId: string, cardNumber: string): Promise<boolean> {
const repository = AppDataSource.getRepository(Inventory);
const count = await repository.count({ where: { UserId: userId, CardNumber: cardNumber }});
return count != 0;
}
public static async FetchAllByUserId(userId: string): Promise<Inventory[]> {
const repository = AppDataSource.getRepository(Inventory);

View file

@ -39,7 +39,7 @@ export default class ImageHelper {
const imageData = await Jimp.read(filePath);
if (userId != null) {
const claimed = await Inventory.FetchOneByCardNumberAndUserId(userId, card.id) != null;
const claimed = await Inventory.ExistsByCardNumberAndUserId(userId, card.id);
if (!claimed) {
imageData.greyscale();