mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 11:23:08 +02:00
ce340aba7a
* wip * wip * wip * wip * wip * Update define.ts * Update update.ts * Update user.ts * wip * wip * Update request.ts * URL * wip * wip * wip * wip * Update invite.ts * Update create.ts
58 lines
1.5 KiB
TypeScript
58 lines
1.5 KiB
TypeScript
import { EntityRepository, Repository } from 'typeorm';
|
|
import { NoteFavorite } from '../entities/note-favorite';
|
|
import { Notes } from '..';
|
|
import { User } from '../entities/user';
|
|
|
|
@EntityRepository(NoteFavorite)
|
|
export class NoteFavoriteRepository extends Repository<NoteFavorite> {
|
|
public async pack(
|
|
src: NoteFavorite['id'] | NoteFavorite,
|
|
me?: { id: User['id'] } | null | undefined
|
|
) {
|
|
const favorite = typeof src === 'object' ? src : await this.findOneOrFail(src);
|
|
|
|
return {
|
|
id: favorite.id,
|
|
createdAt: favorite.createdAt,
|
|
noteId: favorite.noteId,
|
|
note: await Notes.pack(favorite.note || favorite.noteId, me),
|
|
};
|
|
}
|
|
|
|
public packMany(
|
|
favorites: any[],
|
|
me: { id: User['id'] }
|
|
) {
|
|
return Promise.all(favorites.map(x => this.pack(x, me)));
|
|
}
|
|
}
|
|
|
|
export const packedNoteFavoriteSchema = {
|
|
type: 'object' as const,
|
|
optional: false as const, nullable: false as const,
|
|
properties: {
|
|
id: {
|
|
type: 'string' as const,
|
|
optional: false as const, nullable: false as const,
|
|
format: 'id',
|
|
description: 'The unique identifier for this favorite.',
|
|
example: 'xxxxxxxxxx',
|
|
},
|
|
createdAt: {
|
|
type: 'string' as const,
|
|
optional: false as const, nullable: false as const,
|
|
format: 'date-time',
|
|
description: 'The date that the favorite was created.'
|
|
},
|
|
note: {
|
|
type: 'object' as const,
|
|
optional: false as const, nullable: false as const,
|
|
ref: 'Note',
|
|
},
|
|
noteId: {
|
|
type: 'string' as const,
|
|
optional: false as const, nullable: false as const,
|
|
format: 'id',
|
|
},
|
|
},
|
|
};
|