mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
2cb708c63b
* feat: added user auth * fix: minor ui fixes * refactor: removed unnecessary functions * fix: build errors
175 lines
5.2 KiB
TypeScript
175 lines
5.2 KiB
TypeScript
// services
|
|
import APIService from "services/api.service";
|
|
|
|
const { NEXT_PUBLIC_API_BASE_URL } = process.env;
|
|
|
|
// types
|
|
import {
|
|
IWorkspace,
|
|
IWorkspaceMember,
|
|
IWorkspaceMemberInvitation,
|
|
ILastActiveWorkspaceDetails,
|
|
} from "types";
|
|
|
|
class WorkspaceService extends APIService {
|
|
constructor() {
|
|
super(NEXT_PUBLIC_API_BASE_URL || "http://localhost:8000");
|
|
}
|
|
|
|
async userWorkspaces(): Promise<IWorkspace[]> {
|
|
return this.get("/api/users/me/workspaces/")
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getWorkspace(workspaceSlug: string): Promise<IWorkspace> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
|
|
async createWorkspace(data: Partial<IWorkspace>): Promise<IWorkspace> {
|
|
return this.post("/api/workspaces/", data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async updateWorkspace(workspaceSlug: string, data: Partial<IWorkspace>): Promise<IWorkspace> {
|
|
return this.patch(`/api/workspaces/${workspaceSlug}/`, data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async deleteWorkspace(workspaceSlug: string): Promise<any> {
|
|
return this.delete(`/api/workspaces/${workspaceSlug}/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async inviteWorkspace(workspaceSlug: string, data: any): Promise<any> {
|
|
return this.post(`/api/workspaces/${workspaceSlug}/invite/`, data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async joinWorkspace(workspaceSlug: string, invitationId: string, data: any): Promise<any> {
|
|
return this.post(
|
|
`/api/users/me/invitations/workspaces/${workspaceSlug}/${invitationId}/join/`,
|
|
data,
|
|
{
|
|
headers: {},
|
|
}
|
|
)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async joinWorkspaces(data: any): Promise<any> {
|
|
return this.post("/api/users/me/invitations/workspaces/", data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getLastActiveWorkspaceAndProjects(): Promise<ILastActiveWorkspaceDetails> {
|
|
return this.get("/api/users/last-visited-workspace/")
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async userWorkspaceInvitations(): Promise<IWorkspaceMemberInvitation[]> {
|
|
return this.get("/api/users/me/invitations/workspaces/")
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async workspaceMembers(workspaceSlug: string): Promise<IWorkspaceMember[]> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/members/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async workspaceMemberMe(workspaceSlug: string): Promise<IWorkspaceMember> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/workspace-members/me/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async updateWorkspaceMember(
|
|
workspaceSlug: string,
|
|
memberId: string,
|
|
data: Partial<IWorkspaceMember>
|
|
): Promise<IWorkspaceMember> {
|
|
return this.put(`/api/workspaces/${workspaceSlug}/members/${memberId}/`, data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async deleteWorkspaceMember(workspaceSlug: string, memberId: string): Promise<any> {
|
|
return this.delete(`/api/workspaces/${workspaceSlug}/members/${memberId}/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async workspaceInvitations(workspaceSlug: string): Promise<IWorkspaceMemberInvitation[]> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/invitations/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getWorkspaceInvitation(invitationId: string): Promise<IWorkspaceMemberInvitation> {
|
|
return this.get(`/api/users/me/invitations/${invitationId}/`, { headers: {} })
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async deleteWorkspaceInvitations(workspaceSlug: string, invitationId: string): Promise<any> {
|
|
return this.delete(`/api/workspaces/${workspaceSlug}/invitations/${invitationId}/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async workspaceSlugCheck(slug: string): Promise<any> {
|
|
return this.get(`/api/workspace-slug-check/?slug=${slug}`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
}
|
|
|
|
export default new WorkspaceService();
|