mirror of https://github.com/doccano/doccano.git
pythonannotation-tooldatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learning
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.4 KiB
73 lines
2.4 KiB
import { plainToInstance } from 'class-transformer'
|
|
import { ExampleDTO, ExampleListDTO } from './exampleData'
|
|
import { ExampleRepository, SearchOption } from '~/domain/models/example/exampleRepository'
|
|
import { ExampleItem } from '~/domain/models/example/example'
|
|
|
|
export class ExampleApplicationService {
|
|
constructor(
|
|
private readonly repository: ExampleRepository
|
|
) {}
|
|
|
|
public async list(projectId: string, options: SearchOption): Promise<ExampleListDTO> {
|
|
try {
|
|
const item = await this.repository.list(projectId, options)
|
|
return new ExampleListDTO(item)
|
|
} catch(e: any) {
|
|
throw new Error(e.response.data.detail)
|
|
}
|
|
}
|
|
|
|
public async fetchOne(projectId: string, page: string, q: string, isChecked: string): Promise<ExampleListDTO> {
|
|
const offset = (parseInt(page, 10) - 1).toString()
|
|
const options: SearchOption = {
|
|
limit: '1',
|
|
offset,
|
|
q,
|
|
isChecked,
|
|
}
|
|
return await this.list(projectId, options)
|
|
}
|
|
|
|
public async create(projectId: string, item: ExampleDTO): Promise<ExampleDTO> {
|
|
try {
|
|
const doc = this.toModel(item)
|
|
const response = await this.repository.create(projectId, doc)
|
|
return new ExampleDTO(response)
|
|
} catch(e: any) {
|
|
throw new Error(e.response.data.detail)
|
|
}
|
|
}
|
|
|
|
public async update(projectId: string, item: ExampleDTO): Promise<void> {
|
|
try {
|
|
const doc = this.toModel(item)
|
|
await this.repository.update(projectId, doc)
|
|
} catch(e: any) {
|
|
throw new Error(e.response.data.detail)
|
|
}
|
|
}
|
|
|
|
public bulkDelete(projectId: string, items: ExampleDTO[]): Promise<void> {
|
|
const ids = items.map(item => item.id)
|
|
return this.repository.bulkDelete(projectId, ids)
|
|
}
|
|
|
|
public async findById(projectId: string, exampleId: number): Promise<ExampleDTO> {
|
|
const response = await this.repository.findById(projectId, exampleId)
|
|
return new ExampleDTO(response)
|
|
}
|
|
|
|
public async approve(projectId: string, docId: number, approved: boolean): Promise<void> {
|
|
await this.repository.approve(projectId, docId, approved)
|
|
}
|
|
|
|
public async confirm(projectId: string, exampleId: number): Promise<void> {
|
|
await this.repository.confirm(projectId, exampleId)
|
|
}
|
|
|
|
private toModel(item: ExampleDTO): ExampleItem {
|
|
// Todo: annotationApprover, commentCount, fileUrl and isConfirmed
|
|
// is not copied correctly.
|
|
return plainToInstance(ExampleItem, item)
|
|
}
|
|
}
|