mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
daa8f7d79b
* Feat: Implemented project publish settings * dev: updated the env dependancy in turbo and enabling the publish access to admin
118 lines
3.2 KiB
TypeScript
118 lines
3.2 KiB
TypeScript
// services
|
|
import APIService from "services/api.service";
|
|
import trackEventServices from "services/track-event.service";
|
|
// types
|
|
import { ICurrentUserResponse } from "types";
|
|
import { IProjectPublishSettings } from "store/project-publish";
|
|
|
|
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 ProjectServices extends APIService {
|
|
constructor() {
|
|
super(NEXT_PUBLIC_API_BASE_URL || "http://localhost:8000");
|
|
}
|
|
|
|
async getProjectSettingsAsync(
|
|
workspace_slug: string,
|
|
project_slug: string,
|
|
user: ICurrentUserResponse | undefined
|
|
): Promise<any> {
|
|
return this.get(
|
|
`/api/workspaces/${workspace_slug}/projects/${project_slug}/project-deploy-boards/`
|
|
)
|
|
.then((response) => {
|
|
if (trackEvent) {
|
|
// trackEventServices.trackProjectPublishSettingsEvent(
|
|
// response.data,
|
|
// "GET_PROJECT_PUBLISH_SETTINGS",
|
|
// user
|
|
// );
|
|
}
|
|
return response?.data;
|
|
})
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
|
|
async createProjectSettingsAsync(
|
|
workspace_slug: string,
|
|
project_slug: string,
|
|
data: IProjectPublishSettings,
|
|
user: ICurrentUserResponse | undefined
|
|
): Promise<any> {
|
|
return this.post(
|
|
`/api/workspaces/${workspace_slug}/projects/${project_slug}/project-deploy-boards/`,
|
|
data
|
|
)
|
|
.then((response) => {
|
|
if (trackEvent) {
|
|
// trackEventServices.trackProjectPublishSettingsEvent(
|
|
// response.data,
|
|
// "CREATE_PROJECT_PUBLISH_SETTINGS",
|
|
// user
|
|
// );
|
|
}
|
|
return response?.data;
|
|
})
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
|
|
async updateProjectSettingsAsync(
|
|
workspace_slug: string,
|
|
project_slug: string,
|
|
project_publish_id: string,
|
|
data: IProjectPublishSettings,
|
|
user: ICurrentUserResponse | undefined
|
|
): Promise<any> {
|
|
return this.patch(
|
|
`/api/workspaces/${workspace_slug}/projects/${project_slug}/project-deploy-boards/${project_publish_id}/`,
|
|
data
|
|
)
|
|
.then((response) => {
|
|
if (trackEvent) {
|
|
// trackEventServices.trackProjectPublishSettingsEvent(
|
|
// response.data,
|
|
// "UPDATE_PROJECT_PUBLISH_SETTINGS",
|
|
// user
|
|
// );
|
|
}
|
|
return response?.data;
|
|
})
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
|
|
async deleteProjectSettingsAsync(
|
|
workspace_slug: string,
|
|
project_slug: string,
|
|
project_publish_id: string,
|
|
user: ICurrentUserResponse | undefined
|
|
): Promise<any> {
|
|
return this.delete(
|
|
`/api/workspaces/${workspace_slug}/projects/${project_slug}/project-deploy-boards/${project_publish_id}/`
|
|
)
|
|
.then((response) => {
|
|
if (trackEvent) {
|
|
// trackEventServices.trackProjectPublishSettingsEvent(
|
|
// response.data,
|
|
// "DELETE_PROJECT_PUBLISH_SETTINGS",
|
|
// user
|
|
// );
|
|
}
|
|
return response?.data;
|
|
})
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
}
|
|
|
|
export default ProjectServices;
|