2023-01-26 18:12:20 +00:00
|
|
|
// services
|
|
|
|
import APIService from "services/api.service";
|
2023-03-29 06:54:19 +00:00
|
|
|
import trackEventServices from "services/track-event.service";
|
2023-01-26 18:12:20 +00:00
|
|
|
|
|
|
|
const { NEXT_PUBLIC_API_BASE_URL } = process.env;
|
|
|
|
|
2023-03-29 06:54:19 +00:00
|
|
|
const trackEvent =
|
|
|
|
process.env.NEXT_PUBLIC_TRACK_EVENTS === "true" || process.env.NEXT_PUBLIC_TRACK_EVENTS === "1";
|
|
|
|
|
2023-01-26 18:12:20 +00:00
|
|
|
// types
|
2023-04-22 12:49:35 +00:00
|
|
|
import type { IState, IStateResponse } from "types";
|
2023-01-26 18:12:20 +00:00
|
|
|
|
|
|
|
class ProjectStateServices extends APIService {
|
|
|
|
constructor() {
|
|
|
|
super(NEXT_PUBLIC_API_BASE_URL || "http://localhost:8000");
|
|
|
|
}
|
|
|
|
|
|
|
|
async createState(workspaceSlug: string, projectId: string, data: any): Promise<any> {
|
|
|
|
return this.post(`/api/workspaces/${workspaceSlug}/projects/${projectId}/states/`, data)
|
2023-03-29 06:54:19 +00:00
|
|
|
.then((response) => {
|
2023-03-30 13:57:46 +00:00
|
|
|
if (trackEvent) trackEventServices.trackStateEvent(response?.data, "STATE_CREATE");
|
2023-03-29 06:54:19 +00:00
|
|
|
return response?.data;
|
|
|
|
})
|
2023-01-26 18:12:20 +00:00
|
|
|
.catch((error) => {
|
2023-04-17 19:45:39 +00:00
|
|
|
throw error?.response;
|
2023-01-26 18:12:20 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-04-22 12:49:35 +00:00
|
|
|
async getStates(workspaceSlug: string, projectId: string): Promise<IStateResponse> {
|
2023-01-26 18:12:20 +00:00
|
|
|
return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/states/`)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async getIssuesByState(workspaceSlug: string, projectId: string): Promise<any> {
|
|
|
|
return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/issues/?group_by=state`)
|
|
|
|
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async getState(workspaceSlug: string, projectId: string, stateId: string): Promise<any> {
|
|
|
|
return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/states/${stateId}/`)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async updateState(
|
|
|
|
workspaceSlug: string,
|
|
|
|
projectId: string,
|
|
|
|
stateId: string,
|
|
|
|
data: IState
|
|
|
|
): Promise<any> {
|
|
|
|
return this.put(
|
|
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/states/${stateId}/`,
|
|
|
|
data
|
|
|
|
)
|
2023-03-29 06:54:19 +00:00
|
|
|
.then((response) => {
|
2023-03-30 13:57:46 +00:00
|
|
|
if (trackEvent) trackEventServices.trackStateEvent(response?.data, "STATE_UPDATE");
|
2023-03-29 06:54:19 +00:00
|
|
|
return response?.data;
|
|
|
|
})
|
2023-01-26 18:12:20 +00:00
|
|
|
.catch((error) => {
|
2023-04-17 19:45:39 +00:00
|
|
|
throw error?.response;
|
2023-01-26 18:12:20 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async patchState(
|
|
|
|
workspaceSlug: string,
|
|
|
|
projectId: string,
|
|
|
|
stateId: string,
|
|
|
|
data: Partial<IState>
|
|
|
|
): Promise<any> {
|
|
|
|
return this.patch(
|
|
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/states/${stateId}/`,
|
|
|
|
data
|
|
|
|
)
|
2023-03-29 06:54:19 +00:00
|
|
|
.then((response) => {
|
2023-03-30 13:57:46 +00:00
|
|
|
if (trackEvent) trackEventServices.trackStateEvent(response?.data, "STATE_UPDATE");
|
2023-03-29 06:54:19 +00:00
|
|
|
return response?.data;
|
|
|
|
})
|
2023-01-26 18:12:20 +00:00
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async deleteState(workspaceSlug: string, projectId: string, stateId: string): Promise<any> {
|
|
|
|
return this.delete(`/api/workspaces/${workspaceSlug}/projects/${projectId}/states/${stateId}/`)
|
2023-03-29 06:54:19 +00:00
|
|
|
.then((response) => {
|
2023-03-30 13:57:46 +00:00
|
|
|
if (trackEvent) trackEventServices.trackStateEvent(response?.data, "STATE_DELETE");
|
2023-03-29 06:54:19 +00:00
|
|
|
return response?.data;
|
|
|
|
})
|
2023-01-26 18:12:20 +00:00
|
|
|
.catch((error) => {
|
2023-04-22 12:49:35 +00:00
|
|
|
throw error?.response;
|
2023-01-26 18:12:20 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default new ProjectStateServices();
|