forked from github/plane
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
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;
|