mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
// services
|
|
import { APIService } from "services/api.service";
|
|
// types
|
|
import type { TViewFilterProps, TUserView } from "@plane/types";
|
|
import { TUserViewService } from "../types";
|
|
// helpers
|
|
import { API_BASE_URL } from "helpers/common.helper";
|
|
|
|
export class ModuleFiltersService extends APIService implements TUserViewService {
|
|
constructor() {
|
|
super(API_BASE_URL);
|
|
}
|
|
|
|
async fetch(workspaceSlug: string, projectId?: string, moduleId?: string): Promise<TUserView | undefined> {
|
|
if (!projectId || !moduleId) return undefined;
|
|
return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/modules/${moduleId}user-properties/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async update(
|
|
workspaceSlug: string,
|
|
data: Partial<TViewFilterProps>,
|
|
projectId?: string,
|
|
moduleId?: string
|
|
): Promise<TUserView | undefined> {
|
|
if (!projectId || !moduleId) return undefined;
|
|
return this.patch(
|
|
`/api/workspaces/${workspaceSlug}/projects/${projectId}/modules/${moduleId}user-properties/`,
|
|
data
|
|
)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
}
|