mirror of
https://github.com/StepanovPlaton/torrent_frontend.git
synced 2026-04-03 12:20:48 +04:00
36 lines
930 B
TypeScript
36 lines
930 B
TypeScript
import { z } from "zod";
|
|
|
|
export const gameCardSchema = z
|
|
.object({
|
|
id: z.number().positive(),
|
|
title: z.string().min(3),
|
|
cover: z.string().optional(),
|
|
description: z.string().optional(),
|
|
version: z.string().optional(),
|
|
})
|
|
.transform((card) => {
|
|
return {
|
|
...card,
|
|
cover: card.cover
|
|
? process.env.NEXT_PUBLIC_COVER_FULL_URL + "/" + card.cover
|
|
: undefined,
|
|
cover_preview: card.cover
|
|
? process.env.NEXT_PUBLIC_COVER_PREVIEW_URL + "/" + card.cover
|
|
: undefined,
|
|
};
|
|
});
|
|
export type GameCardType = z.infer<typeof gameCardSchema>;
|
|
|
|
export const isGameCard = (a: any): a is GameCardType => {
|
|
return gameCardSchema.safeParse(a).success;
|
|
};
|
|
|
|
export const gameCardsSchema = z.array(z.any()).transform((a) => {
|
|
const cards: GameCardType[] = [];
|
|
a.forEach((e) => {
|
|
if (isGameCard(e)) cards.push(gameCardSchema.parse(e));
|
|
else console.error("GameCard parse error - ", e);
|
|
});
|
|
return cards;
|
|
});
|