mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 03:23:09 +02:00
ebe340d510
* wip * wip * wip * wip * wip * Update ui.ts * wip * wip * wip * wip * wip * wip * wip * wip * Update CHANGELOG.md * wip * wip * wip * wip * 🎨 * wip * ✌️
44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
import { Inject, Injectable } from '@nestjs/common';
|
|
import { DI } from '@/di-symbols.js';
|
|
import type { FlashLikesRepository } from '@/models/index.js';
|
|
import { awaitAll } from '@/misc/prelude/await-all.js';
|
|
import type { Packed } from '@/misc/schema.js';
|
|
import type { } from '@/models/entities/Blocking.js';
|
|
import type { User } from '@/models/entities/User.js';
|
|
import type { FlashLike } from '@/models/entities/FlashLike.js';
|
|
import { bindThis } from '@/decorators.js';
|
|
import { UserEntityService } from './UserEntityService.js';
|
|
import { FlashEntityService } from './FlashEntityService.js';
|
|
|
|
@Injectable()
|
|
export class FlashLikeEntityService {
|
|
constructor(
|
|
@Inject(DI.flashLikesRepository)
|
|
private flashLikesRepository: FlashLikesRepository,
|
|
|
|
private flashEntityService: FlashEntityService,
|
|
) {
|
|
}
|
|
|
|
@bindThis
|
|
public async pack(
|
|
src: FlashLike['id'] | FlashLike,
|
|
me?: { id: User['id'] } | null | undefined,
|
|
) {
|
|
const like = typeof src === 'object' ? src : await this.flashLikesRepository.findOneByOrFail({ id: src });
|
|
|
|
return {
|
|
id: like.id,
|
|
flash: await this.flashEntityService.pack(like.flash ?? like.flashId, me),
|
|
};
|
|
}
|
|
|
|
@bindThis
|
|
public packMany(
|
|
likes: any[],
|
|
me: { id: User['id'] },
|
|
) {
|
|
return Promise.all(likes.map(x => this.pack(x, me)));
|
|
}
|
|
}
|
|
|