2023-01-28 02:17:06 +00:00
|
|
|
import React, { memo, useContext, useMemo } from "react";
|
2020-02-18 19:56:58 +00:00
|
|
|
import {
|
|
|
|
|
WidgetOperations,
|
|
|
|
|
WidgetProps,
|
2023-01-28 02:17:06 +00:00
|
|
|
WidgetRowCols,
|
2020-02-18 19:56:58 +00:00
|
|
|
} from "widgets/BaseWidget";
|
2019-11-13 07:00:25 +00:00
|
|
|
import { EditorContext } from "components/editorComponents/EditorContextProvider";
|
|
|
|
|
import {
|
2020-02-18 19:56:58 +00:00
|
|
|
computeFinalRowCols,
|
|
|
|
|
computeRowCols,
|
2023-01-28 02:17:06 +00:00
|
|
|
UIElementSize,
|
2019-11-13 07:00:25 +00:00
|
|
|
} from "./ResizableUtils";
|
2020-01-20 09:00:37 +00:00
|
|
|
import {
|
|
|
|
|
useShowPropertyPane,
|
2021-07-20 05:18:58 +00:00
|
|
|
useShowTableFilterPane,
|
2020-01-20 09:00:37 +00:00
|
|
|
useWidgetDragResize,
|
|
|
|
|
} from "utils/hooks/dragResizeHooks";
|
2020-01-21 07:14:47 +00:00
|
|
|
import { useSelector } from "react-redux";
|
2022-08-24 12:16:32 +00:00
|
|
|
import { AppState } from "@appsmith/reducers";
|
2022-01-13 13:21:57 +00:00
|
|
|
import Resizable from "resizable/resizenreflow";
|
2023-01-28 02:17:06 +00:00
|
|
|
import { get, omit } from "lodash";
|
2022-01-13 13:21:57 +00:00
|
|
|
import { getSnapColumns } from "utils/WidgetPropsUtils";
|
2020-02-19 10:00:03 +00:00
|
|
|
import {
|
2023-01-28 02:17:06 +00:00
|
|
|
BottomHandleStyles,
|
|
|
|
|
BottomLeftHandleStyles,
|
|
|
|
|
BottomRightHandleStyles,
|
2020-02-19 10:00:03 +00:00
|
|
|
LeftHandleStyles,
|
|
|
|
|
RightHandleStyles,
|
|
|
|
|
TopHandleStyles,
|
|
|
|
|
TopLeftHandleStyles,
|
|
|
|
|
TopRightHandleStyles,
|
2023-01-28 02:17:06 +00:00
|
|
|
VisibilityContainer,
|
2020-02-19 10:00:03 +00:00
|
|
|
} from "./ResizeStyledComponents";
|
2020-03-03 07:02:53 +00:00
|
|
|
import AnalyticsUtil from "utils/AnalyticsUtil";
|
2022-11-27 17:12:00 +00:00
|
|
|
import {
|
|
|
|
|
previewModeSelector,
|
2023-01-28 02:17:06 +00:00
|
|
|
snipingModeSelector,
|
2022-11-27 17:12:00 +00:00
|
|
|
} from "selectors/editorSelectors";
|
2021-06-17 13:26:54 +00:00
|
|
|
import { useWidgetSelection } from "utils/hooks/useWidgetSelection";
|
2021-08-09 05:35:01 +00:00
|
|
|
import { focusWidget } from "actions/widgetActions";
|
2022-01-13 13:21:57 +00:00
|
|
|
import { GridDefaults } from "constants/WidgetConstants";
|
|
|
|
|
import { DropTargetContext } from "./DropTargetComponent";
|
2023-01-06 16:57:40 +00:00
|
|
|
import { XYCord } from "pages/common/CanvasArenas/hooks/useRenderBlocksOnCanvas";
|
2022-11-23 09:48:23 +00:00
|
|
|
import { isAutoHeightEnabledForWidget } from "widgets/WidgetUtils";
|
2022-09-14 06:55:08 +00:00
|
|
|
import {
|
2023-01-28 02:17:06 +00:00
|
|
|
getParentToOpenSelector,
|
2022-09-14 06:55:08 +00:00
|
|
|
isCurrentWidgetFocused,
|
|
|
|
|
isCurrentWidgetLastSelected,
|
|
|
|
|
isMultiSelectedWidget,
|
2023-01-28 02:17:06 +00:00
|
|
|
isWidgetSelected,
|
2022-09-14 06:55:08 +00:00
|
|
|
} from "selectors/widgetSelectors";
|
2023-01-28 02:17:06 +00:00
|
|
|
import { SelectionRequestType } from "sagas/WidgetSelectUtils";
|
2020-02-18 19:56:58 +00:00
|
|
|
|
2020-10-12 13:06:05 +00:00
|
|
|
export type ResizableComponentProps = WidgetProps & {
|
2020-02-18 19:56:58 +00:00
|
|
|
paddingOffset: number;
|
|
|
|
|
};
|
|
|
|
|
|
2021-05-11 06:33:07 +00:00
|
|
|
export const ResizableComponent = memo(function ResizableComponent(
|
|
|
|
|
props: ResizableComponentProps,
|
|
|
|
|
) {
|
2019-11-13 07:00:25 +00:00
|
|
|
// Fetch information from the context
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
const { updateWidget } = useContext(EditorContext);
|
|
|
|
|
|
2021-07-26 16:44:10 +00:00
|
|
|
const isSnipingMode = useSelector(snipingModeSelector);
|
2022-11-27 17:12:00 +00:00
|
|
|
const isPreviewMode = useSelector(previewModeSelector);
|
2021-06-09 10:35:10 +00:00
|
|
|
|
2020-01-20 09:00:37 +00:00
|
|
|
const showPropertyPane = useShowPropertyPane();
|
2021-07-20 05:18:58 +00:00
|
|
|
const showTableFilterPane = useShowTableFilterPane();
|
2020-01-20 09:00:37 +00:00
|
|
|
const { selectWidget } = useWidgetSelection();
|
|
|
|
|
const { setIsResizing } = useWidgetDragResize();
|
2022-09-14 06:55:08 +00:00
|
|
|
// Check if current widget is in the list of selected widgets
|
|
|
|
|
const isSelected = useSelector(isWidgetSelected(props.widgetId));
|
|
|
|
|
// Check if current widget is the last selected widget
|
|
|
|
|
const isLastSelected = useSelector(
|
|
|
|
|
isCurrentWidgetLastSelected(props.widgetId),
|
2020-01-20 09:00:37 +00:00
|
|
|
);
|
2022-09-14 06:55:08 +00:00
|
|
|
const isFocused = useSelector(isCurrentWidgetFocused(props.widgetId));
|
|
|
|
|
// Check if current widget is one of multiple selected widgets
|
|
|
|
|
const isMultiSelected = useSelector(isMultiSelectedWidget(props.widgetId));
|
2020-01-20 09:00:37 +00:00
|
|
|
|
|
|
|
|
const isDragging = useSelector(
|
|
|
|
|
(state: AppState) => state.ui.widgetDragResize.isDragging,
|
|
|
|
|
);
|
2020-02-18 19:56:58 +00:00
|
|
|
const isResizing = useSelector(
|
|
|
|
|
(state: AppState) => state.ui.widgetDragResize.isResizing,
|
|
|
|
|
);
|
2022-08-19 10:10:36 +00:00
|
|
|
const parentWidgetToSelect = useSelector(
|
|
|
|
|
getParentToOpenSelector(props.widgetId),
|
2021-08-09 05:35:01 +00:00
|
|
|
);
|
2022-09-14 06:55:08 +00:00
|
|
|
const isParentWidgetSelected = useSelector(
|
|
|
|
|
isCurrentWidgetLastSelected(parentWidgetToSelect?.widgetId || ""),
|
|
|
|
|
);
|
|
|
|
|
const isWidgetFocused = isFocused || isLastSelected || isSelected;
|
2019-10-08 06:19:10 +00:00
|
|
|
|
2019-11-13 07:00:25 +00:00
|
|
|
// Calculate the dimensions of the widget,
|
|
|
|
|
// The ResizableContainer's size prop is controlled
|
|
|
|
|
const dimensions: UIElementSize = {
|
2020-03-06 09:33:20 +00:00
|
|
|
width:
|
|
|
|
|
(props.rightColumn - props.leftColumn) * props.parentColumnSpace -
|
|
|
|
|
2 * props.paddingOffset,
|
|
|
|
|
height:
|
|
|
|
|
(props.bottomRow - props.topRow) * props.parentRowSpace -
|
|
|
|
|
2 * props.paddingOffset,
|
2019-11-13 07:00:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// onResize handler
|
2022-01-13 13:21:57 +00:00
|
|
|
const getResizedPositions = (
|
|
|
|
|
newDimensions: UIElementSize,
|
|
|
|
|
position: XYCord,
|
|
|
|
|
) => {
|
2020-02-18 19:56:58 +00:00
|
|
|
const delta: UIElementSize = {
|
|
|
|
|
height: newDimensions.height - dimensions.height,
|
|
|
|
|
width: newDimensions.width - dimensions.width,
|
|
|
|
|
};
|
2022-01-13 13:21:57 +00:00
|
|
|
const newRowCols: WidgetRowCols = computeRowCols(delta, position, props);
|
2022-11-23 09:48:23 +00:00
|
|
|
let canResizeVertically = true;
|
|
|
|
|
let canResizeHorizontally = true;
|
2020-02-18 19:56:58 +00:00
|
|
|
|
2022-01-13 13:21:57 +00:00
|
|
|
// this is required for list widget so that template have no collision
|
|
|
|
|
if (props.ignoreCollision)
|
|
|
|
|
return {
|
|
|
|
|
canResizeHorizontally,
|
|
|
|
|
canResizeVertically,
|
|
|
|
|
};
|
2020-03-27 09:02:11 +00:00
|
|
|
|
2020-02-19 10:00:03 +00:00
|
|
|
if (
|
2022-01-13 13:21:57 +00:00
|
|
|
newRowCols &&
|
|
|
|
|
(newRowCols.rightColumn > getSnapColumns() ||
|
|
|
|
|
newRowCols.leftColumn < 0 ||
|
|
|
|
|
newRowCols.rightColumn - newRowCols.leftColumn < 2)
|
2020-02-19 10:00:03 +00:00
|
|
|
) {
|
2022-01-13 13:21:57 +00:00
|
|
|
canResizeHorizontally = false;
|
2020-02-19 10:00:03 +00:00
|
|
|
}
|
|
|
|
|
|
2020-02-18 19:56:58 +00:00
|
|
|
if (
|
2022-01-13 13:21:57 +00:00
|
|
|
newRowCols &&
|
|
|
|
|
(newRowCols.topRow < 0 || newRowCols.bottomRow - newRowCols.topRow < 4)
|
2020-02-18 19:56:58 +00:00
|
|
|
) {
|
2022-01-13 13:21:57 +00:00
|
|
|
canResizeVertically = false;
|
2020-02-18 19:56:58 +00:00
|
|
|
}
|
2022-01-13 13:21:57 +00:00
|
|
|
const resizedPositions = {
|
|
|
|
|
id: props.widgetId,
|
|
|
|
|
left: newRowCols.leftColumn,
|
|
|
|
|
top: newRowCols.topRow,
|
|
|
|
|
bottom: newRowCols.bottomRow,
|
|
|
|
|
right: newRowCols.rightColumn,
|
|
|
|
|
};
|
2021-08-09 05:35:01 +00:00
|
|
|
|
2022-11-23 09:48:23 +00:00
|
|
|
if (isAutoHeightEnabledForWidget(props)) {
|
|
|
|
|
canResizeVertically = false;
|
|
|
|
|
resizedPositions.top = props.topRow;
|
|
|
|
|
resizedPositions.bottom = props.bottomRow;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-18 19:56:58 +00:00
|
|
|
// Check if new row cols are occupied by sibling widgets
|
2022-01-13 13:21:57 +00:00
|
|
|
return {
|
|
|
|
|
canResizeHorizontally,
|
|
|
|
|
canResizeVertically,
|
|
|
|
|
resizedPositions,
|
|
|
|
|
};
|
2019-10-08 06:19:10 +00:00
|
|
|
};
|
2019-11-13 07:00:25 +00:00
|
|
|
|
|
|
|
|
// onResizeStop handler
|
|
|
|
|
// when done resizing, check if;
|
|
|
|
|
// 1) There is no collision
|
|
|
|
|
// 2) There is a change in widget size
|
|
|
|
|
// Update widget, if both of the above are true.
|
2021-08-24 11:38:20 +00:00
|
|
|
const updateSize = (newDimensions: UIElementSize, position: XYCord) => {
|
2019-11-13 07:00:25 +00:00
|
|
|
// Get the difference in size of the widget, before and after resizing.
|
|
|
|
|
const delta: UIElementSize = {
|
2020-02-18 19:56:58 +00:00
|
|
|
height: newDimensions.height - dimensions.height,
|
|
|
|
|
width: newDimensions.width - dimensions.width,
|
2019-11-13 07:00:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Get the updated Widget rows and columns props
|
|
|
|
|
// False, if there is collision
|
|
|
|
|
// False, if none of the rows and cols have changed.
|
2020-02-18 19:56:58 +00:00
|
|
|
const newRowCols: WidgetRowCols | false = computeFinalRowCols(
|
2019-11-13 07:00:25 +00:00
|
|
|
delta,
|
|
|
|
|
position,
|
|
|
|
|
props,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (newRowCols) {
|
|
|
|
|
updateWidget &&
|
2021-09-21 07:55:56 +00:00
|
|
|
updateWidget(WidgetOperations.RESIZE, props.widgetId, {
|
|
|
|
|
...newRowCols,
|
|
|
|
|
parentId: props.parentId,
|
2022-01-13 13:21:57 +00:00
|
|
|
snapColumnSpace: props.parentColumnSpace,
|
|
|
|
|
snapRowSpace: props.parentRowSpace,
|
2021-09-21 07:55:56 +00:00
|
|
|
});
|
2019-11-13 07:00:25 +00:00
|
|
|
}
|
|
|
|
|
// Tell the Canvas that we've stopped resizing
|
2020-03-04 08:10:40 +00:00
|
|
|
// Put it later in the stack so that other updates like click, are not propagated to the parent container
|
2020-01-07 12:28:58 +00:00
|
|
|
setTimeout(() => {
|
|
|
|
|
setIsResizing && setIsResizing(false);
|
2020-01-17 12:34:58 +00:00
|
|
|
}, 0);
|
2019-11-13 07:00:25 +00:00
|
|
|
// Tell the Canvas to put the focus back to this widget
|
|
|
|
|
// By setting the focus, we enable the control buttons on the widget
|
2020-03-04 08:10:40 +00:00
|
|
|
selectWidget &&
|
2022-09-14 06:55:08 +00:00
|
|
|
!isLastSelected &&
|
2021-08-09 05:35:01 +00:00
|
|
|
parentWidgetToSelect?.widgetId !== props.widgetId &&
|
2023-01-28 02:17:06 +00:00
|
|
|
selectWidget(SelectionRequestType.One, [props.widgetId]);
|
2021-08-09 05:35:01 +00:00
|
|
|
|
|
|
|
|
if (parentWidgetToSelect) {
|
|
|
|
|
selectWidget &&
|
2022-09-14 06:55:08 +00:00
|
|
|
!isParentWidgetSelected &&
|
2023-01-28 02:17:06 +00:00
|
|
|
selectWidget(SelectionRequestType.One, [parentWidgetToSelect.widgetId]);
|
2021-08-09 05:35:01 +00:00
|
|
|
focusWidget(parentWidgetToSelect.widgetId);
|
|
|
|
|
} else {
|
2023-01-28 02:17:06 +00:00
|
|
|
selectWidget &&
|
|
|
|
|
!isLastSelected &&
|
|
|
|
|
selectWidget(SelectionRequestType.One, [props.widgetId]);
|
2021-08-09 05:35:01 +00:00
|
|
|
}
|
2021-08-23 14:12:17 +00:00
|
|
|
// Property pane closes after a resize/drag
|
|
|
|
|
showPropertyPane && showPropertyPane();
|
2020-03-03 07:02:53 +00:00
|
|
|
AnalyticsUtil.logEvent("WIDGET_RESIZE_END", {
|
|
|
|
|
widgetName: props.widgetName,
|
|
|
|
|
widgetType: props.type,
|
|
|
|
|
startHeight: dimensions.height,
|
|
|
|
|
startWidth: dimensions.width,
|
|
|
|
|
endHeight: newDimensions.height,
|
|
|
|
|
endWidth: newDimensions.width,
|
|
|
|
|
});
|
2020-02-18 19:56:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleResizeStart = () => {
|
|
|
|
|
setIsResizing && !isResizing && setIsResizing(true);
|
2023-01-28 02:17:06 +00:00
|
|
|
selectWidget &&
|
|
|
|
|
!isLastSelected &&
|
|
|
|
|
selectWidget(SelectionRequestType.One, [props.widgetId]);
|
2021-07-20 05:18:58 +00:00
|
|
|
// Make sure that this tableFilterPane should close
|
|
|
|
|
showTableFilterPane && showTableFilterPane();
|
2020-03-03 07:02:53 +00:00
|
|
|
AnalyticsUtil.logEvent("WIDGET_RESIZE_START", {
|
|
|
|
|
widgetName: props.widgetName,
|
|
|
|
|
widgetType: props.type,
|
|
|
|
|
});
|
2019-09-22 20:25:05 +00:00
|
|
|
};
|
2021-06-18 07:42:57 +00:00
|
|
|
const handles = useMemo(() => {
|
|
|
|
|
const allHandles = {
|
|
|
|
|
left: LeftHandleStyles,
|
|
|
|
|
top: TopHandleStyles,
|
|
|
|
|
bottom: BottomHandleStyles,
|
|
|
|
|
right: RightHandleStyles,
|
|
|
|
|
bottomRight: BottomRightHandleStyles,
|
|
|
|
|
topLeft: TopLeftHandleStyles,
|
|
|
|
|
topRight: TopRightHandleStyles,
|
|
|
|
|
bottomLeft: BottomLeftHandleStyles,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return omit(allHandles, get(props, "disabledResizeHandles", []));
|
|
|
|
|
}, [props]);
|
2020-02-18 19:56:58 +00:00
|
|
|
|
2021-06-09 10:35:10 +00:00
|
|
|
const isEnabled =
|
2022-11-27 17:12:00 +00:00
|
|
|
!isDragging &&
|
|
|
|
|
isWidgetFocused &&
|
|
|
|
|
!props.resizeDisabled &&
|
|
|
|
|
!isSnipingMode &&
|
|
|
|
|
!isPreviewMode;
|
2022-01-13 13:21:57 +00:00
|
|
|
const { updateDropTargetRows } = useContext(DropTargetContext);
|
|
|
|
|
|
|
|
|
|
const gridProps = {
|
|
|
|
|
parentColumnSpace: props.parentColumnSpace,
|
|
|
|
|
parentRowSpace: props.parentRowSpace,
|
|
|
|
|
paddingOffset: props.paddingOffset,
|
|
|
|
|
maxGridColumns: GridDefaults.DEFAULT_GRID_COLUMNS,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const originalPositions = {
|
|
|
|
|
id: props.widgetId,
|
|
|
|
|
left: props.leftColumn,
|
|
|
|
|
top: props.topRow,
|
|
|
|
|
bottom: props.bottomRow,
|
|
|
|
|
right: props.rightColumn,
|
|
|
|
|
};
|
|
|
|
|
const updateBottomRow = (bottom: number) => {
|
|
|
|
|
if (props.parentId) {
|
2022-01-25 15:28:31 +00:00
|
|
|
updateDropTargetRows && updateDropTargetRows([props.parentId], bottom);
|
2022-01-13 13:21:57 +00:00
|
|
|
}
|
|
|
|
|
};
|
2021-06-09 10:35:10 +00:00
|
|
|
|
2022-11-23 09:48:23 +00:00
|
|
|
const snapGrid = useMemo(
|
|
|
|
|
() => ({
|
|
|
|
|
x: props.parentColumnSpace,
|
|
|
|
|
y: props.parentRowSpace,
|
|
|
|
|
}),
|
|
|
|
|
[props.parentColumnSpace, props.parentRowSpace],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const isVerticalResizeEnabled = useMemo(() => {
|
|
|
|
|
return !isAutoHeightEnabledForWidget(props) && isEnabled;
|
|
|
|
|
}, [props, isAutoHeightEnabledForWidget, isEnabled]);
|
|
|
|
|
|
2019-09-22 20:25:05 +00:00
|
|
|
return (
|
2020-02-18 19:56:58 +00:00
|
|
|
<Resizable
|
2022-09-14 06:55:08 +00:00
|
|
|
allowResize={!isMultiSelected}
|
2021-04-28 10:28:39 +00:00
|
|
|
componentHeight={dimensions.height}
|
|
|
|
|
componentWidth={dimensions.width}
|
2022-11-23 09:48:23 +00:00
|
|
|
enableHorizontalResize={isEnabled}
|
|
|
|
|
enableVerticalResize={isVerticalResizeEnabled}
|
2022-01-13 13:21:57 +00:00
|
|
|
getResizedPositions={getResizedPositions}
|
|
|
|
|
gridProps={gridProps}
|
2021-06-18 07:42:57 +00:00
|
|
|
handles={handles}
|
2020-02-18 19:56:58 +00:00
|
|
|
onStart={handleResizeStart}
|
|
|
|
|
onStop={updateSize}
|
2022-01-13 13:21:57 +00:00
|
|
|
originalPositions={originalPositions}
|
|
|
|
|
parentId={props.parentId}
|
2022-11-23 09:48:23 +00:00
|
|
|
snapGrid={snapGrid}
|
2022-01-13 13:21:57 +00:00
|
|
|
updateBottomRow={updateBottomRow}
|
|
|
|
|
widgetId={props.widgetId}
|
2021-07-06 09:21:46 +00:00
|
|
|
// Used only for performance tracking, can be removed after optimization.
|
|
|
|
|
zWidgetId={props.widgetId}
|
|
|
|
|
zWidgetType={props.type}
|
2019-09-22 20:25:05 +00:00
|
|
|
>
|
2020-02-18 20:35:52 +00:00
|
|
|
<VisibilityContainer
|
|
|
|
|
padding={props.paddingOffset}
|
2021-04-28 10:28:39 +00:00
|
|
|
visible={!!props.isVisible}
|
2020-02-18 20:35:52 +00:00
|
|
|
>
|
|
|
|
|
{props.children}
|
|
|
|
|
</VisibilityContainer>
|
2020-02-18 19:56:58 +00:00
|
|
|
</Resizable>
|
2019-09-22 20:25:05 +00:00
|
|
|
);
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
});
|
2019-09-22 20:25:05 +00:00
|
|
|
export default ResizableComponent;
|