116 lines
2.6 KiB
TypeScript
116 lines
2.6 KiB
TypeScript
import Api from "./Api";
|
|
import { ContainerWidgetProps } from "widgets/ContainerWidget";
|
|
import { ApiResponse } from "./ApiResponses";
|
|
import { WidgetProps } from "widgets/BaseWidget";
|
|
import { AxiosPromise } from "axios";
|
|
import { PageAction } from "constants/ActionConstants";
|
|
|
|
export interface FetchPageRequest {
|
|
pageId: string;
|
|
}
|
|
|
|
export interface FetchPublishedPageRequest {
|
|
pageId: string;
|
|
}
|
|
|
|
export interface SavePageRequest {
|
|
dsl: ContainerWidgetProps<WidgetProps>;
|
|
layoutId: string;
|
|
pageId: string;
|
|
}
|
|
|
|
export interface PageLayout {
|
|
id: string;
|
|
dsl: Partial<ContainerWidgetProps<any>>;
|
|
layoutOnLoadActions: PageAction[];
|
|
layoutActions: PageAction[];
|
|
}
|
|
|
|
export type FetchPageResponse = ApiResponse & {
|
|
data: {
|
|
id: string;
|
|
name: string;
|
|
applicationId: string;
|
|
layouts: Array<PageLayout>;
|
|
};
|
|
};
|
|
|
|
export type FetchPublishedPageResponse = ApiResponse & {
|
|
data: {
|
|
id: string;
|
|
dsl: Partial<ContainerWidgetProps<any>>;
|
|
pageId: string;
|
|
};
|
|
};
|
|
|
|
export interface SavePageResponse extends ApiResponse {
|
|
pageId: string;
|
|
}
|
|
|
|
export interface CreatePageRequest {
|
|
applicationId: string;
|
|
name: string;
|
|
}
|
|
|
|
export interface CreatePageResponse extends ApiResponse {
|
|
data: {};
|
|
}
|
|
|
|
export interface FetchPageListResponse extends ApiResponse {
|
|
data: Array<{
|
|
id: string;
|
|
name: string;
|
|
layouts: Array<PageLayout>;
|
|
}>;
|
|
}
|
|
|
|
class PageApi extends Api {
|
|
static url = "v1/pages";
|
|
static getLayoutUpdateURL = (pageId: string, layoutId: string) => {
|
|
return `v1/layouts/${layoutId}/pages/${pageId}`;
|
|
};
|
|
|
|
static getPublishedPageURL = (pageId: string) => {
|
|
return `v1/pages/${pageId}/view`;
|
|
};
|
|
|
|
static fetchPage(
|
|
pageRequest: FetchPageRequest,
|
|
): AxiosPromise<FetchPageResponse> {
|
|
return Api.get(PageApi.url + "/" + pageRequest.pageId);
|
|
}
|
|
|
|
static savePage(
|
|
savePageRequest: SavePageRequest,
|
|
): AxiosPromise<SavePageResponse> {
|
|
const body = { dsl: savePageRequest.dsl };
|
|
return Api.put(
|
|
PageApi.getLayoutUpdateURL(
|
|
savePageRequest.pageId,
|
|
savePageRequest.layoutId,
|
|
),
|
|
body,
|
|
);
|
|
}
|
|
|
|
static fetchPublishedPage(
|
|
pageRequest: FetchPublishedPageRequest,
|
|
): AxiosPromise<FetchPublishedPageResponse> {
|
|
return Api.get(PageApi.getPublishedPageURL(pageRequest.pageId));
|
|
}
|
|
|
|
static createPage(
|
|
createPageRequest: CreatePageRequest,
|
|
): AxiosPromise<FetchPageResponse> {
|
|
return Api.post(PageApi.url, createPageRequest);
|
|
}
|
|
|
|
static fetchPageList(
|
|
applicationId: string,
|
|
): AxiosPromise<FetchPageListResponse> {
|
|
return Api.get(PageApi.url + "/application/" + applicationId);
|
|
}
|
|
}
|
|
|
|
export default PageApi;
|