0463c6bb0f
* wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * Update description.ts * wip
28 lines
855 B
TypeScript
28 lines
855 B
TypeScript
import { EntityRepository, Repository } from 'typeorm';
|
|
import { ReversiMatching } from '../../../entities/games/reversi/matching';
|
|
import { Users } from '../../..';
|
|
import { ensure } from '../../../../prelude/ensure';
|
|
import { awaitAll } from '../../../../prelude/await-all';
|
|
|
|
@EntityRepository(ReversiMatching)
|
|
export class ReversiMatchingRepository extends Repository<ReversiMatching> {
|
|
public async pack(
|
|
src: ReversiMatching['id'] | ReversiMatching,
|
|
me: any
|
|
) {
|
|
const matching = typeof src === 'object' ? src : await this.findOne(src).then(ensure);
|
|
|
|
return await awaitAll({
|
|
id: matching.id,
|
|
createdAt: matching.createdAt,
|
|
parentId: matching.parentId,
|
|
parent: Users.pack(matching.parentId, me, {
|
|
detail: true
|
|
}),
|
|
childId: matching.childId,
|
|
child: Users.pack(matching.childId, me, {
|
|
detail: true
|
|
})
|
|
});
|
|
}
|
|
}
|