toggle favorite

This commit is contained in:
2025-12-22 09:56:09 +03:30
parent 2fcb7521ad
commit 7205319a81
2 changed files with 15 additions and 25 deletions
@@ -50,21 +50,13 @@ export class FoodController {
@UseGuards(AuthGuard) @UseGuards(AuthGuard)
@ApiHeader(API_HEADER_SLUG) @ApiHeader(API_HEADER_SLUG)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOperation({ summary: 'Set a food as favorite' }) @ApiOperation({ summary: 'toggle a food as favorite' })
@ApiParam({ name: 'foodId', required: true }) @ApiParam({ name: 'foodId', required: true })
setAsFavorute(@Param('foodId') foodId: string, @UserId() userId: string) { setAsFavorute(@Param('foodId') foodId: string, @UserId() userId: string) {
return this.foodsService.addFavorite(userId, foodId); return this.foodsService.toggleFavorite(userId, foodId);
} }
@Delete('public/foods/favorite/:foodId')
@UseGuards(AuthGuard)
@ApiHeader(API_HEADER_SLUG)
@ApiBearerAuth()
@ApiOperation({ summary: 'Remove a food favorite' })
@ApiParam({ name: 'foodId', required: true })
removeFavorite(@Param('foodId') foodId: string, @UserId() userId: string) {
return this.foodsService.removeFavorite(userId, foodId);
}
/* ---------------------------------- Admin ---------------------------------- */ /* ---------------------------------- Admin ---------------------------------- */
@UseGuards(AdminAuthGuard) @UseGuards(AdminAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
+8 -10
View File
@@ -246,20 +246,18 @@ export class FoodService {
// await this.invalidateRestaurantFoodsCache(restaurantSlug); // await this.invalidateRestaurantFoodsCache(restaurantSlug);
} }
async removeFavorite(userId: string, foodId: string) {
return this.em.nativeDelete(Favorite, { async toggleFavorite(userId: string, foodId: string) {
user: userId,
food: foodId, const favorite = await this.em.findOne(Favorite, { user: userId, food: foodId });
}); if (favorite) {
return this.em.removeAndFlush(favorite);
} }
const newFavorite = this.em.create(Favorite, {
async addFavorite(userId: string, foodId: string) {
const favorite = this.em.create(Favorite, {
user: userId, user: userId,
food: foodId, food: foodId,
}); });
return this.em.persistAndFlush(newFavorite);
await this.em.persistAndFlush(favorite);
} }
/** /**