import { plainToInstance } from 'class-transformer' import ApiService from '@/services/api.service' import { CommentRepository, SearchOption } from '@/domain/models/comment/commentRepository' import { CommentItem, CommentItemList } from '~/domain/models/comment/comment' export class APICommentRepository implements CommentRepository { constructor( private readonly request = ApiService ) {} async listAll(projectId: string, { limit = '10', offset = '0', q = '' }: SearchOption): Promise { const url = `/projects/${projectId}/comments?q=${q}&limit=${limit}&offset=${offset}` const response = await this.request.get(url) return plainToInstance(CommentItemList, response.data) } async list(projectId: string, exampleId: number): Promise { const url = `/projects/${projectId}/comments?example=${exampleId}&limit=100` const response = await this.request.get(url) return response.data.results.map((item: any) => plainToInstance(CommentItem, item)) } async create(projectId: string, exampleId: number, text: string): Promise { const url = `/projects/${projectId}/comments?example=${exampleId}` const response = await this.request.post(url, { projectId, exampleId, text }) return plainToInstance(CommentItem, response.data) } async update(projectId: string, item: CommentItem): Promise { const url = `/projects/${projectId}/comments/${item.id}` const response = await this.request.put(url, item.toObject()) return plainToInstance(CommentItem, response.data) } async delete(projectId: string, commentId: number): Promise { const url = `/projects/${projectId}/comments/${commentId}` const response = await this.request.delete(url) } async deleteBulk(projectId: string, items: number[]): Promise { const url = `/projects/${projectId}/comments` await this.request.delete(url, { ids: items }) } }