206 lines
4.7 KiB
TypeScript
206 lines
4.7 KiB
TypeScript
import API, { HttpMethod } from "./Api";
|
|
import { ApiResponse, GenericApiResponse, ResponseMeta } from "./ApiResponses";
|
|
import { APIRequest } from "constants/ApiConstants";
|
|
import { AxiosPromise } from "axios";
|
|
import { Datasource } from "./DatasourcesApi";
|
|
import { PaginationType } from "pages/Editor/APIEditor/Pagination";
|
|
|
|
export interface CreateActionRequest<T> extends APIRequest {
|
|
datasourceId: string;
|
|
pageId: string;
|
|
name: string;
|
|
actionConfiguration: T;
|
|
}
|
|
|
|
export interface UpdateActionRequest<T> extends CreateActionRequest<T> {
|
|
actionId: string;
|
|
}
|
|
|
|
export interface APIConfig {
|
|
datasourceId: string;
|
|
pageId: string;
|
|
name: string;
|
|
requestHeaders: Record<string, string>;
|
|
httpMethod: HttpMethod;
|
|
path: string;
|
|
body: JSON;
|
|
queryParams: Record<string, string>;
|
|
actionId: string;
|
|
}
|
|
|
|
export interface Property {
|
|
key: string;
|
|
value: string;
|
|
}
|
|
|
|
export interface BodyFormData {
|
|
editable: boolean;
|
|
mandatory: boolean;
|
|
description: string;
|
|
key: string;
|
|
value?: string;
|
|
type: string;
|
|
}
|
|
|
|
export interface APIConfigRequest {
|
|
headers: Property[];
|
|
httpMethod: string;
|
|
path: string;
|
|
body: JSON | string | Record<string, any> | null;
|
|
queryParameters: Property[];
|
|
paginationType: PaginationType;
|
|
bodyFormData: BodyFormData[];
|
|
}
|
|
|
|
export interface QueryConfig {
|
|
queryString: string;
|
|
}
|
|
|
|
export interface ActionCreateUpdateResponse extends ApiResponse {
|
|
id: string;
|
|
jsonPathKeys: Record<string, string>;
|
|
}
|
|
|
|
export interface RestAction {
|
|
id: string;
|
|
name: string;
|
|
datasource:
|
|
| Pick<Datasource, "id">
|
|
| Omit<Datasource, "id">
|
|
| Partial<Datasource>;
|
|
pluginType?: string;
|
|
pageId: string;
|
|
actionConfiguration: Partial<APIConfigRequest>;
|
|
jsonPathKeys: string[];
|
|
cacheResponse?: string;
|
|
pluginId: string;
|
|
}
|
|
|
|
export interface RapidApiAction {
|
|
id: string;
|
|
name: string;
|
|
datasource: Pick<Datasource, "id"> | Omit<Datasource, "id">;
|
|
pluginType: string;
|
|
pageId: string;
|
|
actionConfiguration: Partial<APIConfigRequest>;
|
|
jsonPathKeys: string[];
|
|
cacheResponse?: string;
|
|
templateId: string;
|
|
proverId: string;
|
|
provider: ProviderInfo;
|
|
pluginId: string;
|
|
documentation: { text: string };
|
|
}
|
|
|
|
export interface ProviderInfo {
|
|
name: string;
|
|
imageUrl: string;
|
|
url: string;
|
|
description: string;
|
|
credentialSteps: string;
|
|
}
|
|
|
|
export type PaginationField = "PREV" | "NEXT";
|
|
|
|
export interface ExecuteActionRequest extends APIRequest {
|
|
action: Pick<RestAction, "id"> | Omit<RestAction, "id">;
|
|
params?: Property[];
|
|
paginationField?: PaginationField;
|
|
}
|
|
|
|
export interface ExecuteActionResponse extends ApiResponse {
|
|
actionId: string;
|
|
data: any;
|
|
}
|
|
|
|
export interface ActionApiResponse {
|
|
responseMeta: ResponseMeta;
|
|
data: {
|
|
body: object;
|
|
headers: Record<string, string[]>;
|
|
statusCode: string;
|
|
};
|
|
clientMeta: {
|
|
duration: string;
|
|
size: string;
|
|
};
|
|
}
|
|
|
|
export interface ActionResponse {
|
|
body: object;
|
|
headers: Record<string, string[]>;
|
|
statusCode: string;
|
|
duration: string;
|
|
size: string;
|
|
}
|
|
|
|
export interface MoveActionRequest {
|
|
action: RestAction;
|
|
destinationPageId: string;
|
|
}
|
|
|
|
export interface CopyActionRequest {
|
|
action: RestAction;
|
|
pageId: string;
|
|
}
|
|
|
|
class ActionAPI extends API {
|
|
static url = "v1/actions";
|
|
|
|
static fetchAPI(id: string): AxiosPromise<GenericApiResponse<RestAction>> {
|
|
return API.get(`${ActionAPI.url}/${id}`);
|
|
}
|
|
|
|
static createAPI(
|
|
apiConfig: RestAction,
|
|
): AxiosPromise<ActionCreateUpdateResponse> {
|
|
return API.post(ActionAPI.url, apiConfig);
|
|
}
|
|
|
|
static fetchActions(
|
|
applicationId: string,
|
|
): AxiosPromise<GenericApiResponse<RestAction[]>> {
|
|
return API.get(ActionAPI.url, { applicationId });
|
|
}
|
|
|
|
static fetchActionsByPageId(
|
|
pageId: string,
|
|
): AxiosPromise<GenericApiResponse<RestAction[]>> {
|
|
return API.get(ActionAPI.url, { pageId });
|
|
}
|
|
|
|
static updateAPI(
|
|
apiConfig: Partial<RestAction>,
|
|
): AxiosPromise<ActionCreateUpdateResponse> {
|
|
return API.put(`${ActionAPI.url}/${apiConfig.id}`, apiConfig);
|
|
}
|
|
|
|
static deleteAction(id: string) {
|
|
return API.delete(`${ActionAPI.url}/${id}`);
|
|
}
|
|
|
|
static createQuery(
|
|
createQuery: CreateActionRequest<QueryConfig>,
|
|
): AxiosPromise<ActionCreateUpdateResponse> {
|
|
return API.post(ActionAPI.url, createQuery);
|
|
}
|
|
|
|
static updateQuery(
|
|
updateQuery: UpdateActionRequest<QueryConfig>,
|
|
): AxiosPromise<ActionCreateUpdateResponse> {
|
|
return API.post(ActionAPI.url, updateQuery);
|
|
}
|
|
|
|
static executeAction(
|
|
executeAction: ExecuteActionRequest,
|
|
): AxiosPromise<ActionApiResponse> {
|
|
return API.post(ActionAPI.url + "/execute", executeAction);
|
|
}
|
|
|
|
static moveAction(moveRequest: MoveActionRequest) {
|
|
return API.put(ActionAPI.url + "/move", moveRequest);
|
|
}
|
|
}
|
|
|
|
export default ActionAPI;
|