PromucFlow_constructor/app/client/src/actions/pageActions.tsx
Valera Melnikov c42e0317de
fix: change appsmith alias (#35349)
In order to unify package names, we decided to use `@appsmith` prefix as
a marker to indicate that packages belong to our codebase and that these
packages are developed internally. So that we can use this prefix, we
need to rename the alias of the same name. But since `@appsmith` is
currently being used as an alias for `ee` folder, we have to rename the
alias as the first step.

Related discussion
https://theappsmith.slack.com/archives/CPG2ZTXEY/p1722516279126329

EE PR — https://github.com/appsmithorg/appsmith-ee/pull/4801

## Automation

/ok-to-test tags="@tag.All"

### 🔍 Cypress test results
<!-- This is an auto-generated comment: Cypress test results  -->
> [!TIP]
> 🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉
> Workflow run:
<https://github.com/appsmithorg/appsmith/actions/runs/10267368821>
> Commit: 2b00af2d257e4d4304db0a80072afef7513de6be
> <a
href="https://internal.appsmith.com/app/cypress-dashboard/rundetails-65890b3c81d7400d08fa9ee5?branch=master&workflowId=10267368821&attempt=2"
target="_blank">Cypress dashboard</a>.
> Tags: `@tag.All`
> Spec:
> <hr>Tue, 06 Aug 2024 14:24:22 UTC
<!-- end of auto-generated comment: Cypress test results  -->


## Communication
Should the DevRel and Marketing teams inform users about this change?
- [ ] Yes
- [x] No
2024-08-06 17:52:22 +03:00

651 lines
14 KiB
TypeScript

import type { WidgetType } from "constants/WidgetConstants";
import type {
EvaluationReduxAction,
ReduxAction,
UpdateCanvasPayload,
AnyReduxAction,
ClonePageSuccessPayload,
} from "ee/constants/ReduxActionConstants";
import {
ReduxActionTypes,
ReduxActionErrorTypes,
WidgetReduxActionTypes,
ReplayReduxActionTypes,
} from "ee/constants/ReduxActionConstants";
import type { DynamicPath } from "utils/DynamicBindingUtils";
import AnalyticsUtil from "ee/utils/AnalyticsUtil";
import type { WidgetOperation } from "widgets/BaseWidget";
import type {
FetchPageResponse,
PageLayout,
SavePageResponse,
UpdatePageRequest,
UpdatePageResponse,
} from "api/PageApi";
import type { UrlDataState } from "reducers/entityReducers/appReducer";
import type { APP_MODE } from "entities/App";
import type { CanvasWidgetsReduxState } from "reducers/entityReducers/canvasWidgetsReducer";
import type { ENTITY_TYPE } from "ee/entities/AppsmithConsole/utils";
import type { Replayable } from "entities/Replay/ReplayEntity/ReplayEditor";
import * as Sentry from "@sentry/react";
export interface FetchPageListPayload {
applicationId: string;
mode: APP_MODE;
}
export interface updateLayoutOptions {
isRetry?: boolean;
shouldReplay?: boolean;
updatedWidgetIds?: string[];
}
export interface FetchPageActionPayload {
id: string;
isFirstLoad?: boolean;
pageWithMigratedDsl?: FetchPageResponse;
}
export const fetchPageAction = (
pageId: string,
isFirstLoad = false,
pageWithMigratedDsl?: FetchPageResponse,
): ReduxAction<FetchPageActionPayload> => {
return {
type: ReduxActionTypes.FETCH_PAGE_INIT,
payload: {
id: pageId,
isFirstLoad,
pageWithMigratedDsl,
},
};
};
// fetch a published page
export interface FetchPublishedPageActionPayload {
pageId: string;
bustCache?: boolean;
firstLoad?: boolean;
pageWithMigratedDsl?: FetchPageResponse;
}
export const fetchPublishedPageAction = (
pageId: string,
bustCache = false,
firstLoad = false,
pageWithMigratedDsl?: FetchPageResponse,
): ReduxAction<FetchPublishedPageActionPayload> => ({
type: ReduxActionTypes.FETCH_PUBLISHED_PAGE_INIT,
payload: {
pageId,
bustCache,
firstLoad,
pageWithMigratedDsl,
},
});
export const fetchPageSuccess = (): EvaluationReduxAction<undefined> => {
return {
type: ReduxActionTypes.FETCH_PAGE_SUCCESS,
payload: undefined,
};
};
export const fetchPublishedPageSuccess =
(): EvaluationReduxAction<undefined> => ({
type: ReduxActionTypes.FETCH_PUBLISHED_PAGE_SUCCESS,
payload: undefined,
});
/**
* After all page entities are fetched like DSL, actions and JsObjects,
* we trigger evaluation using this redux action, here we supply postEvalActions
* to trigger action after evaluation has been completed like executeOnPageLoadAction
*
* @param {Array<AnyReduxAction>} postEvalActions
*/
export const fetchAllPageEntityCompletion = (
postEvalActions: Array<AnyReduxAction>,
) => ({
type: ReduxActionTypes.FETCH_ALL_PAGE_ENTITY_COMPLETION,
postEvalActions,
payload: undefined,
});
export interface UpdateCurrentPagePayload {
id: string;
slug?: string;
permissions?: string[];
}
export const updateCurrentPage = (
id: string,
slug?: string,
permissions?: string[],
): ReduxAction<UpdateCurrentPagePayload> => ({
type: ReduxActionTypes.SWITCH_CURRENT_PAGE_ID,
payload: { id, slug, permissions },
});
export const initCanvasLayout = (
payload: UpdateCanvasPayload,
): ReduxAction<UpdateCanvasPayload> => {
return {
type: ReduxActionTypes.INIT_CANVAS_LAYOUT,
payload,
};
};
export const setLastUpdatedTime = (payload: number): ReduxAction<number> => ({
type: ReduxActionTypes.SET_LAST_UPDATED_TIME,
payload,
});
export const savePageSuccess = (payload: SavePageResponse) => {
return {
type: ReduxActionTypes.SAVE_PAGE_SUCCESS,
payload,
};
};
export const updateWidgetNameSuccess = () => {
return {
type: ReduxActionTypes.UPDATE_WIDGET_NAME_SUCCESS,
};
};
export const deletePageSuccess = () => {
return {
type: ReduxActionTypes.DELETE_PAGE_SUCCESS,
};
};
export const updateAndSaveLayout = (
widgets: CanvasWidgetsReduxState,
options: updateLayoutOptions = {},
) => {
const { isRetry, shouldReplay, updatedWidgetIds } = options;
return {
type: ReduxActionTypes.UPDATE_LAYOUT,
payload: { widgets, isRetry, shouldReplay, updatedWidgetIds },
};
};
export const saveLayout = (isRetry?: boolean) => {
return {
type: ReduxActionTypes.SAVE_PAGE_INIT,
payload: { isRetry },
};
};
export interface CreatePageActionPayload {
applicationId: string;
name: string;
layouts: Partial<PageLayout>[];
}
export const createPageAction = (
applicationId: string,
pageName: string,
layouts: Partial<PageLayout>[],
orgId: string,
instanceId?: string,
) => {
AnalyticsUtil.logEvent("CREATE_PAGE", {
pageName,
orgId,
instanceId,
});
return {
type: ReduxActionTypes.CREATE_PAGE_INIT,
payload: {
applicationId,
name: pageName,
layouts,
},
};
};
export const createNewPageFromEntities = (
applicationId: string,
pageName: string,
orgId: string,
instanceId?: string,
) => {
AnalyticsUtil.logEvent("CREATE_PAGE", {
pageName,
orgId,
instanceId,
});
return {
type: ReduxActionTypes.CREATE_NEW_PAGE_FROM_ENTITIES,
payload: {
applicationId,
name: pageName,
},
};
};
// cloning a page
export interface ClonePageActionPayload {
id: string;
blockNavigation?: boolean;
}
export const clonePageInit = (
pageId: string,
blockNavigation?: boolean,
): ReduxAction<ClonePageActionPayload> => {
return {
type: ReduxActionTypes.CLONE_PAGE_INIT,
payload: {
id: pageId,
blockNavigation,
},
};
};
export const clonePageSuccess = ({
basePageId,
layoutId,
pageId,
pageName,
slug,
}: ClonePageSuccessPayload) => {
return {
type: ReduxActionTypes.CLONE_PAGE_SUCCESS,
payload: {
pageId,
basePageId,
pageName,
layoutId,
slug,
},
};
};
// update a page
export interface UpdatePageActionPayload {
id: string;
name?: string;
isHidden?: boolean;
customSlug?: string;
}
export const updatePageAction = (
payload: UpdatePageActionPayload,
): ReduxAction<UpdatePageActionPayload> => {
// Update page *needs* id to be there. We found certain scenarios
// where this was not happening and capturing the error to know gather
// more info: https://github.com/appsmithorg/appsmith/issues/16435
if (!payload.id) {
Sentry.captureException(
new Error("Attempting to update page without page id"),
);
}
return {
type: ReduxActionTypes.UPDATE_PAGE_INIT,
payload,
};
};
export const updatePageSuccess = (payload: UpdatePageResponse) => {
return {
type: ReduxActionTypes.UPDATE_PAGE_SUCCESS,
payload,
};
};
export const updatePageError = (payload: UpdatePageErrorPayload) => {
return {
type: ReduxActionErrorTypes.UPDATE_PAGE_ERROR,
payload,
};
};
export interface UpdatePageErrorPayload {
request: UpdatePageRequest;
error: unknown;
}
export interface WidgetAddChild {
widgetId: string;
widgetName?: string;
type: WidgetType;
leftColumn: number;
topRow: number;
columns: number;
rows: number;
parentRowSpace: number;
parentColumnSpace: number;
newWidgetId: string;
tabId: string;
// TODO: Fix this the next time the file is edited
// eslint-disable-next-line @typescript-eslint/no-explicit-any
props?: Record<string, any>;
dynamicBindingPathList?: DynamicPath[];
}
export interface WidgetRemoveChild {
widgetId: string;
childWidgetId: string;
}
export interface WidgetDelete {
widgetId?: string;
parentId?: string;
disallowUndo?: boolean;
isShortcut?: boolean;
}
export interface MultipleWidgetDeletePayload {
widgetIds: string[];
disallowUndo?: boolean;
isShortcut?: boolean;
}
export interface WidgetResize {
widgetId: string;
parentId: string;
leftColumn?: number;
rightColumn?: number;
topRow?: number;
bottomRow?: number;
mobileLeftColumn?: number;
mobileRightColumn?: number;
mobileTopRow?: number;
mobileBottomRow?: number;
snapColumnSpace: number;
snapRowSpace: number;
}
export interface ModalWidgetResize {
height: number;
width: number;
widgetId: string;
canvasWidgetId: string;
}
export interface WidgetAddChildren {
widgetId: string;
children: Array<{
type: WidgetType;
widgetId: string;
parentId: string;
parentRowSpace: number;
parentColumnSpace: number;
leftColumn: number;
rightColumn: number;
topRow: number;
bottomRow: number;
isLoading: boolean;
}>;
}
export interface WidgetUpdateProperty {
widgetId: string;
propertyPath: string;
// TODO: Fix this the next time the file is edited
// eslint-disable-next-line @typescript-eslint/no-explicit-any
propertyValue: any;
}
export const updateWidget = (
operation: WidgetOperation,
widgetId: string,
// TODO: Fix this the next time the file is edited
// eslint-disable-next-line @typescript-eslint/no-explicit-any
payload: any,
): ReduxAction<
| WidgetAddChild
| WidgetResize
| WidgetDelete
| WidgetAddChildren
| WidgetUpdateProperty
> => {
return {
type: WidgetReduxActionTypes["WIDGET_" + operation],
payload: { widgetId, ...payload },
};
};
export const setUrlData = (
payload: UrlDataState,
): ReduxAction<UrlDataState> => {
return {
type: ReduxActionTypes.SET_URL_DATA,
payload,
};
};
export const setAppMode = (payload: APP_MODE): ReduxAction<APP_MODE> => {
return {
type: ReduxActionTypes.SET_APP_MODE,
payload,
};
};
export const updateAppStore = (
payload: Record<string, unknown>,
): EvaluationReduxAction<Record<string, unknown>> => {
return {
type: ReduxActionTypes.UPDATE_APP_STORE,
payload,
};
};
export interface ReduxActionWithExtraParams<T> extends ReduxAction<T> {
// TODO: Fix this the next time the file is edited
// eslint-disable-next-line @typescript-eslint/no-explicit-any
extraParams: Record<any, any>;
}
export interface GenerateCRUDSuccess {
page: {
// TODO: Fix this the next time the file is edited
// eslint-disable-next-line @typescript-eslint/no-explicit-any
layouts: Array<any>;
id: string;
baseId: string;
name: string;
isDefault?: boolean;
slug: string;
description?: string;
};
isNewPage: boolean;
}
export const generateTemplateSuccess = (payload: GenerateCRUDSuccess) => {
return {
type: ReduxActionTypes.GENERATE_TEMPLATE_PAGE_SUCCESS,
payload,
};
};
export const generateTemplateError = () => {
return {
type: ReduxActionErrorTypes.GENERATE_TEMPLATE_PAGE_ERROR,
};
};
export interface GenerateTemplatePageActionPayload {
pageId: string;
tableName: string;
datasourceId: string;
applicationId: string;
columns?: string[];
searchColumn?: string;
mode?: string;
// TODO: Fix this the next time the file is edited
// eslint-disable-next-line @typescript-eslint/no-explicit-any
pluginSpecificParams?: Record<any, any>;
}
export const generateTemplateToUpdatePage = ({
applicationId,
columns,
datasourceId,
mode,
pageId,
pluginSpecificParams,
searchColumn,
tableName,
}: GenerateTemplatePageActionPayload): ReduxActionWithExtraParams<GenerateTemplatePageActionPayload> => {
return {
type: ReduxActionTypes.GENERATE_TEMPLATE_PAGE_INIT,
payload: {
pageId,
tableName,
datasourceId,
applicationId,
columns,
searchColumn,
pluginSpecificParams,
},
extraParams: {
mode,
},
};
};
export function updateReplayEntity(
entityId: string,
entity: Replayable,
entityType: ENTITY_TYPE,
) {
return {
type: ReduxActionTypes.UPDATE_REPLAY_ENTITY,
payload: { entityId, entity, entityType },
};
}
export function undoAction() {
return {
type: ReduxActionTypes.UNDO_REDO_OPERATION,
payload: {
operation: ReplayReduxActionTypes.UNDO,
},
};
}
export function redoAction() {
return {
type: ReduxActionTypes.UNDO_REDO_OPERATION,
payload: {
operation: ReplayReduxActionTypes.REDO,
},
};
}
// delete a page
export interface DeletePageActionPayload {
id: string;
}
export const deletePageAction = (
pageId: string,
): ReduxAction<DeletePageActionPayload> => {
return {
type: ReduxActionTypes.DELETE_PAGE_INIT,
payload: {
id: pageId,
},
};
};
export interface SetDefaultPageActionPayload {
id: string;
applicationId: string;
}
export const setPageAsDefault = (
pageId: string,
applicationId: string,
): ReduxAction<SetDefaultPageActionPayload> => {
return {
type: ReduxActionTypes.SET_DEFAULT_APPLICATION_PAGE_INIT,
payload: {
id: pageId,
applicationId,
},
};
};
export interface SetPageOrderActionPayload {
pageId: string;
order: number;
applicationId: string;
}
export const setPageOrder = (
applicationId: string,
pageId: string,
order: number,
): ReduxAction<SetPageOrderActionPayload> => {
return {
type: ReduxActionTypes.SET_PAGE_ORDER_INIT,
payload: {
pageId: pageId,
order: order,
applicationId,
},
};
};
export const resetPageList = () => ({
type: ReduxActionTypes.RESET_PAGE_LIST,
});
export const resetApplicationWidgets = () => ({
type: ReduxActionTypes.RESET_APPLICATION_WIDGET_STATE_REQUEST,
});
// TODO: Fix this the next time the file is edited
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export const fetchPageDSLs = (payload?: any) => ({
type: ReduxActionTypes.POPULATE_PAGEDSLS_INIT,
payload,
});
export interface SetupPageActionPayload {
id: string;
isFirstLoad?: boolean;
pageWithMigratedDsl?: FetchPageResponse;
}
export const setupPageAction = (
pageId: string,
isFirstLoad = false,
pageWithMigratedDsl?: FetchPageResponse,
): ReduxAction<SetupPageActionPayload> => ({
type: ReduxActionTypes.SETUP_PAGE_INIT,
payload: {
id: pageId,
isFirstLoad,
pageWithMigratedDsl,
},
});
export interface SetupPublishedPageActionPayload {
pageId: string;
bustCache: boolean;
firstLoad: boolean;
pageWithMigratedDsl?: FetchPageResponse;
}
export const setupPublishedPage = (
pageId: string,
bustCache = false,
firstLoad = false,
pageWithMigratedDsl?: FetchPageResponse,
): ReduxAction<SetupPublishedPageActionPayload> => ({
type: ReduxActionTypes.SETUP_PUBLISHED_PAGE_INIT,
payload: {
pageId,
bustCache,
firstLoad,
pageWithMigratedDsl,
},
});