mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 04:13:09 +02:00
b9cb6d1c10
将来ESMに移行しやすいように Related: #7658 なんかmochaが起動しなくなってるけど理由不明 すぐ直したい
57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
import { EntityRepository, Repository } from 'typeorm';
|
|
import { UserList } from '../entities/user-list.js';
|
|
import { UserListJoinings } from '../index.js';
|
|
import { SchemaType } from '@/misc/schema.js';
|
|
|
|
export type PackedUserList = SchemaType<typeof packedUserListSchema>;
|
|
|
|
@EntityRepository(UserList)
|
|
export class UserListRepository extends Repository<UserList> {
|
|
public async pack(
|
|
src: UserList['id'] | UserList,
|
|
): Promise<PackedUserList> {
|
|
const userList = typeof src === 'object' ? src : await this.findOneOrFail(src);
|
|
|
|
const users = await UserListJoinings.find({
|
|
userListId: userList.id
|
|
});
|
|
|
|
return {
|
|
id: userList.id,
|
|
createdAt: userList.createdAt.toISOString(),
|
|
name: userList.name,
|
|
userIds: users.map(x => x.userId)
|
|
};
|
|
}
|
|
}
|
|
|
|
export const packedUserListSchema = {
|
|
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',
|
|
},
|
|
name: {
|
|
type: 'string' as const,
|
|
optional: false as const, nullable: false as const,
|
|
},
|
|
userIds: {
|
|
type: 'array' as const,
|
|
nullable: false as const, optional: true as const,
|
|
items: {
|
|
type: 'string' as const,
|
|
nullable: false as const, optional: false as const,
|
|
format: 'id',
|
|
}
|
|
},
|
|
},
|
|
};
|