PromucFlow_constructor/app/client/src/utils/hooks/useBlocksToBeDraggedOnCanvas.ts

323 lines
10 KiB
TypeScript
Raw Normal View History

import { useContext, useEffect, useRef } from "react";
import {
CONTAINER_GRID_PADDING,
GridDefaults,
MAIN_CONTAINER_WIDGET_ID,
} from "constants/WidgetConstants";
import { useSelector } from "store";
import { AppState } from "reducers";
import { getSelectedWidgets } from "selectors/ui";
import { getOccupiedSpaces } from "selectors/editorSelectors";
import { getTableFilterState } from "selectors/tableFilterSelectors";
feat: property pane docking (#7361) * add tailwindcss * docked property pane * uncomment a line * make entity explorer as drawer on unpin * remove unused imports * add pin state in reducer * add menu icon in header * fix widget sidebar * fix widgets sidebar * style property pane * update property pane css * update icons in property pane * update property pane header styles * update spacing * fix few ui issues * wip: preview mode * wip:preview mode * remove unused import * comments sidebar in app and edit mode * fix order of import * use selected state for property pane * update scrollbar style * add classes to sidebar and property pane * make widgets editor fluid * make widgets editor fluid and refactor logic * resize the widgets editor if explorer is pinned * add shortcut for preview mode * fix link for tabs in edit mode * zoom in/zoom out for 0.75 * fix chart widget + table widget crashing * allow zooming of canvas * fix weird canvas draw issue + update container for handling zoom * add actions for is panning * allow panning with grab cursor * reset panning + zooming when entering preview mode * add grabbing cursor when grabbing * only prevent default when space key is pressed * dont allow zoom in preview mode * remove unused imports * fix dont allow zoom in preview mode * fix ux of panning on space hit * make fluid as the default app layout * chart spec * fix dropdown_on change spec * fix add widget table and bind spec * remove draggable property pane spec * fix container spec * fix form widget spec * fix jest test * fix the function typo * remove clicking of close button for property pane in cypress tests * remove property pane actions test * fix drag and drop test failing * add cypress selector id to back button in property pane * fix toggle js spec * fix merge conflicts from new design system * editor header * fix product updates styles + widget card * remove all unused imports * fix dynamic layout spec * fix entity explorer tab rename test failing * fix table spec * fix bind tabletextpagination spec * fix js object spec * fix entity explorer rename issue * fix cypress test * fix cypress command wrong commit * fix tab spec * fix property pane copy tests * add zoom header * zoom levels * make property pane sidebar resizable * add multi select property pane * fix widget search bug * update property pane width in state on drag end * fix viewer header * fix editor header * update editor header + remove zooming * update small style * dont allow closing of explorer when resizing * fix jest test * fix dropdown widget jest test * preview test case wip * add entity explorer pinning tests + preview mode tests * add tooltip in layout control + add padding bottom in property pane view * incorporate aakash feedbacks * fix preview mode margin issue * remove panning code * fix cypress failing test * uncomment jest test * remove redundant code * fix maincontainer test * incorporate review feedbacks * incorporate aakash feedbacks * review feedbacks * incorporate review feedbacks * incorporate qa feedbacks * fix dynamic layout spec * updated test based on latest change * dsl updated * Updated dsl * Updated dsl * resize deselects widget issue. * fix canvas height issue * fix typo * incorporate qa feedbacks * incorporate qa feedbacks * incorporate qa feedbacks * update color for setting control for widget name * fix onboarding styles conflicts * Updated tests * fix application overflow issue * updated test method Co-authored-by: root <root@DESKTOP-9GENCK0.localdomain> Co-authored-by: Pawan Kumar <pawankumar@Pawans-MacBook-Pro.local> Co-authored-by: Ashok Kumar M <35134347+marks0351@users.noreply.github.com> Co-authored-by: Apple <nandan@thinkify.io>
2021-11-23 08:01:46 +00:00
import { OccupiedSpace } from "constants/CanvasEditorConstants";
import { getDragDetails, getWidgets } from "sagas/selectors";
import {
getDropZoneOffsets,
WidgetOperationParams,
widgetOperationParams,
} from "utils/WidgetPropsUtils";
import { DropTargetContext } from "components/editorComponents/DropTargetComponent";
import { XYCord } from "utils/hooks/useCanvasDragging";
import { isEmpty } from "lodash";
import { CanvasDraggingArenaProps } from "pages/common/CanvasDraggingArena";
import { useDispatch } from "react-redux";
import { ReduxActionTypes } from "constants/ReduxActionConstants";
import { EditorContext } from "components/editorComponents/EditorContextProvider";
import { useWidgetSelection } from "./useWidgetSelection";
import AnalyticsUtil from "utils/AnalyticsUtil";
import { snapToGrid } from "utils/helpers";
export interface WidgetDraggingUpdateParams extends WidgetDraggingBlock {
updateWidgetParams: WidgetOperationParams;
}
export type WidgetDraggingBlock = {
left: number;
top: number;
width: number;
height: number;
columnWidth: number;
rowHeight: number;
widgetId: string;
isNotColliding: boolean;
detachFromLayout?: boolean;
};
export const useBlocksToBeDraggedOnCanvas = ({
noPad,
snapColumnSpace,
snapRows,
snapRowSpace,
widgetId,
}: CanvasDraggingArenaProps) => {
const dispatch = useDispatch();
const { selectWidget } = useWidgetSelection();
const containerPadding = noPad ? 0 : CONTAINER_GRID_PADDING;
// check any table filter is open or not
// if filter pane open, close before property pane open
const tableFilterPaneState = useSelector(getTableFilterState);
// dragDetails contains of info needed for a container jump:
// which parent the dragging widget belongs,
// which canvas is active(being dragged on),
// which widget is grabbed while dragging started,
// relative position of mouse pointer wrt to the last grabbed widget.
const dragDetails = useSelector(getDragDetails);
const defaultHandlePositions = {
top: 20,
left: 20,
};
const {
draggingGroupCenter: dragCenter,
dragGroupActualParent: dragParent,
newWidget,
} = dragDetails;
const isResizing = useSelector(
(state: AppState) => state.ui.widgetDragResize.isResizing,
);
const selectedWidgets = useSelector(getSelectedWidgets);
const occupiedSpaces = useSelector(getOccupiedSpaces) || {};
const isNewWidget = !!newWidget && !dragParent;
const childrenOccupiedSpaces: OccupiedSpace[] =
(dragParent && occupiedSpaces[dragParent]) || [];
const isDragging = useSelector(
(state: AppState) => state.ui.widgetDragResize.isDragging,
);
const { updateWidget } = useContext(EditorContext);
const allWidgets = useSelector(getWidgets);
const getDragCenterSpace = () => {
if (dragCenter && dragCenter.widgetId) {
// Dragging by widget
return (
childrenOccupiedSpaces.find(
(each) => each.id === dragCenter.widgetId,
) || {}
);
} else if (
dragCenter &&
Number.isInteger(dragCenter.top) &&
Number.isInteger(dragCenter.left)
) {
// Dragging by Widget selection box
return dragCenter;
} else {
return {};
}
};
const getSnappedXY = (
parentColumnWidth: number,
parentRowHeight: number,
currentOffset: XYCord,
parentOffset: XYCord,
) => {
// TODO(abhinav): There is a simpler math to use.
const [leftColumn, topRow] = snapToGrid(
parentColumnWidth,
parentRowHeight,
currentOffset.x - parentOffset.x,
currentOffset.y - parentOffset.y,
);
return {
X: leftColumn * parentColumnWidth,
Y: topRow * parentRowHeight,
};
};
const getBlocksToDraw = (): WidgetDraggingBlock[] => {
if (isNewWidget) {
return [
{
top: 0,
left: 0,
width: newWidget.columns * snapColumnSpace,
height: newWidget.rows * snapRowSpace,
columnWidth: newWidget.columns,
rowHeight: newWidget.rows,
widgetId: newWidget.widgetId,
detachFromLayout: newWidget.detachFromLayout,
isNotColliding: true,
},
];
} else {
return childrenOccupiedSpaces
.filter((each) => selectedWidgets.includes(each.id))
.map((each) => ({
top: each.top * snapRowSpace + containerPadding,
left: each.left * snapColumnSpace + containerPadding,
width: (each.right - each.left) * snapColumnSpace,
height: (each.bottom - each.top) * snapRowSpace,
columnWidth: each.right - each.left,
rowHeight: each.bottom - each.top,
widgetId: each.id,
isNotColliding: true,
}));
}
};
const blocksToDraw = getBlocksToDraw();
const dragCenterSpace: any = getDragCenterSpace();
const filteredChildOccupiedSpaces = childrenOccupiedSpaces.filter(
(each) => !selectedWidgets.includes(each.id),
);
feat: Undo/Redo (#6654) * Scaffolding for undo-redo * undo redo working Poc commit * memory performance improvements by diffing * dont run update on undo/redo" * merging widget postion update and canvas bottom row update into one dsl update. * fix tabs widget * Visible updates per undo redo action (#6838) Co-authored-by: Rahul R <rahulramesha@Rahuls-MacBook-Pro.local> * resize atomic operation * fix switch control state issue * disallow undo/redo for snipping and comment mode * disallow undo/redo for snipping and comment mode * fix color picker issue in undo/redo * add test for replayDSL * option control fix, adding logs * minor position change undo redo updates * add test cases for replayHelpers * property Upade visual change * remove unused code * global hot key jest test for undo redo * Fixing batch updates on property change.. * add tests for toggle control in property pane * unwanted utils. * add tests for text control * add tests for deletion * add tests for dropping a new widget * adding jest test for replayUtils * add move widget tests * add tests for color picker control * add analytics for undo/redo * add analytics for undo/redo * tab addition atomic * cypress tests for propertyPane, toasts and radiowidget optionControl * replayDSL end of redo stack fix * property update changes * menu option control debounce input * color picker empty undo fix * fix cypress tests * widget add/remove atomic * revert alternative approach to handle atomic operations * update replayDSL test * add some comments * addressing review comments * flash color for property pane controls * Fixing adding of tabs widget as well. * code review comments. * merging widget postion update and canvas bottom row update into one dsl update. * fix ordering of tabs property control * meta property update canvas min height. * fixing failed specs. * Fixing entity explorer update on deleting tab from entity explorer. * address review comments and minor property update changes * fixing failing tests * merge conflicts * changes to cater widget api. * fix suggested widget table issue * draggable list for undo redo * fix widget name focus * excluding canvas updates. * fixing codeEditor update on propertySection collapse * fixed failing test case Co-authored-by: Abhinav Jha <abhinav@appsmith.com> Co-authored-by: Rahul R <rahulramesha@Rahuls-MacBook-Pro.local> Co-authored-by: root <root@DESKTOP-9GENCK0.localdomain> Co-authored-by: Ashok Kumar M <35134347+marks0351@users.noreply.github.com> Co-authored-by: Pawan Kumar <pawankumar@Pawans-MacBook-Pro.local>
2021-09-21 07:55:56 +00:00
const { updateDropTargetRows } = useContext(DropTargetContext);
const onDrop = (drawingBlocks: WidgetDraggingBlock[]) => {
const cannotDrop = drawingBlocks.some((each) => {
return !each.isNotColliding;
});
if (!cannotDrop) {
const draggedBlocksToUpdate = drawingBlocks
.sort(
(each1, each2) =>
each1.top + each1.height - (each2.top + each2.height),
)
.map((each) => {
const widget = newWidget ? newWidget : allWidgets[each.widgetId];
const updateWidgetParams = widgetOperationParams(
widget,
{ x: each.left, y: each.top },
{ x: 0, y: 0 },
snapColumnSpace,
snapRowSpace,
widget.detachFromLayout ? MAIN_CONTAINER_WIDGET_ID : widgetId,
);
return {
...each,
updateWidgetParams,
};
});
dispatchDrop(draggedBlocksToUpdate);
}
};
const dispatchDrop = (
draggedBlocksToUpdate: WidgetDraggingUpdateParams[],
) => {
if (isNewWidget) {
addNewWidget(draggedBlocksToUpdate[0]);
} else {
bulkMoveWidgets(draggedBlocksToUpdate);
}
};
const bulkMoveWidgets = (
draggedBlocksToUpdate: WidgetDraggingUpdateParams[],
) => {
dispatch({
type: ReduxActionTypes.WIDGETS_MOVE,
payload: {
draggedBlocksToUpdate,
feat: Undo/Redo (#6654) * Scaffolding for undo-redo * undo redo working Poc commit * memory performance improvements by diffing * dont run update on undo/redo" * merging widget postion update and canvas bottom row update into one dsl update. * fix tabs widget * Visible updates per undo redo action (#6838) Co-authored-by: Rahul R <rahulramesha@Rahuls-MacBook-Pro.local> * resize atomic operation * fix switch control state issue * disallow undo/redo for snipping and comment mode * disallow undo/redo for snipping and comment mode * fix color picker issue in undo/redo * add test for replayDSL * option control fix, adding logs * minor position change undo redo updates * add test cases for replayHelpers * property Upade visual change * remove unused code * global hot key jest test for undo redo * Fixing batch updates on property change.. * add tests for toggle control in property pane * unwanted utils. * add tests for text control * add tests for deletion * add tests for dropping a new widget * adding jest test for replayUtils * add move widget tests * add tests for color picker control * add analytics for undo/redo * add analytics for undo/redo * tab addition atomic * cypress tests for propertyPane, toasts and radiowidget optionControl * replayDSL end of redo stack fix * property update changes * menu option control debounce input * color picker empty undo fix * fix cypress tests * widget add/remove atomic * revert alternative approach to handle atomic operations * update replayDSL test * add some comments * addressing review comments * flash color for property pane controls * Fixing adding of tabs widget as well. * code review comments. * merging widget postion update and canvas bottom row update into one dsl update. * fix ordering of tabs property control * meta property update canvas min height. * fixing failed specs. * Fixing entity explorer update on deleting tab from entity explorer. * address review comments and minor property update changes * fixing failing tests * merge conflicts * changes to cater widget api. * fix suggested widget table issue * draggable list for undo redo * fix widget name focus * excluding canvas updates. * fixing codeEditor update on propertySection collapse * fixed failing test case Co-authored-by: Abhinav Jha <abhinav@appsmith.com> Co-authored-by: Rahul R <rahulramesha@Rahuls-MacBook-Pro.local> Co-authored-by: root <root@DESKTOP-9GENCK0.localdomain> Co-authored-by: Ashok Kumar M <35134347+marks0351@users.noreply.github.com> Co-authored-by: Pawan Kumar <pawankumar@Pawans-MacBook-Pro.local>
2021-09-21 07:55:56 +00:00
canvasId: widgetId,
},
});
};
const addNewWidget = (newWidget: WidgetDraggingUpdateParams) => {
const { updateWidgetParams } = newWidget;
updateWidget &&
updateWidget(
updateWidgetParams.operation,
updateWidgetParams.widgetId,
updateWidgetParams.payload,
);
// close filter pane if any open, before property pane open
tableFilterPaneState.isVisible &&
dispatch({
type: ReduxActionTypes.HIDE_TABLE_FILTER_PANE,
payload: { widgetId: tableFilterPaneState.widgetId },
});
// Adding setTimeOut to allow property pane to open only after widget is loaded.
// Not needed for most widgets except for Modal Widget.
setTimeout(() => {
selectWidget(updateWidgetParams.payload.newWidgetId);
}, 100);
AnalyticsUtil.logEvent("WIDGET_CARD_DRAG", {
widgetType: dragDetails.newWidget.type,
widgetName: dragDetails.newWidget.widgetCardName,
didDrop: true,
});
};
const updateRows = (drawingBlocks: WidgetDraggingBlock[], rows: number) => {
if (drawingBlocks.length) {
const sortedByTopBlocks = drawingBlocks.sort(
(each1, each2) => each2.top + each2.height - (each1.top + each1.height),
);
const bottomMostBlock = sortedByTopBlocks[0];
const [, top] = getDropZoneOffsets(
snapColumnSpace,
snapRowSpace,
{
x: bottomMostBlock.left,
y: bottomMostBlock.top + bottomMostBlock.height,
} as XYCord,
{ x: 0, y: 0 },
);
if (top > rows - GridDefaults.CANVAS_EXTENSION_OFFSET) {
return updateDropTargetRows && updateDropTargetRows(widgetId, top);
}
}
};
const rowRef = useRef(snapRows);
useEffect(() => {
rowRef.current = snapRows;
}, [snapRows, isDragging]);
const isChildOfCanvas = dragParent === widgetId;
const isCurrentDraggedCanvas = dragDetails.draggedOn === widgetId;
const isNewWidgetInitialTargetCanvas =
isNewWidget && widgetId === MAIN_CONTAINER_WIDGET_ID;
const parentDiff = isDragging
? {
top:
!isChildOfCanvas && !isEmpty(dragCenterSpace)
? dragCenterSpace.top * snapRowSpace + containerPadding
: containerPadding,
left:
!isChildOfCanvas && !isEmpty(dragCenterSpace)
? dragCenterSpace.left * snapColumnSpace + containerPadding
: containerPadding,
}
: {
top: 0,
left: 0,
};
const relativeStartPoints =
isDragging && !isEmpty(dragCenterSpace)
? {
left:
((isChildOfCanvas ? dragCenterSpace.left : 0) +
dragDetails.dragOffset.left) *
snapColumnSpace +
2 * containerPadding,
top:
((isChildOfCanvas ? dragCenterSpace.top : 0) +
dragDetails.dragOffset.top) *
snapRowSpace +
2 * containerPadding,
}
: defaultHandlePositions;
const currentOccSpaces = occupiedSpaces[widgetId] || [];
const occSpaces: OccupiedSpace[] = isChildOfCanvas
? filteredChildOccupiedSpaces
: currentOccSpaces;
return {
blocksToDraw,
defaultHandlePositions,
getSnappedXY,
isChildOfCanvas,
isCurrentDraggedCanvas,
isDragging,
isNewWidget,
isNewWidgetInitialTargetCanvas,
isResizing,
occSpaces,
onDrop,
parentDiff,
relativeStartPoints,
rowRef,
updateRows,
};
};