2019-04-07 12:50:36 +00:00
|
|
|
import { EntityRepository, Repository } from 'typeorm';
|
|
|
|
import { NoteFavorite } from '../entities/note-favorite';
|
|
|
|
import { Notes } from '..';
|
2021-03-24 02:05:37 +00:00
|
|
|
import { User } from '../entities/user';
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
@EntityRepository(NoteFavorite)
|
|
|
|
export class NoteFavoriteRepository extends Repository<NoteFavorite> {
|
|
|
|
public async pack(
|
|
|
|
src: NoteFavorite['id'] | NoteFavorite,
|
2021-03-24 02:05:37 +00:00
|
|
|
me?: { id: User['id'] } | null | undefined
|
2019-04-07 12:50:36 +00:00
|
|
|
) {
|
2021-02-13 06:33:38 +00:00
|
|
|
const favorite = typeof src === 'object' ? src : await this.findOneOrFail(src);
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
id: favorite.id,
|
2019-05-19 11:48:10 +00:00
|
|
|
createdAt: favorite.createdAt,
|
|
|
|
noteId: favorite.noteId,
|
2019-04-07 12:50:36 +00:00
|
|
|
note: await Notes.pack(favorite.note || favorite.noteId, me),
|
|
|
|
};
|
|
|
|
}
|
2019-04-25 04:27:07 +00:00
|
|
|
|
|
|
|
public packMany(
|
|
|
|
favorites: any[],
|
2021-03-24 02:05:37 +00:00
|
|
|
me: { id: User['id'] }
|
2019-04-25 04:27:07 +00:00
|
|
|
) {
|
|
|
|
return Promise.all(favorites.map(x => this.pack(x, me)));
|
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
2019-05-20 13:01:32 +00:00
|
|
|
|
|
|
|
export const packedNoteFavoriteSchema = {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-05-20 13:01:32 +00:00
|
|
|
properties: {
|
|
|
|
id: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-05-20 13:01:32 +00:00
|
|
|
format: 'id',
|
|
|
|
description: 'The unique identifier for this favorite.',
|
|
|
|
example: 'xxxxxxxxxx',
|
|
|
|
},
|
|
|
|
createdAt: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-05-20 13:01:32 +00:00
|
|
|
format: 'date-time',
|
|
|
|
description: 'The date that the favorite was created.'
|
|
|
|
},
|
|
|
|
note: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-05-20 13:01:32 +00:00
|
|
|
ref: 'Note',
|
|
|
|
},
|
|
|
|
noteId: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-05-20 13:01:32 +00:00
|
|
|
format: 'id',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|