18 lines
593 B
JavaScript
18 lines
593 B
JavaScript
import { db } from "../../db/postgre.js";
|
|
import { GalleryLike } from "../entities/gallery-like.js";
|
|
import { GalleryPosts } from "../index.js";
|
|
export const GalleryLikeRepository = db.getRepository(GalleryLike).extend({
|
|
async pack (src, me) {
|
|
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, me) {
|
|
return Promise.all(likes.map((x)=>this.pack(x, me)));
|
|
}
|
|
});
|