PromucFlow_constructor/app/client/src/actions/widgetSelectionActions.ts
Ashok Kumar M 83147afdc5
feat: Widget grouping Extended Features (#6538)
- [x] Draw to select from outside of the editor.
- [x] Cmd + A to select child widgets inside containers, forms, list, tabs, and modals.

Fixes #5995
Fixes #6102
2021-08-24 17:08:20 +05:30

72 lines
1.9 KiB
TypeScript

import { ReduxActionTypes, ReduxAction } from "constants/ReduxActionConstants";
export const selectWidgetAction = (
widgetId?: string,
isMultiSelect?: boolean,
): ReduxAction<{ widgetId?: string; isMultiSelect?: boolean }> => ({
type: ReduxActionTypes.SELECT_WIDGET,
payload: { widgetId, isMultiSelect },
});
export const selectWidgetInitAction = (
widgetId?: string,
isMultiSelect?: boolean,
): ReduxAction<{ widgetId?: string; isMultiSelect?: boolean }> => ({
type: ReduxActionTypes.SELECT_WIDGET_INIT,
payload: { widgetId, isMultiSelect },
});
export const deselectAllInitAction = () => {
return {
type: ReduxActionTypes.DESELECT_MULTIPLE_WIDGETS_INIT,
};
};
export const selectMultipleWidgetsAction = (
widgetIds?: string[],
): ReduxAction<{ widgetIds?: string[] }> => {
return {
type: ReduxActionTypes.SELECT_MULTIPLE_WIDGETS,
payload: { widgetIds },
};
};
export const silentAddSelectionsAction = (
widgetIds?: string[],
): ReduxAction<{ widgetIds?: string[] }> => {
return {
type: ReduxActionTypes.SELECT_WIDGETS,
payload: { widgetIds },
};
};
export const deselectMultipleWidgetsAction = (
widgetIds?: string[],
): ReduxAction<{ widgetIds?: string[] }> => {
return {
type: ReduxActionTypes.DESELECT_WIDGETS,
payload: { widgetIds },
};
};
export const selectAllWidgetsInCanvasInitAction = () => {
return {
type: ReduxActionTypes.SELECT_ALL_WIDGETS_IN_CANVAS_INIT,
};
};
export const selectMultipleWidgetsInitAction = (widgetIds: string[]) => {
return {
type: ReduxActionTypes.SELECT_MULTIPLE_WIDGETS_INIT,
payload: { widgetIds },
};
};
export const shiftSelectWidgetsEntityExplorerInitAction = (
widgetId: string,
siblingWidgets: string[],
): ReduxAction<{ widgetId: string; siblingWidgets: string[] }> => ({
type: ReduxActionTypes.SHIFT_SELECT_WIDGET_INIT,
payload: { widgetId, siblingWidgets },
});