forked from github/plane
3d09a69d58
* fix: eslint fixes --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
64 lines
1.8 KiB
TypeScript
64 lines
1.8 KiB
TypeScript
// services
|
|
import { API_BASE_URL } from "helpers/common.helper";
|
|
import { APIService } from "services/api.service";
|
|
// types
|
|
import {
|
|
IAnalyticsParams,
|
|
IAnalyticsResponse,
|
|
IDefaultAnalyticsResponse,
|
|
IExportAnalyticsFormData,
|
|
ISaveAnalyticsFormData,
|
|
} from "@plane/types";
|
|
// helpers
|
|
|
|
export class AnalyticsService extends APIService {
|
|
constructor() {
|
|
super(API_BASE_URL);
|
|
}
|
|
|
|
async getAnalytics(workspaceSlug: string, params: IAnalyticsParams): Promise<IAnalyticsResponse> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/analytics/`, {
|
|
params: {
|
|
...params,
|
|
project: params?.project ? params.project.toString() : null,
|
|
},
|
|
})
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getDefaultAnalytics(
|
|
workspaceSlug: string,
|
|
params?: Partial<IAnalyticsParams>
|
|
): Promise<IDefaultAnalyticsResponse> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/default-analytics/`, {
|
|
params: {
|
|
...params,
|
|
project: params?.project ? params.project.toString() : null,
|
|
},
|
|
})
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async saveAnalytics(workspaceSlug: string, data: ISaveAnalyticsFormData): Promise<any> {
|
|
return this.post(`/api/workspaces/${workspaceSlug}/analytic-view/`, data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async exportAnalytics(workspaceSlug: string, data: IExportAnalyticsFormData): Promise<any> {
|
|
return this.post(`/api/workspaces/${workspaceSlug}/export-analytics/`, data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
}
|