mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3d09a69d58
* fix: eslint fixes --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
54 lines
1.6 KiB
TypeScript
54 lines
1.6 KiB
TypeScript
import { API_BASE_URL } from "helpers/common.helper";
|
|
import { APIService } from "services/api.service";
|
|
// helpers
|
|
// types
|
|
import { THomeDashboardResponse, TWidget, TWidgetStatsResponse, TWidgetStatsRequestParams } from "@plane/types";
|
|
|
|
export class DashboardService extends APIService {
|
|
constructor() {
|
|
super(API_BASE_URL);
|
|
}
|
|
|
|
async getHomeDashboardWidgets(workspaceSlug: string): Promise<THomeDashboardResponse> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/dashboard/`, {
|
|
params: {
|
|
dashboard_type: "home",
|
|
},
|
|
})
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getWidgetStats(
|
|
workspaceSlug: string,
|
|
dashboardId: string,
|
|
params: TWidgetStatsRequestParams
|
|
): Promise<TWidgetStatsResponse> {
|
|
return this.get(`/api/workspaces/${workspaceSlug}/dashboard/${dashboardId}/`, {
|
|
params,
|
|
})
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async getDashboardDetails(dashboardId: string): Promise<TWidgetStatsResponse> {
|
|
return this.get(`/api/dashboard/${dashboardId}/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
async updateDashboardWidget(dashboardId: string, widgetId: string, data: Partial<TWidget>): Promise<TWidget> {
|
|
return this.patch(`/api/dashboard/${dashboardId}/widgets/${widgetId}/`, data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
}
|