-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add guard when uploading a product with price as string and fix produ…
…ct images quality
- Loading branch information
1 parent
4ff4d8a
commit fb7a039
Showing
4 changed files
with
35 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
server/ecommerce/src/utils/pipes/ParseAndValidateProductPipe.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Injectable, PipeTransform } from '@nestjs/common'; | ||
import { | ||
ProductWithoutImageDto, | ||
ProductWithoutImageDtoSchema, | ||
} from '../dtos/product.dto'; | ||
|
||
@Injectable() | ||
export class ParseAndValidateProductPipe implements PipeTransform { | ||
transform(value: any): ProductWithoutImageDto { | ||
const parsedContent = JSON.parse(value.data); | ||
|
||
return ProductWithoutImageDtoSchema.parse(parsedContent); | ||
} | ||
} |