PromucFlow_constructor/app/client/src/actions/controlActions.tsx

97 lines
2.2 KiB
TypeScript
Raw Normal View History

2019-11-25 05:07:27 +00:00
import { ReduxActionTypes, ReduxAction } from "constants/ReduxActionConstants";
import { RenderMode } from "constants/WidgetConstants";
2020-04-13 08:24:13 +00:00
import { BatchAction, batchAction } from "actions/batchActions";
export const updateWidgetPropertyRequest = (
widgetId: string,
propertyPath: string,
propertyValue: any,
2019-11-08 11:02:00 +00:00
renderMode: RenderMode,
isDynamicTrigger?: boolean,
): ReduxAction<UpdateWidgetPropertyRequestPayload> => {
return {
2019-11-06 06:35:15 +00:00
type: ReduxActionTypes.UPDATE_WIDGET_PROPERTY_REQUEST,
payload: {
widgetId,
propertyPath,
propertyValue,
2019-11-08 11:02:00 +00:00
renderMode,
isDynamicTrigger,
},
};
};
export const updateWidgetProperty = (
widgetId: string,
updates: Record<string, unknown>,
2020-04-13 08:24:13 +00:00
): BatchAction<UpdateWidgetPropertyPayload> => {
return batchAction({
type: ReduxActionTypes.UPDATE_WIDGET_PROPERTY,
payload: {
widgetId,
updates,
},
2020-04-13 08:24:13 +00:00
});
};
export const batchUpdateWidgetProperty = (
widgetId: string,
updates: Record<string, unknown>,
): ReduxAction<UpdateWidgetPropertyPayload> => ({
type: ReduxActionTypes.BATCH_UPDATE_WIDGET_PROPERTY,
payload: {
widgetId,
updates,
},
});
export const deleteWidgetProperty = (
widgetId: string,
propertyPaths: string[],
): ReduxAction<DeleteWidgetPropertyPayload> => ({
type: ReduxActionTypes.DELETE_WIDGET_PROPERTY,
payload: {
widgetId,
propertyPaths,
},
});
export const setWidgetDynamicProperty = (
widgetId: string,
propertyPath: string,
isDynamic: boolean,
): ReduxAction<SetWidgetDynamicPropertyPayload> => {
return {
type: ReduxActionTypes.SET_WIDGET_DYNAMIC_PROPERTY,
payload: {
widgetId,
propertyPath,
isDynamic,
},
};
};
export interface UpdateWidgetPropertyRequestPayload {
widgetId: string;
propertyPath: string;
propertyValue: any;
2019-11-08 11:02:00 +00:00
renderMode: RenderMode;
isDynamicTrigger?: boolean;
}
export interface UpdateWidgetPropertyPayload {
widgetId: string;
updates: Record<string, unknown>;
}
export interface SetWidgetDynamicPropertyPayload {
widgetId: string;
propertyPath: string;
isDynamic: boolean;
2019-11-14 09:28:51 +00:00
}
export interface DeleteWidgetPropertyPayload {
widgetId: string;
propertyPaths: string[];
}