2021-04-24 16:38:24 +03:00
|
|
|
import { EntityRepository, Repository } from 'typeorm';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { GalleryLike } from '@/models/entities/gallery-like.js';
|
|
|
|
import { GalleryPosts } from '../index.js';
|
2021-04-24 16:38:24 +03:00
|
|
|
|
|
|
|
@EntityRepository(GalleryLike)
|
|
|
|
export class GalleryLikeRepository extends Repository<GalleryLike> {
|
|
|
|
public async pack(
|
|
|
|
src: GalleryLike['id'] | GalleryLike,
|
|
|
|
me?: any
|
|
|
|
) {
|
|
|
|
const like = typeof src === 'object' ? src : await this.findOneOrFail(src);
|
|
|
|
|
|
|
|
return {
|
|
|
|
id: like.id,
|
|
|
|
post: await GalleryPosts.pack(like.post || like.postId, me),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public packMany(
|
|
|
|
likes: any[],
|
|
|
|
me: any
|
|
|
|
) {
|
|
|
|
return Promise.all(likes.map(x => this.pack(x, me)));
|
|
|
|
}
|
|
|
|
}
|