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
912 B

import ApiService from '@/services/api.service'
import { TemplateRepository } from '@/repositories/template/interface'
import { ConfigTemplateItem, ConfigResponse } from '@/models/config/config-template'
export class FromApiTemplateRepository implements TemplateRepository {
constructor(
private readonly request = ApiService
) {}
async list(projectId: string): Promise<string[]> {
const url = `/projects/${projectId}/auto-labeling-templates`
const response = await this.request.get(url)
const responseItems: string[] = response.data
return responseItems
}
async find(projectId: string, optionName: string): Promise<ConfigTemplateItem> {
const url = `/projects/${projectId}/auto-labeling-templates/${optionName}`
const response = await this.request.get(url)
const responseItem: ConfigResponse = response.data
return ConfigTemplateItem.valueOf(responseItem)
}
}