mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
6f2a38ad66
* fix: sign in and invitation page fixes * fix: project and workspace services track event fix * fix: user onboarding complete track event fix * fix: issue track event fix * fix: partial property , issue comment and mark as done issue track event fix * fix: bulk delete , move to cycle or module and issue label track event fix * fix: state , cycle and module track event fix * fix: pages and block track event fix * fix: integration , estimate , importer , analytics and gpt track event fix * fix: view track event fix * fix: build fix * fix: build fix
263 lines
7.1 KiB
TypeScript
263 lines
7.1 KiB
TypeScript
// services
|
|
import APIService from "services/api.service";
|
|
import trackEventServices from "./track-event.service";
|
|
|
|
// types
|
|
import type { IIssueViewOptions, IModule, IIssue, ICurrentUserResponse } from "types";
|
|
|
|
const { NEXT_PUBLIC_API_BASE_URL } = process.env;
|
|
|
|
const trackEvent =
|
|
process.env.NEXT_PUBLIC_TRACK_EVENTS === "true" || process.env.NEXT_PUBLIC_TRACK_EVENTS === "1";
|
|
|
|
class ProjectIssuesServices extends APIService {
|
|
constructor() {
|
|
super(NEXT_PUBLIC_API_BASE_URL || "http://localhost:8000");
|
|
}
|
|
|
|
async getModules(workspaceSlug: string, projectId: string): Promise<IModule[]> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/modules/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async createModule(
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
data: any,
|
|
user: ICurrentUserResponse | undefined
|
|
): Promise<any> {
|
|
return this.post(`/api/workspaces/${workspaceSlug}/projects/${projectId}/modules/`, data)
|
|
.then((response) => {
|
|
if (trackEvent) trackEventServices.trackModuleEvent(response?.data, "MODULE_CREATE", user);
|
|
return response?.data;
|
|
})
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async updateModule(
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
moduleId: string,
|
|
data: any,
|
|
user: ICurrentUserResponse | undefined
|
|
): Promise<any> {
|
|
return this.put(
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/modules/${moduleId}/`,
|
|
data
|
|
)
|
|
.then((response) => {
|
|
if (trackEvent) trackEventServices.trackModuleEvent(response?.data, "MODULE_UPDATE", user);
|
|
return response?.data;
|
|
})
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getModuleDetails(
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
moduleId: string
|
|
): Promise<IModule> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/modules/${moduleId}/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async patchModule(
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
moduleId: string,
|
|
data: any,
|
|
user: ICurrentUserResponse | undefined
|
|
): Promise<any> {
|
|
return this.patch(
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/modules/${moduleId}/`,
|
|
data
|
|
)
|
|
.then((response) => {
|
|
if (trackEvent) trackEventServices.trackModuleEvent(response?.data, "MODULE_UPDATE", user);
|
|
return response?.data;
|
|
})
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async deleteModule(
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
moduleId: string,
|
|
user: ICurrentUserResponse | undefined
|
|
): Promise<any> {
|
|
return this.delete(
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/modules/${moduleId}/`
|
|
)
|
|
.then((response) => {
|
|
if (trackEvent) trackEventServices.trackModuleEvent(response?.data, "MODULE_DELETE", user);
|
|
return response?.data;
|
|
})
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getModuleIssues(
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
moduleId: string
|
|
): Promise<IIssue[]> {
|
|
return this.get(
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/modules/${moduleId}/module-issues/`
|
|
)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getModuleIssuesWithParams(
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
moduleId: string,
|
|
queries?: Partial<IIssueViewOptions>
|
|
): Promise<
|
|
| IIssue[]
|
|
| {
|
|
[key: string]: IIssue[];
|
|
}
|
|
> {
|
|
return this.get(
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/modules/${moduleId}/module-issues/`,
|
|
{ params: queries }
|
|
)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async addIssuesToModule(
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
moduleId: string,
|
|
data: { issues: string[] },
|
|
user: ICurrentUserResponse | undefined
|
|
): Promise<any> {
|
|
return this.post(
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/modules/${moduleId}/module-issues/`,
|
|
data
|
|
)
|
|
.then((response) => {
|
|
if (trackEvent)
|
|
trackEventServices.trackIssueMovedToCycleOrModuleEvent(
|
|
{
|
|
workspaceSlug,
|
|
workspaceName: response?.data?.[0]?.issue_detail?.workspace_detail?.name,
|
|
projectId,
|
|
projectIdentifier: response?.data?.[0]?.issue_detail?.project_detail?.identifier,
|
|
projectName: response?.data?.[0]?.issue_detail?.project_detail?.name,
|
|
issueId: response?.data?.[0]?.issue_detail?.id,
|
|
moduleId,
|
|
},
|
|
response?.data?.length > 1 ? "ISSUE_MOVED_TO_MODULE_IN_BULK" : "ISSUE_MOVED_TO_MODULE",
|
|
user
|
|
);
|
|
return response?.data;
|
|
})
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async removeIssueFromModule(
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
moduleId: string,
|
|
bridgeId: string
|
|
): Promise<any> {
|
|
return this.delete(
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/modules/${moduleId}/module-issues/${bridgeId}/`
|
|
)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async createModuleLink(
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
moduleId: string,
|
|
data: {
|
|
metadata: any;
|
|
title: string;
|
|
url: string;
|
|
}
|
|
): Promise<any> {
|
|
return this.post(
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/modules/${moduleId}/module-links/`,
|
|
data
|
|
)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
|
|
async deleteModuleLink(
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
moduleId: string,
|
|
linkId: string
|
|
): Promise<any> {
|
|
return this.delete(
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/modules/${moduleId}/module-links/${linkId}/`
|
|
)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async addModuleToFavorites(
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
data: {
|
|
module: string;
|
|
}
|
|
): Promise<any> {
|
|
return this.post(
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/user-favorite-modules/`,
|
|
data
|
|
)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async removeModuleFromFavorites(
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
moduleId: string
|
|
): Promise<any> {
|
|
return this.delete(
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/user-favorite-modules/${moduleId}/`
|
|
)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
}
|
|
|
|
export default new ProjectIssuesServices();
|