2023-03-15 05:30:05 +00:00
|
|
|
// services
|
|
|
|
import APIService from "services/api.service";
|
|
|
|
// types
|
|
|
|
import { IView } from "types/views";
|
|
|
|
|
|
|
|
const { NEXT_PUBLIC_API_BASE_URL } = process.env;
|
|
|
|
|
|
|
|
class ViewServices extends APIService {
|
|
|
|
constructor() {
|
|
|
|
super(NEXT_PUBLIC_API_BASE_URL || "http://localhost:8000");
|
|
|
|
}
|
|
|
|
|
|
|
|
async createView(workspaceSlug: string, projectId: string, data: IView): Promise<any> {
|
|
|
|
return this.post(`/api/workspaces/${workspaceSlug}/projects/${projectId}/views/`, data)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async updateView(
|
|
|
|
workspaceSlug: string,
|
|
|
|
projectId: string,
|
|
|
|
viewId: string,
|
|
|
|
data: IView
|
|
|
|
): Promise<any> {
|
|
|
|
return this.put(`/api/workspaces/${workspaceSlug}/projects/${projectId}/views/${viewId}/`, data)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async patchView(
|
|
|
|
workspaceSlug: string,
|
|
|
|
projectId: string,
|
|
|
|
viewId: string,
|
|
|
|
data: Partial<IView>
|
|
|
|
): Promise<any> {
|
|
|
|
return this.patch(
|
|
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/views/${viewId}/`,
|
|
|
|
data
|
|
|
|
)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-03-16 08:37:19 +00:00
|
|
|
async deleteView(workspaceSlug: string, projectId: string, viewId: string): Promise<any> {
|
|
|
|
return this.delete(`/api/workspaces/${workspaceSlug}/projects/${projectId}/views/${viewId}/`)
|
2023-03-15 05:30:05 +00:00
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async getViews(workspaceSlug: string, projectId: string): Promise<IView[]> {
|
|
|
|
return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/views/`)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async getViewDetails(workspaceSlug: string, projectId: string, viewId: string): Promise<IView> {
|
|
|
|
return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/views/${viewId}/`)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async getViewIssues(workspaceSlug: string, projectId: string, viewId: string): Promise<any> {
|
|
|
|
return this.get(
|
|
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/views/${viewId}/issues/`
|
|
|
|
)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
2023-03-28 11:18:46 +00:00
|
|
|
|
|
|
|
async addViewToFavorites(
|
|
|
|
workspaceSlug: string,
|
|
|
|
projectId: string,
|
|
|
|
data: {
|
|
|
|
view: string;
|
|
|
|
}
|
|
|
|
): Promise<any> {
|
|
|
|
return this.post(
|
|
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/user-favorite-views/`,
|
|
|
|
data
|
|
|
|
)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async removeViewFromFavorites(
|
|
|
|
workspaceSlug: string,
|
|
|
|
projectId: string,
|
|
|
|
viewId: string
|
|
|
|
): Promise<any> {
|
|
|
|
return this.delete(
|
|
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/user-favorite-views/${viewId}/`
|
|
|
|
)
|
|
|
|
.then((response) => response?.data)
|
|
|
|
.catch((error) => {
|
|
|
|
throw error?.response?.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-03-15 05:30:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default new ViewServices();
|