mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
78fee22fec
* fix: event tracker changes * fix: App provider implementation using wrappers * fix: updating packages * fix: handling warning * fix: wrapper fixes and minor optimization changes * fix: chore app-provider clearnup * fix: cleanup * fix: removing jitsu tracking * fix: minor updates * fix: adding event to posthog event tracker (#2802) * dev: posthog event tracker update intitiate * fix: adding events for posthog integration * fix: event payload --------- Co-authored-by: Ramesh Kumar Chandra <31303617+rameshkumarchandra@users.noreply.github.com>
188 lines
4.7 KiB
TypeScript
188 lines
4.7 KiB
TypeScript
// services
|
|
import { APIService } from "services/api.service";
|
|
// types
|
|
import type {
|
|
IIssue,
|
|
IUser,
|
|
IUserActivityResponse,
|
|
IInstanceAdminStatus,
|
|
IUserProfileData,
|
|
IUserProfileProjectSegregation,
|
|
IUserSettings,
|
|
IUserWorkspaceDashboard,
|
|
} from "types";
|
|
// helpers
|
|
import { API_BASE_URL } from "helpers/common.helper";
|
|
|
|
export class UserService extends APIService {
|
|
constructor() {
|
|
super(API_BASE_URL);
|
|
}
|
|
|
|
currentUserConfig() {
|
|
return {
|
|
url: `${this.baseURL}/api/users/me/`,
|
|
headers: this.getHeaders(),
|
|
};
|
|
}
|
|
|
|
async userIssues(
|
|
workspaceSlug: string,
|
|
params: any
|
|
): Promise<
|
|
| {
|
|
[key: string]: IIssue[];
|
|
}
|
|
| IIssue[]
|
|
> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/my-issues/`, {
|
|
params,
|
|
})
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async currentUser(): Promise<IUser> {
|
|
return this.get("/api/users/me/")
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
|
|
async currentUserInstanceAdminStatus(): Promise<IInstanceAdminStatus> {
|
|
return this.get("/api/users/me/instance-admin/")
|
|
.then((respone) => respone?.data)
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
|
|
async currentUserSettings(): Promise<IUserSettings> {
|
|
return this.get("/api/users/me/settings/")
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
|
|
async updateUser(data: Partial<IUser>): Promise<any> {
|
|
return this.patch("/api/users/me/", data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async updateUserOnBoard(): Promise<any> {
|
|
return this.patch("/api/users/me/onboard/", {
|
|
is_onboarded: true,
|
|
})
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async updateUserTourCompleted(): Promise<any> {
|
|
return this.patch("/api/users/me/tour-completed/", {
|
|
is_tour_completed: true,
|
|
})
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getUserWorkspaceActivity(workspaceSlug: string): Promise<IUserActivityResponse> {
|
|
return this.get(`/api/users/workspaces/${workspaceSlug}/activities/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async userWorkspaceDashboard(workspaceSlug: string, month: number): Promise<IUserWorkspaceDashboard> {
|
|
return this.get(`/api/users/me/workspaces/${workspaceSlug}/dashboard/`, {
|
|
params: {
|
|
month: month,
|
|
},
|
|
})
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async forgotPassword(data: { email: string }): Promise<any> {
|
|
return this.post(`/api/forgot-password/`, data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
|
|
async resetPassword(
|
|
uidb64: string,
|
|
token: string,
|
|
data: {
|
|
new_password: string;
|
|
confirm_password: string;
|
|
}
|
|
): Promise<any> {
|
|
return this.post(`/api/reset-password/${uidb64}/${token}/`, data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getUserProfileData(workspaceSlug: string, userId: string): Promise<IUserProfileData> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/user-stats/${userId}/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getUserProfileProjectsSegregation(
|
|
workspaceSlug: string,
|
|
userId: string
|
|
): Promise<IUserProfileProjectSegregation> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/user-profile/${userId}/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getUserProfileActivity(workspaceSlug: string, userId: string): Promise<IUserActivityResponse> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/user-activity/${userId}/?per_page=15`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getUserProfileIssues(
|
|
workspaceSlug: string,
|
|
userId: string,
|
|
params: any
|
|
): Promise<
|
|
| {
|
|
[key: string]: IIssue[];
|
|
}
|
|
| IIssue[]
|
|
> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/user-issues/${userId}/`, {
|
|
params,
|
|
})
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
}
|