53f3b779bf
* packedNotificationSchemaを更新 * read:gallery, write:gallery, read:gallery-likes, write:gallery-likesに翻訳を追加 * fix * add header, choice, invitation * test * fix * yatta * remove no longer needed "as PackedUser/PackedNote" * clean up * add simple-schema * fix lint * define items in full Schema * revert https://github.com/misskey-dev/misskey/pull/7772#discussion_r706627736 * user packとnote packの型不整合を修正
57 lines
1.4 KiB
TypeScript
57 lines
1.4 KiB
TypeScript
import { EntityRepository, Repository } from 'typeorm';
|
|
import { NoteFavorite } from '@/models/entities/note-favorite';
|
|
import { Notes } from '../index';
|
|
import { User } from '@/models/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',
|
|
example: 'xxxxxxxxxx',
|
|
},
|
|
createdAt: {
|
|
type: 'string' as const,
|
|
optional: false as const, nullable: false as const,
|
|
format: 'date-time',
|
|
},
|
|
note: {
|
|
type: 'object' as const,
|
|
optional: false as const, nullable: false as const,
|
|
ref: 'Note' as const,
|
|
},
|
|
noteId: {
|
|
type: 'string' as const,
|
|
optional: false as const, nullable: false as const,
|
|
format: 'id',
|
|
},
|
|
},
|
|
};
|