iceshrimp/packages/backend/src/models/repositories/gallery-like.ts
ThatOneCalculator 2aab2de38d refactor: 🎨 rome
2023-01-12 20:40:33 -08:00

19 lines
580 B
TypeScript

import { db } from "@/db/postgre.js";
import { GalleryLike } from "@/models/entities/gallery-like.js";
import { GalleryPosts } from "../index.js";
export const GalleryLikeRepository = db.getRepository(GalleryLike).extend({
async pack(src: GalleryLike["id"] | GalleryLike, me?: any) {
const like =
typeof src === "object" ? src : await this.findOneByOrFail({ id: src });
return {
id: like.id,
post: await GalleryPosts.pack(like.post || like.postId, me),
};
},
packMany(likes: any[], me: any) {
return Promise.all(likes.map((x) => this.pack(x, me)));
},
});