import ApiService from '@/services/api.service' import { MetricsRepository } from '@/domain/models/metrics/metricsRepository' import { Distribution, Progress, MyProgress } from '~/domain/models/metrics/metrics' export class APIMetricsRepository implements MetricsRepository { constructor( private readonly request = ApiService ) {} async fetchCategoryDistribution(projectId: string): Promise { const url = `/projects/${projectId}/metrics/category-distribution` const response = await this.request.get(url) return response.data } async fetchSpanDistribution(projectId: string): Promise { const url = `/projects/${projectId}/metrics/span-distribution` const response = await this.request.get(url) return response.data } async fetchRelationDistribution(projectId: string): Promise { const url = `/projects/${projectId}/metrics/relation-distribution` const response = await this.request.get(url) return response.data } async fetchMemberProgress(projectId: string): Promise { const url = `/projects/${projectId}/metrics/member-progress` const response = await this.request.get(url) return response.data } async fetchMyProgress(projectId: string): Promise { const url = `/projects/${projectId}/metrics/progress` const response = await this.request.get(url) return response.data } }