mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 04:23:08 +02:00
1c67c26bd8
* wip * wip * wip * Update following.ts * wip * wip * wip * Update resolve-user.ts * maxQueryExecutionTime * wip * wip
27 lines
780 B
TypeScript
27 lines
780 B
TypeScript
import { db } from '@/db/postgre.js';
|
|
import { NoteFavorite } from '@/models/entities/note-favorite.js';
|
|
import { Notes } from '../index.js';
|
|
import { User } from '@/models/entities/user.js';
|
|
|
|
export const NoteFavoriteRepository = db.getRepository(NoteFavorite).extend({
|
|
async pack(
|
|
src: NoteFavorite['id'] | NoteFavorite,
|
|
me?: { id: User['id'] } | null | undefined
|
|
) {
|
|
const favorite = typeof src === 'object' ? src : await this.findOneByOrFail({ id: src });
|
|
|
|
return {
|
|
id: favorite.id,
|
|
createdAt: favorite.createdAt.toISOString(),
|
|
noteId: favorite.noteId,
|
|
note: await Notes.pack(favorite.note || favorite.noteId, me),
|
|
};
|
|
},
|
|
|
|
packMany(
|
|
favorites: any[],
|
|
me: { id: User['id'] }
|
|
) {
|
|
return Promise.all(favorites.map(x => this.pack(x, me)));
|
|
},
|
|
});
|