mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
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.
23 lines
620 B
23 lines
620 B
import ApiService from '@/services/api.service'
|
|
import { Catalog } from '~/domain/models/upload/catalog'
|
|
|
|
function toModel(item: { [key: string]: any }): Catalog {
|
|
return new Catalog(
|
|
item.name,
|
|
item.example,
|
|
item.properties,
|
|
item.task_id,
|
|
item.display_name,
|
|
item.accept_types
|
|
)
|
|
}
|
|
|
|
export class APICatalogRepository {
|
|
constructor(private readonly request = ApiService) {}
|
|
|
|
async list(projectId: string): Promise<Catalog[]> {
|
|
const url = `/projects/${projectId}/catalog`
|
|
const response = await this.request.get(url)
|
|
return response.data.map((item: any) => toModel(item))
|
|
}
|
|
}
|