14795b68f2
* 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の型不整合を修正 * add prelude/types.ts * emoji * signin * game * matching * fix * add emoji schema * add reversiGame * add reversiMatching * remove signin schema (use Signin entity) * add Packed type * note-reaction * user * user-group * user-list * note * app, messaging-message * notification * drive-file * drive-folder * following * muting * blocking * hashtag * page * app (with modifying schema) * import user? * channel * antenna * clip * gallery-post * emoji * Packed * reversi-matching * add changelog * add changelog * revert fix
51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
import { EntityRepository, Repository } from 'typeorm';
|
|
import { NoteReaction } from '@/models/entities/note-reaction';
|
|
import { Users } from '../index';
|
|
import { Packed } from '@/misc/schema';
|
|
import { convertLegacyReaction } from '@/misc/reaction-lib';
|
|
import { User } from '@/models/entities/user';
|
|
|
|
@EntityRepository(NoteReaction)
|
|
export class NoteReactionRepository extends Repository<NoteReaction> {
|
|
public async pack(
|
|
src: NoteReaction['id'] | NoteReaction,
|
|
me?: { id: User['id'] } | null | undefined
|
|
): Promise<Packed<'NoteReaction'>> {
|
|
const reaction = typeof src === 'object' ? src : await this.findOneOrFail(src);
|
|
|
|
return {
|
|
id: reaction.id,
|
|
createdAt: reaction.createdAt.toISOString(),
|
|
user: await Users.pack(reaction.userId, me),
|
|
type: convertLegacyReaction(reaction.reaction),
|
|
};
|
|
}
|
|
}
|
|
|
|
export const packedNoteReactionSchema = {
|
|
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',
|
|
},
|
|
user: {
|
|
type: 'object' as const,
|
|
optional: false as const, nullable: false as const,
|
|
ref: 'User' as const,
|
|
},
|
|
type: {
|
|
type: 'string' as const,
|
|
optional: false as const, nullable: false as const,
|
|
},
|
|
},
|
|
};
|