import { API_BASE_URL } from "helpers/common.helper"; // services import { APIService } from "services/api.service"; // types import type { GithubRepositoriesResponse, IProject, ISearchIssueResponse, ProjectPreferences, IProjectViewProps, TProjectIssuesSearchParams, } from "types"; export class ProjectService extends APIService { constructor() { super(API_BASE_URL); } async createProject(workspaceSlug: string, data: Partial): Promise { return this.post(`/api/workspaces/${workspaceSlug}/projects/`, data) .then((response) => response?.data) .catch((error) => { throw error?.response; }); } async checkProjectIdentifierAvailability(workspaceSlug: string, data: string): Promise { return this.get(`/api/workspaces/${workspaceSlug}/project-identifiers`, { params: { name: data, }, }) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async getProjects(workspaceSlug: string): Promise { return this.get(`/api/workspaces/${workspaceSlug}/projects/`) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async getProject(workspaceSlug: string, projectId: string): Promise { return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/`) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async updateProject(workspaceSlug: string, projectId: string, data: Partial): Promise { return this.patch(`/api/workspaces/${workspaceSlug}/projects/${projectId}/`, data) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async deleteProject(workspaceSlug: string, projectId: string): Promise { return this.delete(`/api/workspaces/${workspaceSlug}/projects/${projectId}/`) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async setProjectView( workspaceSlug: string, projectId: string, data: { view_props?: IProjectViewProps; default_props?: IProjectViewProps; preferences?: ProjectPreferences; sort_order?: number; } ): Promise { await this.post(`/api/workspaces/${workspaceSlug}/projects/${projectId}/project-views/`, data) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async getGithubRepositories(url: string): Promise { return this.request(url) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async syncGithubRepository( workspaceSlug: string, projectId: string, workspaceIntegrationId: string, data: { name: string; owner: string; repository_id: string; url: string; } ): Promise { return this.post( `/api/workspaces/${workspaceSlug}/projects/${projectId}/workspace-integrations/${workspaceIntegrationId}/github-repository-sync/`, data ) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async getProjectGithubRepository(workspaceSlug: string, projectId: string, integrationId: string): Promise { return this.get( `/api/workspaces/${workspaceSlug}/projects/${projectId}/workspace-integrations/${integrationId}/github-repository-sync/` ) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async getUserProjectFavorites(workspaceSlug: string): Promise { return this.get(`/api/workspaces/${workspaceSlug}/user-favorite-projects/`) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async addProjectToFavorites(workspaceSlug: string, project: string): Promise { return this.post(`/api/workspaces/${workspaceSlug}/user-favorite-projects/`, { project }) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async removeProjectFromFavorites(workspaceSlug: string, projectId: string): Promise { return this.delete(`/api/workspaces/${workspaceSlug}/user-favorite-projects/${projectId}/`) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async projectIssuesSearch( workspaceSlug: string, projectId: string, params: TProjectIssuesSearchParams ): Promise { return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/search-issues/`, { params, }) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } }