mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
6659cfc8b0
* fix: track event fixes * fix: adding env variables to trubo
91 lines
2.6 KiB
TypeScript
91 lines
2.6 KiB
TypeScript
// services
|
|
import APIService from "services/api.service";
|
|
// types
|
|
import type { ICurrentUserResponse, IEstimate, IEstimateFormData } from "types";
|
|
import trackEventServices from "services/track-event.service";
|
|
import { API_BASE_URL } from "helpers/common.helper";
|
|
|
|
class ProjectEstimateServices extends APIService {
|
|
constructor() {
|
|
super(API_BASE_URL);
|
|
}
|
|
|
|
async createEstimate(
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
data: IEstimateFormData,
|
|
user: ICurrentUserResponse | undefined
|
|
): Promise<any> {
|
|
return this.post(`/api/workspaces/${workspaceSlug}/projects/${projectId}/estimates/`, data)
|
|
.then((response) => {
|
|
trackEventServices.trackIssueEstimateEvent(response?.data, "ESTIMATE_CREATE", user);
|
|
return response?.data;
|
|
})
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
|
|
async patchEstimate(
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
estimateId: string,
|
|
data: IEstimateFormData,
|
|
user: ICurrentUserResponse | undefined
|
|
): Promise<any> {
|
|
return this.patch(
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/estimates/${estimateId}/`,
|
|
data
|
|
)
|
|
.then((response) => {
|
|
trackEventServices.trackIssueEstimateEvent(response?.data, "ESTIMATE_UPDATE", user);
|
|
return response?.data;
|
|
})
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getEstimateDetails(
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
estimateId: string
|
|
): Promise<IEstimate> {
|
|
return this.get(
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/estimates/${estimateId}/`
|
|
)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getEstimatesList(workspaceSlug: string, projectId: string): Promise<IEstimate[]> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/estimates/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async deleteEstimate(
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
estimateId: string,
|
|
user: ICurrentUserResponse | undefined
|
|
): Promise<any> {
|
|
return this.delete(
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/estimates/${estimateId}/`
|
|
)
|
|
.then((response) => {
|
|
trackEventServices.trackIssueEstimateEvent(response?.data, "ESTIMATE_DELETE", user);
|
|
return response?.data;
|
|
})
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
}
|
|
|
|
export default new ProjectEstimateServices();
|