## Description Refactor PR for action response view and action execution saga #### PR fixes following issue(s) Refactor PR for https://github.com/appsmithorg/appsmith-ee/pull/2936 #### Media > A video or a GIF is preferred. when using Loom, don’t embed because it looks like it’s a GIF. instead, just link to the video > > #### Type of change - Chore (housekeeping or task changes that don't impact user perception) ## Testing > #### How Has This Been Tested? > Please describe the tests that you ran to verify your changes. Also list any relevant details for your test configuration. > Delete anything that is not relevant - [ ] Manual - [ ] JUnit - [ ] Jest - [ ] Cypress > > #### Test Plan > Add Testsmith test cases links that relate to this PR > > #### Issues raised during DP testing > Link issues raised during DP testing for better visiblity and tracking (copy link from comments dropped on this PR) > > > ## Checklist: #### Dev activity - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] PR is being merged under a feature flag #### QA activity: - [ ] [Speedbreak features](https://github.com/appsmithorg/TestSmith/wiki/Guidelines-for-test-plans#speedbreakers-) have been covered - [ ] Test plan covers all impacted features and [areas of interest](https://github.com/appsmithorg/TestSmith/wiki/Guidelines-for-test-plans#areas-of-interest-) - [ ] Test plan has been peer reviewed by project stakeholders and other QA members - [ ] Manually tested functionality on DP - [ ] We had an implementation alignment call with stakeholders post QA Round 2 - [ ] Cypress test cases have been added and approved by SDET/manual QA - [ ] Added `Test Plan Approved` label after Cypress tests were reviewed - [ ] Added `Test Plan Approved` label after JUnit tests were reviewed --------- Co-authored-by: Rishabh-Rathod <rishabh.rathod@appsmith.com>
339 lines
9.2 KiB
TypeScript
339 lines
9.2 KiB
TypeScript
import { debounce, random } from "lodash";
|
|
import { useEffect, useMemo, useState } from "react";
|
|
import ReactDOM from "react-dom";
|
|
import { useLocation } from "react-router";
|
|
import type {
|
|
WidgetCardsGroupedByTags,
|
|
WidgetTags,
|
|
WidgetType,
|
|
} from "constants/WidgetConstants";
|
|
import { WIDGET_TAGS } from "constants/WidgetConstants";
|
|
import ResizeObserver from "resize-observer-polyfill";
|
|
import WidgetFactory from "WidgetProvider/factory";
|
|
import {
|
|
createMessage,
|
|
WIDGET_DEPRECATION_MESSAGE,
|
|
} from "@appsmith/constants/messages";
|
|
import type { URLBuilderParams } from "@appsmith/entities/URLRedirect/URLAssembly";
|
|
import { useSelector } from "react-redux";
|
|
import { getCurrentPageId } from "selectors/editorSelectors";
|
|
import type { WidgetCardProps } from "widgets/BaseWidget";
|
|
import type { ActionResponse } from "api/ActionAPI";
|
|
|
|
export const draggableElement = (
|
|
id: string,
|
|
element: any,
|
|
onPositionChange: any,
|
|
parentElement?: Element | null,
|
|
initPostion?: any,
|
|
renderDragBlockPositions?: {
|
|
left?: string;
|
|
top?: string;
|
|
zIndex?: string;
|
|
position?: string;
|
|
},
|
|
dragHandle?: () => JSX.Element,
|
|
cypressSelectorDragHandle?: string,
|
|
) => {
|
|
let newXPos = 0,
|
|
newYPos = 0,
|
|
oldXPos = 0,
|
|
oldYPos = 0;
|
|
let dragHandler = element;
|
|
let isDragged = !!initPostion;
|
|
|
|
const setElementPosition = () => {
|
|
element.style.top = initPostion.top + "px";
|
|
element.style.left = initPostion.left + "px";
|
|
};
|
|
|
|
const dragMouseDown = (e: MouseEvent) => {
|
|
e = e || window.event;
|
|
oldXPos = e.clientX;
|
|
oldYPos = e.clientY;
|
|
document.onmouseup = closeDragElement;
|
|
document.onmousemove = elementDrag;
|
|
};
|
|
|
|
const calculateBoundaryConfinedPosition = (
|
|
calculatedLeft: number,
|
|
calculatedTop: number,
|
|
) => {
|
|
const bottomBarOffset = 34;
|
|
|
|
/*
|
|
Default to 70 for a save offset that can also
|
|
handle the pagination Bar.
|
|
*/
|
|
const canvasTopOffset = parentElement?.getBoundingClientRect().top || 70;
|
|
|
|
if (calculatedLeft <= 0) {
|
|
calculatedLeft = 0;
|
|
}
|
|
|
|
if (calculatedTop <= canvasTopOffset) {
|
|
calculatedTop = canvasTopOffset;
|
|
}
|
|
|
|
if (calculatedLeft >= window.innerWidth - element.clientWidth) {
|
|
calculatedLeft = window.innerWidth - element.clientWidth;
|
|
}
|
|
|
|
if (
|
|
calculatedTop >=
|
|
window.innerHeight - (element.clientHeight + bottomBarOffset)
|
|
) {
|
|
calculatedTop =
|
|
window.innerHeight - element.clientHeight - bottomBarOffset;
|
|
}
|
|
|
|
return {
|
|
left: calculatedLeft,
|
|
top: calculatedTop,
|
|
};
|
|
};
|
|
|
|
const elementDrag = (e: MouseEvent) => {
|
|
e = e || window.event;
|
|
e.preventDefault();
|
|
newXPos = oldXPos - e.clientX;
|
|
newYPos = oldYPos - e.clientY;
|
|
oldXPos = e.clientX;
|
|
oldYPos = e.clientY;
|
|
const calculatedTop = element.offsetTop - newYPos;
|
|
const calculatedLeft = element.offsetLeft - newXPos;
|
|
element.style.top = calculatedTop + "px";
|
|
element.style.left = calculatedLeft + "px";
|
|
const validFirstDrag = !isDragged && newXPos !== 0 && newYPos !== 0;
|
|
if (validFirstDrag) {
|
|
resizeObserver.observe(element);
|
|
isDragged = true;
|
|
}
|
|
};
|
|
|
|
const calculateNewPosition = () => {
|
|
const { height, left, top, width } = element.getBoundingClientRect();
|
|
const isElementOpen = height && width;
|
|
const { left: calculatedLeft, top: calculatedTop } =
|
|
calculateBoundaryConfinedPosition(left, top);
|
|
|
|
return {
|
|
updatePosition: isDragged && isElementOpen,
|
|
left: calculatedLeft,
|
|
top: calculatedTop,
|
|
};
|
|
};
|
|
|
|
const updateElementPosition = () => {
|
|
const calculatedPositionData = calculateNewPosition();
|
|
if (calculatedPositionData.updatePosition) {
|
|
const { left, top } = calculatedPositionData;
|
|
onPositionChange({
|
|
left: left,
|
|
top: top,
|
|
});
|
|
element.style.top = top + "px";
|
|
element.style.left = left + "px";
|
|
}
|
|
};
|
|
|
|
const closeDragElement = () => {
|
|
updateElementPosition();
|
|
document.onmouseup = null;
|
|
document.onmousemove = null;
|
|
};
|
|
const debouncedUpdatePosition = debounce(updateElementPosition, 50);
|
|
|
|
const resizeObserver = new ResizeObserver(function () {
|
|
debouncedUpdatePosition();
|
|
});
|
|
|
|
if (isDragged) {
|
|
resizeObserver.observe(element);
|
|
}
|
|
|
|
const OnInit = () => {
|
|
if (dragHandle) {
|
|
dragHandler = createDragHandler(
|
|
id,
|
|
element,
|
|
dragHandle,
|
|
renderDragBlockPositions,
|
|
cypressSelectorDragHandle,
|
|
);
|
|
}
|
|
if (initPostion) {
|
|
setElementPosition();
|
|
}
|
|
dragHandler.addEventListener("mousedown", dragMouseDown);
|
|
// stop clicks from propogating to widget editor.
|
|
dragHandler.addEventListener("click", (e: any) => e.stopPropagation());
|
|
};
|
|
|
|
OnInit();
|
|
};
|
|
|
|
const createDragHandler = (
|
|
id: string,
|
|
el: any,
|
|
dragHandle: () => JSX.Element,
|
|
renderDragBlockPositions?: {
|
|
left?: string;
|
|
top?: string;
|
|
zIndex?: string;
|
|
position?: string;
|
|
},
|
|
cypressSelectorDragHandle?: string,
|
|
) => {
|
|
const oldDragHandler = document.getElementById(`${id}-draghandler`);
|
|
const dragElement = document.createElement("div");
|
|
dragElement.setAttribute("id", `${id}-draghandler`);
|
|
dragElement.style.position = renderDragBlockPositions?.position ?? "absolute";
|
|
dragElement.style.left = renderDragBlockPositions?.left ?? "135px";
|
|
dragElement.style.top = renderDragBlockPositions?.top ?? "0px";
|
|
dragElement.style.zIndex = renderDragBlockPositions?.zIndex ?? "3";
|
|
|
|
if (cypressSelectorDragHandle) {
|
|
dragElement.setAttribute("data-testid", cypressSelectorDragHandle);
|
|
}
|
|
|
|
oldDragHandler
|
|
? el.replaceChild(dragElement, oldDragHandler)
|
|
: el.appendChild(dragElement);
|
|
ReactDOM.render(dragHandle(), dragElement);
|
|
return dragElement;
|
|
};
|
|
|
|
// Function to access nested property in an object
|
|
export const getNestedValue = (obj: Record<string, any>, path = "") => {
|
|
return path.split(".").reduce((prev, cur) => {
|
|
return prev && prev[cur];
|
|
}, obj);
|
|
};
|
|
|
|
export const useQuery = () => {
|
|
const { search } = useLocation();
|
|
return useMemo(() => new URLSearchParams(search), [search]);
|
|
};
|
|
|
|
/**
|
|
* Method that returns if the WidgetType is deprecated along with,
|
|
* deprecated widget's display name (currentWidgetName) and
|
|
* the name of the widget that is being replaced with (widgetReplacedWith)
|
|
*
|
|
* @param WidgetType
|
|
* @returns
|
|
*/
|
|
export function isWidgetDeprecated(WidgetType: WidgetType) {
|
|
const currentWidgetConfig = WidgetFactory.widgetConfigMap.get(WidgetType);
|
|
const isDeprecated = !!currentWidgetConfig?.isDeprecated;
|
|
let widgetReplacedWith;
|
|
if (isDeprecated && currentWidgetConfig?.replacement) {
|
|
widgetReplacedWith = WidgetFactory.widgetConfigMap.get(
|
|
currentWidgetConfig.replacement,
|
|
)?.displayName;
|
|
}
|
|
|
|
return {
|
|
isDeprecated,
|
|
currentWidgetName: currentWidgetConfig?.displayName,
|
|
widgetReplacedWith,
|
|
};
|
|
}
|
|
|
|
export function buildDeprecationWidgetMessage(replacingWidgetName: string) {
|
|
const deprecationMessage = createMessage(
|
|
WIDGET_DEPRECATION_MESSAGE,
|
|
replacingWidgetName,
|
|
);
|
|
|
|
return `${deprecationMessage}`;
|
|
}
|
|
|
|
/**
|
|
* Use this hook if you are try to set href in components that could possibly mount before the application is initialized.
|
|
* Eg. Deploy button in header.
|
|
* @param urlBuilderFn
|
|
* @param params
|
|
* @returns URL
|
|
*/
|
|
export function useHref<T extends URLBuilderParams>(
|
|
urlBuilderFn: (params: T) => string,
|
|
params: T,
|
|
) {
|
|
const [href, setHref] = useState("");
|
|
// Current pageId selector serves as delay to generate urls
|
|
const pageId = useSelector(getCurrentPageId);
|
|
useEffect(() => {
|
|
if (pageId) setHref(urlBuilderFn(params));
|
|
}, [params, urlBuilderFn, pageId]);
|
|
|
|
return href;
|
|
}
|
|
|
|
// Ended up not using it, but leaving it here, incase anyone needs a helper function to generate random numbers.
|
|
export const generateRandomNumbers = (
|
|
lowerBound = 1000,
|
|
upperBound = 9000,
|
|
allowFloating = false,
|
|
) => {
|
|
return random(lowerBound, upperBound, allowFloating);
|
|
};
|
|
|
|
export const groupWidgetCardsByTags = (widgetCards: WidgetCardProps[]) => {
|
|
const tagsOrder = Object.values(WIDGET_TAGS);
|
|
const groupedCards: WidgetCardsGroupedByTags = {} as WidgetCardsGroupedByTags;
|
|
|
|
tagsOrder.forEach((tag: WidgetTags) => {
|
|
groupedCards[tag] = [];
|
|
});
|
|
|
|
widgetCards.forEach((item) => {
|
|
if (item.tags) {
|
|
item.tags.forEach((tag) => {
|
|
if (groupedCards[tag]) {
|
|
groupedCards[tag].push(item);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
return groupedCards;
|
|
};
|
|
|
|
export const transformTextToSentenceCase = (s: string) => {
|
|
return s.slice(0, 1).toUpperCase() + s.slice(1).toLowerCase();
|
|
};
|
|
|
|
export const actionResponseDisplayDataFormats = (
|
|
actionData?: ActionResponse,
|
|
defaultDisplayFormat: { title: string; value: string } = {
|
|
title: "",
|
|
value: "",
|
|
},
|
|
) => {
|
|
let responseDisplayFormat: { title: string; value: string };
|
|
let responseDataTypes: { key: string; title: string }[];
|
|
|
|
if (actionData && actionData.responseDisplayFormat) {
|
|
responseDataTypes = actionData.dataTypes.map((data) => {
|
|
return {
|
|
key: data.dataType,
|
|
title: data.dataType,
|
|
};
|
|
});
|
|
responseDisplayFormat = {
|
|
title: actionData.responseDisplayFormat,
|
|
value: actionData.responseDisplayFormat,
|
|
};
|
|
} else {
|
|
responseDataTypes = [];
|
|
responseDisplayFormat = defaultDisplayFormat;
|
|
}
|
|
|
|
return {
|
|
responseDataTypes,
|
|
responseDisplayFormat,
|
|
};
|
|
};
|