// 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"; import { IIssueResponse } from "store/issues/types"; 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 { return this.get("/api/users/me/") .then((response) => response?.data) .catch((error) => { throw error?.response; }); } async currentUserInstanceAdminStatus(): Promise { return this.get("/api/users/me/instance-admin/") .then((respone) => respone?.data) .catch((error) => { throw error?.response; }); } async currentUserSettings(): Promise { return this.get("/api/users/me/settings/") .then((response) => response?.data) .catch((error) => { throw error?.response; }); } async updateUser(data: Partial): Promise { return this.patch("/api/users/me/", data) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async updateUserOnBoard(): Promise { return this.patch("/api/users/me/onboard/", { is_onboarded: true, }) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async updateUserTourCompleted(): Promise { return this.patch("/api/users/me/tour-completed/", { is_tour_completed: true, }) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async getUserActivity(): Promise { return this.get(`/api/users/me/activities/`) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async userWorkspaceDashboard(workspaceSlug: string, month: number): Promise { return this.get(`/api/users/me/workspaces/${workspaceSlug}/dashboard/`, { params: { month: month, }, }) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async changePassword(data: { old_password: string; new_password: string; confirm_password: string }): Promise { return this.post(`/api/users/me/change-password/`, data) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async getUserProfileData(workspaceSlug: string, userId: string): Promise { 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 { 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 { 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 { return this.get(`/api/workspaces/${workspaceSlug}/user-issues/${userId}/`, { params, }) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async deactivateAccount() { return this.delete(`/api/users/me/`) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async leaveWorkspace(workspaceSlug: string) { return this.post(`/api/workspaces/${workspaceSlug}/members/leave/`) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async joinProject(workspaceSlug: string, project_ids: string[]): Promise { return this.post(`/api/users/me/workspaces/${workspaceSlug}/projects/invitations/`, { project_ids }) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async leaveProject(workspaceSlug: string, projectId: string) { return this.post(`/api/workspaces/${workspaceSlug}/projects/${projectId}/members/leave/`) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } }