Skip to content

Commit 1eed8e2

Browse files
devin-ai-integration[bot]mohanarpit
andcommittedJan 8, 2025·
refactor: Separate types from implementations to reduce cyclic dependencies
- Move types to dedicated type files - Update imports to reference new type locations - Reduce cyclic dependencies to address memory issues Testing: No functional changes Co-Authored-By: arpit@appsmith.com <arpit@appsmith.com>
1 parent 8efce1d commit 1eed8e2

10 files changed

+477
-360
lines changed
 

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

+12-54
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,18 @@ import type {
33
ReduxActionType,
44
} from "ee/constants/ReduxActionConstants";
55
import { ReduxActionTypes } from "ee/constants/ReduxActionConstants";
6-
import type { UpdateWidgetsPayload } from "reducers/entityReducers/canvasWidgetsReducer";
6+
import type { UpdateWidgetsPayload } from "reducers/types/canvasWidgets.types";
77
import type { DynamicPath } from "utils/DynamicBindingUtils";
8+
import type {
9+
BatchPropertyUpdatePayload,
10+
UpdateWidgetPropertyRequestPayload,
11+
UpdateWidgetPropertyPayload,
12+
UpdateCanvasLayoutPayload,
13+
SetWidgetDynamicPropertyPayload,
14+
BatchUpdateDynamicPropertyUpdates,
15+
BatchUpdateWidgetDynamicPropertyPayload,
16+
DeleteWidgetPropertyPayload,
17+
} from "./types/controlActions.types";
818

919
export const updateWidgetPropertyRequest = (
1020
widgetId: string,
@@ -23,12 +33,7 @@ export const updateWidgetPropertyRequest = (
2333
};
2434
};
2535

26-
export interface BatchPropertyUpdatePayload {
27-
modify?: Record<string, unknown>; //Key value pairs of paths and values to update
28-
remove?: string[]; //Array of paths to delete
29-
triggerPaths?: string[]; // Array of paths in the modify and remove list which are trigger paths
30-
postUpdateAction?: ReduxActionType; // Array of action types we need to dispatch after property updates.
31-
}
36+
3237

3338
export const batchUpdateWidgetProperty = (
3439
widgetId: string,
@@ -111,50 +116,3 @@ export const updateMultipleMetaWidgetPropertiesAction = (
111116
payload: { widgetsToUpdate, shouldEval },
112117
};
113118
};
114-
115-
export interface UpdateWidgetPropertyRequestPayload {
116-
widgetId: string;
117-
propertyPath: string;
118-
// TODO: Fix this the next time the file is edited
119-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
120-
propertyValue: any;
121-
}
122-
123-
export interface UpdateWidgetPropertyPayload {
124-
widgetId: string;
125-
updates: BatchPropertyUpdatePayload;
126-
dynamicUpdates?: {
127-
dynamicBindingPathList?: DynamicPath[];
128-
dynamicTriggerPathList?: DynamicPath[];
129-
dynamicPropertyPathList?: DynamicPath[];
130-
};
131-
shouldReplay?: boolean;
132-
}
133-
134-
export interface UpdateCanvasLayoutPayload {
135-
width: number;
136-
height: number;
137-
}
138-
139-
export interface SetWidgetDynamicPropertyPayload {
140-
widgetId: string;
141-
propertyPath: string;
142-
isDynamic: boolean;
143-
shouldRejectDynamicBindingPathList?: boolean;
144-
skipValidation?: boolean;
145-
}
146-
147-
export type BatchUpdateDynamicPropertyUpdates = Omit<
148-
SetWidgetDynamicPropertyPayload,
149-
"widgetId"
150-
>;
151-
152-
export interface BatchUpdateWidgetDynamicPropertyPayload {
153-
widgetId: string;
154-
updates: BatchUpdateDynamicPropertyUpdates[];
155-
}
156-
157-
export interface DeleteWidgetPropertyPayload {
158-
widgetId: string;
159-
propertyPaths: string[];
160-
}

‎app/client/src/actions/pageActions.tsx

+37-219
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,15 @@ import {
99
ReduxActionTypes,
1010
WidgetReduxActionTypes,
1111
} from "ee/constants/ReduxActionConstants";
12-
import type { DynamicPath } from "utils/DynamicBindingUtils";
1312
import AnalyticsUtil from "ee/utils/AnalyticsUtil";
1413
import type { WidgetOperation, WidgetProps } from "widgets/BaseWidget";
1514
import type {
16-
FetchPageResponse,
17-
PageLayout,
1815
SavePageResponse,
19-
UpdatePageRequest,
2016
UpdatePageResponse,
17+
FetchPageResponse,
18+
PageLayout,
2119
} from "api/PageApi";
2220
import type { UrlDataState } from "reducers/entityReducers/appReducer";
23-
import type { APP_MODE } from "entities/App";
24-
import type { CanvasWidgetsReduxState } from "reducers/entityReducers/canvasWidgetsReducer";
2521
import type { ENTITY_TYPE } from "ee/entities/AppsmithConsole/utils";
2622
import type { Replayable } from "entities/Replay/ReplayEntity/ReplayEditor";
2723
import * as Sentry from "@sentry/react";
@@ -30,26 +26,42 @@ import type {
3026
LayoutOnLoadActionErrors,
3127
PageAction,
3228
} from "../constants/AppsmithActionConstants/ActionConstants";
33-
import { ReplayOperation } from "entities/Replay/ReplayEntity/ReplayOperations";
34-
import type { PACKAGE_PULL_STATUS } from "ee/constants/ModuleConstants";
29+
import type { APP_MODE } from "entities/App";
3530
import type { ApiResponse } from "api/ApiResponses";
31+
import type { DynamicPath } from "utils/DynamicBindingUtils";
32+
import type { CanvasWidgetsReduxState } from "reducers/types/canvasWidgets.types";
33+
import { ReplayOperation } from "entities/Replay/ReplayEntity/ReplayOperations";
34+
import type {
35+
FetchPageListPayload,
36+
UpdateLayoutOptions,
37+
FetchPageActionPayload,
38+
UpdateCurrentPagePayload,
39+
UpdateCanvasPayload,
40+
CreatePageActionPayload,
41+
ClonePageActionPayload,
42+
SetupPageActionPayload,
43+
FetchPublishedPageActionPayload,
44+
FetchPublishedPageResourcesPayload,
45+
UpdatePageErrorPayload,
46+
WidgetAddChild,
47+
WidgetRemoveChild,
48+
WidgetDelete,
49+
MultipleWidgetDeletePayload,
50+
WidgetResize,
51+
ModalWidgetResize,
52+
WidgetAddChildren,
53+
WidgetUpdateProperty,
54+
ReduxActionWithExtraParams,
55+
GenerateCRUDSuccess,
56+
GenerateTemplatePageActionPayload,
57+
DeletePageActionPayload,
58+
SetDefaultPageActionPayload,
59+
SetPageOrderActionPayload,
60+
SetupPublishedPageActionPayload,
61+
ClonePageSuccessPayload,
62+
} from "./types/pageActions.types";
3663

37-
export interface FetchPageListPayload {
38-
applicationId: string;
39-
mode: APP_MODE;
40-
}
41-
42-
export interface updateLayoutOptions {
43-
isRetry?: boolean;
44-
shouldReplay?: boolean;
45-
updatedWidgetIds?: string[];
46-
}
4764

48-
export interface FetchPageActionPayload {
49-
id: string;
50-
isFirstLoad?: boolean;
51-
pageWithMigratedDsl?: FetchPageResponse;
52-
}
5365

5466
export const fetchPageAction = (
5567
pageId: string,
@@ -67,17 +79,6 @@ export const fetchPageAction = (
6779
};
6880

6981
// fetch a published page
70-
export interface FetchPublishedPageActionPayload {
71-
pageId: string;
72-
bustCache?: boolean;
73-
pageWithMigratedDsl?: FetchPageResponse;
74-
}
75-
76-
export interface FetchPublishedPageResourcesPayload {
77-
pageId: string;
78-
basePageId: string;
79-
}
80-
8182
export const fetchPublishedPageAction = (
8283
pageId: string,
8384
bustCache = false,
@@ -119,12 +120,6 @@ export const fetchAllPageEntityCompletion = (
119120
payload: undefined,
120121
});
121122

122-
export interface UpdateCurrentPagePayload {
123-
id: string;
124-
slug?: string;
125-
permissions?: string[];
126-
}
127-
128123
export const updateCurrentPage = (
129124
id: string,
130125
slug?: string,
@@ -134,19 +129,6 @@ export const updateCurrentPage = (
134129
payload: { id, slug, permissions },
135130
});
136131

137-
export interface UpdateCanvasPayload {
138-
pageWidgetId: string;
139-
widgets: { [widgetId: string]: WidgetProps };
140-
currentLayoutId: string;
141-
currentPageId: string;
142-
currentPageName: string;
143-
currentApplicationId: string;
144-
dsl: Partial<DSLWidget>;
145-
pageActions: PageAction[][];
146-
updatedWidgetIds?: string[];
147-
layoutOnLoadActionErrors?: LayoutOnLoadActionErrors[];
148-
}
149-
150132
export const initCanvasLayout = (
151133
payload: UpdateCanvasPayload,
152134
): ReduxAction<UpdateCanvasPayload> => {
@@ -182,7 +164,7 @@ export const deletePageSuccess = () => {
182164

183165
export const updateAndSaveLayout = (
184166
widgets: CanvasWidgetsReduxState,
185-
options: updateLayoutOptions = {},
167+
options: UpdateLayoutOptions = {},
186168
) => {
187169
const { isRetry, shouldReplay, updatedWidgetIds } = options;
188170

@@ -199,12 +181,6 @@ export const saveLayout = (isRetry?: boolean) => {
199181
};
200182
};
201183

202-
export interface CreatePageActionPayload {
203-
applicationId: string;
204-
name: string;
205-
layouts: Partial<PageLayout>[];
206-
}
207-
208184
export const createPageAction = (
209185
applicationId: string,
210186
pageName: string,
@@ -250,11 +226,6 @@ export const createNewPageFromEntities = (
250226
};
251227

252228
// cloning a page
253-
export interface ClonePageActionPayload {
254-
id: string;
255-
blockNavigation?: boolean;
256-
}
257-
258229
export const clonePageInit = (
259230
pageId: string,
260231
blockNavigation?: boolean,
@@ -268,16 +239,6 @@ export const clonePageInit = (
268239
};
269240
};
270241

271-
export interface ClonePageSuccessPayload {
272-
pageName: string;
273-
description?: string;
274-
pageId: string;
275-
basePageId: string;
276-
layoutId: string;
277-
isDefault: boolean;
278-
slug: string;
279-
}
280-
281242
export const clonePageSuccess = ({
282243
basePageId,
283244
layoutId,
@@ -351,92 +312,7 @@ export const updatePageError = (payload: UpdatePageErrorPayload) => {
351312
};
352313
};
353314

354-
export interface UpdatePageErrorPayload {
355-
request: UpdatePageRequest;
356-
error: unknown;
357-
}
358-
359-
export interface WidgetAddChild {
360-
widgetId: string;
361-
widgetName?: string;
362-
type: WidgetType;
363-
leftColumn: number;
364-
topRow: number;
365-
columns: number;
366-
rows: number;
367-
parentRowSpace: number;
368-
parentColumnSpace: number;
369-
newWidgetId: string;
370-
tabId: string;
371-
// TODO: Fix this the next time the file is edited
372-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
373-
props?: Record<string, any>;
374-
dynamicBindingPathList?: DynamicPath[];
375-
}
376-
377-
export interface WidgetRemoveChild {
378-
widgetId: string;
379-
childWidgetId: string;
380-
}
381-
382-
export interface WidgetDelete {
383-
widgetId?: string;
384-
parentId?: string;
385-
disallowUndo?: boolean;
386-
isShortcut?: boolean;
387-
}
388-
389-
export interface MultipleWidgetDeletePayload {
390-
widgetIds: string[];
391-
disallowUndo?: boolean;
392-
isShortcut?: boolean;
393-
}
394315

395-
export interface WidgetResize {
396-
widgetId: string;
397-
parentId: string;
398-
leftColumn?: number;
399-
rightColumn?: number;
400-
topRow?: number;
401-
bottomRow?: number;
402-
mobileLeftColumn?: number;
403-
mobileRightColumn?: number;
404-
mobileTopRow?: number;
405-
mobileBottomRow?: number;
406-
snapColumnSpace: number;
407-
snapRowSpace: number;
408-
}
409-
410-
export interface ModalWidgetResize {
411-
height: number;
412-
width: number;
413-
widgetId: string;
414-
canvasWidgetId: string;
415-
}
416-
417-
export interface WidgetAddChildren {
418-
widgetId: string;
419-
children: Array<{
420-
type: WidgetType;
421-
widgetId: string;
422-
parentId: string;
423-
parentRowSpace: number;
424-
parentColumnSpace: number;
425-
leftColumn: number;
426-
rightColumn: number;
427-
topRow: number;
428-
bottomRow: number;
429-
isLoading: boolean;
430-
}>;
431-
}
432-
433-
export interface WidgetUpdateProperty {
434-
widgetId: string;
435-
propertyPath: string;
436-
// TODO: Fix this the next time the file is edited
437-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
438-
propertyValue: any;
439-
}
440316

441317
export const updateWidget = (
442318
operation: WidgetOperation,
@@ -482,26 +358,7 @@ export const updateAppStore = (
482358
};
483359
};
484360

485-
export interface ReduxActionWithExtraParams<T> extends ReduxAction<T> {
486-
// TODO: Fix this the next time the file is edited
487-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
488-
extraParams: Record<any, any>;
489-
}
490361

491-
export interface GenerateCRUDSuccess {
492-
page: {
493-
// TODO: Fix this the next time the file is edited
494-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
495-
layouts: Array<any>;
496-
id: string;
497-
baseId: string;
498-
name: string;
499-
isDefault?: boolean;
500-
slug: string;
501-
description?: string;
502-
};
503-
isNewPage: boolean;
504-
}
505362

506363
export const generateTemplateSuccess = (payload: GenerateCRUDSuccess) => {
507364
return {
@@ -516,18 +373,7 @@ export const generateTemplateError = () => {
516373
};
517374
};
518375

519-
export interface GenerateTemplatePageActionPayload {
520-
pageId: string;
521-
tableName: string;
522-
datasourceId: string;
523-
applicationId: string;
524-
columns?: string[];
525-
searchColumn?: string;
526-
mode?: string;
527-
// TODO: Fix this the next time the file is edited
528-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
529-
pluginSpecificParams?: Record<any, any>;
530-
}
376+
531377

532378
export const generateTemplateToUpdatePage = ({
533379
applicationId,
@@ -587,10 +433,6 @@ export function redoAction() {
587433

588434
// delete a page
589435

590-
export interface DeletePageActionPayload {
591-
id: string;
592-
}
593-
594436
export const deletePageAction = (
595437
pageId: string,
596438
): ReduxAction<DeletePageActionPayload> => {
@@ -602,11 +444,6 @@ export const deletePageAction = (
602444
};
603445
};
604446

605-
export interface SetDefaultPageActionPayload {
606-
id: string;
607-
applicationId: string;
608-
}
609-
610447
export const setPageAsDefault = (
611448
pageId: string,
612449
applicationId: string,
@@ -620,12 +457,6 @@ export const setPageAsDefault = (
620457
};
621458
};
622459

623-
export interface SetPageOrderActionPayload {
624-
pageId: string;
625-
order: number;
626-
applicationId: string;
627-
}
628-
629460
export const setPageOrder = (
630461
applicationId: string,
631462
pageId: string,
@@ -655,13 +486,6 @@ export const fetchPageDSLs = (payload?: any) => ({
655486
type: ReduxActionTypes.POPULATE_PAGEDSLS_INIT,
656487
payload,
657488
});
658-
export interface SetupPageActionPayload {
659-
id: string;
660-
isFirstLoad?: boolean;
661-
pageWithMigratedDsl?: FetchPageResponse;
662-
packagePullStatus?: ApiResponse<PACKAGE_PULL_STATUS>;
663-
}
664-
665489
export const setupPageAction = ({
666490
id,
667491
isFirstLoad = false,
@@ -677,12 +501,6 @@ export const setupPageAction = ({
677501
},
678502
});
679503

680-
export interface SetupPublishedPageActionPayload {
681-
pageId: string;
682-
bustCache: boolean;
683-
pageWithMigratedDsl?: FetchPageResponse;
684-
}
685-
686504
export const setupPublishedPage = (
687505
pageId: string,
688506
bustCache = false,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
import type {
2+
ReduxAction,
3+
ReduxActionType,
4+
} from "ee/constants/ReduxActionConstants";
5+
import type { DynamicPath } from "utils/DynamicBindingUtils";
6+
7+
export interface BatchPropertyUpdatePayload {
8+
modify?: Record<string, unknown>; //Key value pairs of paths and values to update
9+
remove?: string[]; //Array of paths to delete
10+
triggerPaths?: string[]; // Array of paths in the modify and remove list which are trigger paths
11+
postUpdateAction?: ReduxActionType; // Array of action types we need to dispatch after property updates.
12+
}
13+
14+
export interface UpdateWidgetPropertyRequestPayload {
15+
widgetId: string;
16+
propertyPath: string;
17+
propertyValue: any;
18+
}
19+
20+
export interface UpdateWidgetPropertyPayload {
21+
widgetId: string;
22+
updates: BatchPropertyUpdatePayload;
23+
dynamicUpdates?: {
24+
dynamicBindingPathList?: DynamicPath[];
25+
dynamicTriggerPathList?: DynamicPath[];
26+
dynamicPropertyPathList?: DynamicPath[];
27+
};
28+
shouldReplay?: boolean;
29+
}
30+
31+
export interface UpdateCanvasLayoutPayload {
32+
width: number;
33+
height: number;
34+
}
35+
36+
export interface SetWidgetDynamicPropertyPayload {
37+
widgetId: string;
38+
propertyPath: string;
39+
isDynamic: boolean;
40+
shouldRejectDynamicBindingPathList?: boolean;
41+
skipValidation?: boolean;
42+
}
43+
44+
export type BatchUpdateDynamicPropertyUpdates = Omit<
45+
SetWidgetDynamicPropertyPayload,
46+
"widgetId"
47+
>;
48+
49+
export interface BatchUpdateWidgetDynamicPropertyPayload {
50+
widgetId: string;
51+
updates: BatchUpdateDynamicPropertyUpdates[];
52+
}
53+
54+
export interface DeleteWidgetPropertyPayload {
55+
widgetId: string;
56+
propertyPaths: string[];
57+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,225 @@
1+
import type { APP_MODE } from "entities/App";
2+
import type { PageLayout, FetchPageResponse, UpdatePageRequest } from "api/PageApi";
3+
import type { CanvasWidgetsReduxState } from "reducers/types/canvasWidgets.types";
4+
import type { DSLWidget } from "WidgetProvider/constants";
5+
import type { PageAction, LayoutOnLoadActionErrors } from "constants/AppsmithActionConstants/ActionConstants";
6+
import type { ApiResponse } from "api/ApiResponses";
7+
import type { PACKAGE_PULL_STATUS } from "ee/constants/ModuleConstants";
8+
import type { WidgetProps } from "widgets/BaseWidget";
9+
import type { WidgetType } from "constants/WidgetConstants";
10+
import type { DynamicPath } from "utils/DynamicBindingUtils";
11+
import type { ReduxAction } from "ee/constants/ReduxActionConstants";
12+
13+
export interface FetchPageListPayload {
14+
applicationId: string;
15+
mode: APP_MODE;
16+
}
17+
18+
export interface UpdateLayoutOptions {
19+
isRetry?: boolean;
20+
shouldReplay?: boolean;
21+
updatedWidgetIds?: string[];
22+
}
23+
24+
export interface FetchPageActionPayload {
25+
id: string;
26+
isFirstLoad?: boolean;
27+
pageWithMigratedDsl?: FetchPageResponse;
28+
}
29+
30+
export interface UpdateCurrentPagePayload {
31+
id: string;
32+
slug?: string;
33+
permissions?: string[];
34+
}
35+
36+
export interface UpdateCanvasPayload {
37+
pageWidgetId: string;
38+
widgets: { [widgetId: string]: WidgetProps };
39+
currentLayoutId: string;
40+
currentPageId: string;
41+
currentPageName: string;
42+
currentApplicationId: string;
43+
dsl: Partial<DSLWidget>;
44+
pageActions: PageAction[][];
45+
updatedWidgetIds?: string[];
46+
layoutOnLoadActionErrors?: LayoutOnLoadActionErrors[];
47+
}
48+
49+
export interface CreatePageActionPayload {
50+
applicationId: string;
51+
name: string;
52+
layouts: Partial<PageLayout>[];
53+
}
54+
55+
export interface ClonePageActionPayload {
56+
id: string;
57+
blockNavigation?: boolean;
58+
}
59+
60+
export interface ClonePageSuccessPayload {
61+
pageName: string;
62+
description?: string;
63+
pageId: string;
64+
basePageId: string;
65+
layoutId: string;
66+
isDefault: boolean;
67+
slug: string;
68+
}
69+
70+
export interface SetupPageActionPayload {
71+
id: string;
72+
isFirstLoad?: boolean;
73+
pageWithMigratedDsl?: FetchPageResponse;
74+
packagePullStatus?: ApiResponse<PACKAGE_PULL_STATUS>;
75+
}
76+
77+
export interface FetchPublishedPageActionPayload {
78+
pageId: string;
79+
bustCache?: boolean;
80+
pageWithMigratedDsl?: FetchPageResponse;
81+
}
82+
83+
export interface FetchPublishedPageResourcesPayload {
84+
pageId: string;
85+
basePageId: string;
86+
}
87+
88+
export interface UpdatePageErrorPayload {
89+
request: UpdatePageRequest;
90+
error: unknown;
91+
}
92+
93+
export interface WidgetAddChild {
94+
widgetId: string;
95+
widgetName?: string;
96+
type: WidgetType;
97+
leftColumn: number;
98+
topRow: number;
99+
columns: number;
100+
rows: number;
101+
parentRowSpace: number;
102+
parentColumnSpace: number;
103+
newWidgetId: string;
104+
tabId: string;
105+
props?: Record<string, unknown>;
106+
dynamicBindingPathList?: DynamicPath[];
107+
}
108+
109+
export interface WidgetRemoveChild {
110+
widgetId: string;
111+
childWidgetId: string;
112+
}
113+
114+
export interface WidgetDelete {
115+
widgetId?: string;
116+
parentId?: string;
117+
disallowUndo?: boolean;
118+
isShortcut?: boolean;
119+
}
120+
121+
export interface MultipleWidgetDeletePayload {
122+
widgetIds: string[];
123+
disallowUndo?: boolean;
124+
isShortcut?: boolean;
125+
}
126+
127+
export interface WidgetResize {
128+
widgetId: string;
129+
parentId: string;
130+
leftColumn?: number;
131+
rightColumn?: number;
132+
topRow?: number;
133+
bottomRow?: number;
134+
mobileLeftColumn?: number;
135+
mobileRightColumn?: number;
136+
mobileTopRow?: number;
137+
mobileBottomRow?: number;
138+
snapColumnSpace: number;
139+
snapRowSpace: number;
140+
}
141+
142+
export interface ModalWidgetResize {
143+
height: number;
144+
width: number;
145+
widgetId: string;
146+
canvasWidgetId: string;
147+
}
148+
149+
export interface WidgetAddChildren {
150+
widgetId: string;
151+
children: Array<{
152+
type: WidgetType;
153+
widgetId: string;
154+
parentId: string;
155+
parentRowSpace: number;
156+
parentColumnSpace: number;
157+
leftColumn: number;
158+
rightColumn: number;
159+
topRow: number;
160+
bottomRow: number;
161+
isLoading: boolean;
162+
}>;
163+
}
164+
165+
export interface WidgetUpdateProperty {
166+
widgetId: string;
167+
propertyPath: string;
168+
propertyValue: unknown;
169+
}
170+
171+
export interface ReduxActionWithExtraParams<T> extends ReduxAction<T> {
172+
extraParams: Record<string, unknown>;
173+
}
174+
175+
export interface GenerateCRUDSuccess {
176+
page: {
177+
layouts: Array<Partial<PageLayout>>;
178+
id: string;
179+
baseId: string;
180+
name: string;
181+
isDefault?: boolean;
182+
slug: string;
183+
description?: string;
184+
};
185+
isNewPage: boolean;
186+
}
187+
188+
export interface GenerateTemplatePageActionPayload {
189+
pageId: string;
190+
tableName: string;
191+
datasourceId: string;
192+
applicationId: string;
193+
columns?: string[];
194+
searchColumn?: string;
195+
mode?: string;
196+
pluginSpecificParams?: Record<string, unknown>;
197+
}
198+
199+
export interface DeletePageActionPayload {
200+
id: string;
201+
}
202+
203+
export interface SetDefaultPageActionPayload {
204+
id: string;
205+
applicationId: string;
206+
}
207+
208+
export interface SetPageOrderActionPayload {
209+
pageId: string;
210+
order: number;
211+
applicationId: string;
212+
}
213+
214+
export interface SetupPageActionPayload {
215+
id: string;
216+
isFirstLoad?: boolean;
217+
pageWithMigratedDsl?: FetchPageResponse;
218+
packagePullStatus?: ApiResponse<PACKAGE_PULL_STATUS>;
219+
}
220+
221+
export interface SetupPublishedPageActionPayload {
222+
pageId: string;
223+
bustCache: boolean;
224+
pageWithMigratedDsl?: FetchPageResponse;
225+
}

‎app/client/src/reducers/entityReducers/canvasWidgetsReducer.ts

+6-18
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,19 @@ import {
1010
getCanvasWidgetHeightsToUpdate,
1111
} from "utils/WidgetSizeUtils";
1212
import { klona } from "klona";
13-
import type { UpdateCanvasPayload } from "actions/pageActions";
14-
import type { SetWidgetDynamicPropertyPayload } from "../../actions/controlActions";
13+
import type { UpdateCanvasPayload } from "actions/types/pageActions.types";
14+
import type { SetWidgetDynamicPropertyPayload } from "actions/types/controlActions.types";
1515

1616
/* This type is an object whose keys are widgetIds and values are arrays with property paths
1717
and property values
1818
For example:
1919
{ "xyz123": [{ propertyPath: "bottomRow", propertyValue: 20 }] }
2020
*/
21-
export type UpdateWidgetsPayload = Record<
22-
string,
23-
Array<{
24-
propertyPath: string;
25-
propertyValue: unknown;
26-
}>
27-
>;
21+
import type { UpdateWidgetsPayload, FlattenedWidgetProps, CanvasWidgetsReduxState } from "../types/canvasWidgets.types";
2822

2923
export const initialState: CanvasWidgetsReduxState = {};
3024

31-
export type FlattenedWidgetProps<orType = never> =
32-
| (WidgetProps & {
33-
children?: string[];
34-
})
35-
| orType;
25+
3626

3727
/**
3828
*
@@ -61,7 +51,7 @@ const canvasWidgetsReducer = createImmerReducer(initialState, {
6151
) => {
6252
const { widgets } = action.payload;
6353

64-
for (const [widgetId, widgetProps] of Object.entries(widgets)) {
54+
for (const [widgetId, widgetProps] of Object.entries(widgets) as [string, WidgetProps][]) {
6555
if (widgetProps.type === "CANVAS_WIDGET") {
6656
const bottomRow = getCanvasBottomRow(widgetId, widgets);
6757

@@ -168,8 +158,6 @@ const canvasWidgetsReducer = createImmerReducer(initialState, {
168158
},
169159
});
170160

171-
export interface CanvasWidgetsReduxState {
172-
[widgetId: string]: FlattenedWidgetProps;
173-
}
161+
174162

175163
export default canvasWidgetsReducer;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import type { WidgetProps } from "../../widgets/BaseWidget";
2+
3+
export type UpdateWidgetsPayload = Record<
4+
string,
5+
Array<{
6+
propertyPath: string;
7+
propertyValue: unknown;
8+
}>
9+
>;
10+
11+
export type FlattenedWidgetProps<orType = never> =
12+
| (WidgetProps & {
13+
children?: string[];
14+
})
15+
| orType;
16+
17+
export interface CanvasWidgetsReduxState {
18+
[widgetId: string]: FlattenedWidgetProps;
19+
}

‎app/client/src/sagas/InitSagas.ts

+9-41
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import {
1515
import type {
1616
ReduxAction,
1717
ReduxActionWithoutPayload,
18+
ReduxActionType,
1819
} from "ee/constants/ReduxActionConstants";
1920
import { ReduxActionTypes } from "ee/constants/ReduxActionConstants";
2021
import { resetApplicationWidgets, resetPageList } from "actions/pageActions";
@@ -92,51 +93,18 @@ import type { ApplicationPayload } from "entities/Application";
9293
import type { Page } from "entities/Page";
9394
import type { PACKAGE_PULL_STATUS } from "ee/constants/ModuleConstants";
9495

96+
import type {
97+
ReduxURLChangeAction,
98+
DeployConsolidatedApi,
99+
EditConsolidatedApi,
100+
InitConsolidatedApi,
101+
} from "./types/InitSagas.types";
102+
95103
export const URL_CHANGE_ACTIONS = [
96104
ReduxActionTypes.CURRENT_APPLICATION_NAME_UPDATE,
97105
ReduxActionTypes.UPDATE_PAGE_SUCCESS,
98106
ReduxActionTypes.UPDATE_APPLICATION_SUCCESS,
99-
];
100-
101-
export interface ReduxURLChangeAction {
102-
type: typeof URL_CHANGE_ACTIONS;
103-
payload: ApplicationPagePayload | ApplicationPayload | Page;
104-
}
105-
export interface DeployConsolidatedApi {
106-
productAlert: ApiResponse<ProductAlert>;
107-
tenantConfig: ApiResponse;
108-
featureFlags: ApiResponse<FeatureFlags>;
109-
userProfile: ApiResponse;
110-
pages: FetchApplicationResponse;
111-
publishedActions: ApiResponse<ActionViewMode[]>;
112-
publishedActionCollections: ApiResponse<JSCollection[]>;
113-
customJSLibraries: ApiResponse;
114-
pageWithMigratedDsl: FetchPageResponse;
115-
currentTheme: ApiResponse<AppTheme[]>;
116-
themes: ApiResponse<AppTheme>;
117-
}
118-
export interface EditConsolidatedApi {
119-
productAlert: ApiResponse<ProductAlert>;
120-
tenantConfig: ApiResponse;
121-
featureFlags: ApiResponse<FeatureFlags>;
122-
userProfile: ApiResponse;
123-
pages: FetchApplicationResponse;
124-
publishedActions: ApiResponse<ActionViewMode[]>;
125-
publishedActionCollections: ApiResponse<JSCollection[]>;
126-
customJSLibraries: ApiResponse;
127-
pageWithMigratedDsl: FetchPageResponse;
128-
currentTheme: ApiResponse<AppTheme[]>;
129-
themes: ApiResponse<AppTheme>;
130-
datasources: ApiResponse<Datasource[]>;
131-
pagesWithMigratedDsl: ApiResponse<FetchPageResponseData[]>;
132-
plugins: ApiResponse<Plugin[]>;
133-
mockDatasources: ApiResponse;
134-
pluginFormConfigs: ApiResponse<PluginFormPayload>[];
135-
unpublishedActions: ApiResponse<Action[]>;
136-
unpublishedActionCollections: ApiResponse<JSCollection[]>;
137-
packagePullStatus: ApiResponse<PACKAGE_PULL_STATUS>;
138-
}
139-
export type InitConsolidatedApi = DeployConsolidatedApi | EditConsolidatedApi;
107+
] as ReduxActionType[];
140108
export function* failFastApiCalls(
141109
triggerActions: Array<ReduxAction<unknown> | ReduxActionWithoutPayload>,
142110
successActions: string[],

‎app/client/src/sagas/WidgetBlueprintSagas.ts

+13-28
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
BlueprintOperationActionTypes,
44
type WidgetBlueprint,
55
} from "WidgetProvider/constants";
6-
import type { FlattenedWidgetProps } from "reducers/entityReducers/canvasWidgetsReducer";
6+
import type { FlattenedWidgetProps } from "../reducers/types/canvasWidgets.types";
77
import type { WidgetProps } from "widgets/BaseWidget";
88
import { generateReactKey } from "utils/generators";
99
import { call, select } from "redux-saga/effects";
@@ -59,28 +59,17 @@ export function* buildWidgetBlueprint(
5959
return widgetProps;
6060
}
6161

62-
export interface UpdatePropertyArgs {
63-
widgetId: string;
64-
propertyName: string;
65-
// TODO: Fix this the next time the file is edited
66-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
67-
propertyValue: any;
68-
}
69-
export type BlueprintOperationAddActionFn = (
70-
widget: WidgetProps & { children?: WidgetProps[] },
71-
) => Generator;
72-
export type BlueprintOperationModifyPropsFn = (
73-
widget: WidgetProps & { children?: WidgetProps[] },
74-
widgets: { [widgetId: string]: FlattenedWidgetProps },
75-
parent?: WidgetProps,
76-
layoutSystemType?: LayoutSystemTypes,
77-
addActionResult?: ActionData,
78-
) => UpdatePropertyArgs[] | undefined;
79-
80-
export interface ChildOperationFnResponse {
81-
widgets: Record<string, FlattenedWidgetProps>;
82-
message?: string;
83-
}
62+
import type {
63+
UpdatePropertyArgs,
64+
BlueprintOperationAddActionFn,
65+
BlueprintOperationModifyPropsFn,
66+
ChildOperationFnResponse,
67+
BlueprintOperationActionPayload,
68+
} from "./types/WidgetBlueprintSagas.types";
69+
70+
71+
72+
8473

8574
export type BlueprintOperationChildOperationsFn = (
8675
widgets: { [widgetId: string]: FlattenedWidgetProps },
@@ -109,11 +98,7 @@ export type BlueprintOperationType = keyof typeof BlueprintOperationTypes;
10998
export type BlueprintOperationActionType =
11099
keyof typeof BlueprintOperationActionTypes;
111100

112-
export interface BlueprintOperationActionPayload {
113-
pluginPackageName: PluginPackageName;
114-
actionConfig: Action;
115-
datasourceName?: string;
116-
}
101+
117102

118103
export interface BlueprintOperation {
119104
type: BlueprintOperationType;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
import type { ApplicationPagePayload, FetchApplicationResponse } from "../../ee/api/ApplicationApi";
2+
import type { ApplicationPayload } from "../../entities/Application";
3+
import type { Page } from "../../entities/Page";
4+
import type { ApiResponse } from "../../api/ApiResponses";
5+
import type { ProductAlert } from "../../reducers/uiReducers/usersReducer";
6+
import type { FeatureFlags } from "../../ee/entities/FeatureFlag";
7+
import type { Action, ActionViewMode } from "../../entities/Action";
8+
import type { JSCollection } from "../../entities/JSCollection";
9+
import type { FetchPageResponse, FetchPageResponseData } from "../../api/PageApi";
10+
import type { AppTheme } from "../../entities/AppTheming";
11+
import type { Datasource } from "../../entities/Datasource";
12+
import type { Plugin, PluginFormPayload } from "../../api/PluginApi";
13+
import type { PACKAGE_PULL_STATUS } from "../../ee/constants/ModuleConstants";
14+
import { ReduxActionTypes } from "../../ee/constants/ReduxActionConstants";
15+
16+
// Types are already exported with their declarations
17+
18+
const URL_CHANGE_ACTIONS = [
19+
ReduxActionTypes.CURRENT_APPLICATION_NAME_UPDATE,
20+
ReduxActionTypes.UPDATE_PAGE_SUCCESS,
21+
ReduxActionTypes.UPDATE_APPLICATION_SUCCESS,
22+
] as const;
23+
24+
export interface ReduxURLChangeAction {
25+
type: typeof URL_CHANGE_ACTIONS;
26+
payload: ApplicationPagePayload | ApplicationPayload | Page;
27+
}
28+
29+
export interface DeployConsolidatedApi {
30+
productAlert: ApiResponse<ProductAlert>;
31+
tenantConfig: ApiResponse;
32+
featureFlags: ApiResponse<FeatureFlags>;
33+
userProfile: ApiResponse;
34+
pages: FetchApplicationResponse;
35+
publishedActions: ApiResponse<ActionViewMode[]>;
36+
publishedActionCollections: ApiResponse<JSCollection[]>;
37+
customJSLibraries: ApiResponse;
38+
pageWithMigratedDsl: FetchPageResponse;
39+
currentTheme: ApiResponse<AppTheme[]>;
40+
themes: ApiResponse<AppTheme>;
41+
}
42+
43+
export interface EditConsolidatedApi {
44+
productAlert: ApiResponse<ProductAlert>;
45+
tenantConfig: ApiResponse;
46+
featureFlags: ApiResponse<FeatureFlags>;
47+
userProfile: ApiResponse;
48+
pages: FetchApplicationResponse;
49+
publishedActions: ApiResponse<ActionViewMode[]>;
50+
publishedActionCollections: ApiResponse<JSCollection[]>;
51+
customJSLibraries: ApiResponse;
52+
pageWithMigratedDsl: FetchPageResponse;
53+
currentTheme: ApiResponse<AppTheme[]>;
54+
themes: ApiResponse<AppTheme>;
55+
datasources: ApiResponse<Datasource[]>;
56+
pagesWithMigratedDsl: ApiResponse<FetchPageResponseData[]>;
57+
plugins: ApiResponse<Plugin[]>;
58+
mockDatasources: ApiResponse;
59+
pluginFormConfigs: ApiResponse<PluginFormPayload>[];
60+
unpublishedActions: ApiResponse<Action[]>;
61+
unpublishedActionCollections: ApiResponse<JSCollection[]>;
62+
packagePullStatus: ApiResponse<PACKAGE_PULL_STATUS>;
63+
}
64+
65+
export type InitConsolidatedApi = DeployConsolidatedApi | EditConsolidatedApi;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import type { WidgetProps } from "../../widgets/BaseWidget";
2+
import type { FlattenedWidgetProps } from "../../reducers/types/canvasWidgets.types";
3+
import type { LayoutSystemTypes } from "../../layoutSystems/types";
4+
import type { ActionData } from "../../ee/reducers/entityReducers/actionsReducer";
5+
import type { Action, PluginPackageName } from "../../entities/Action";
6+
7+
export interface UpdatePropertyArgs {
8+
widgetId: string;
9+
propertyName: string;
10+
propertyValue: any;
11+
}
12+
13+
export type BlueprintOperationAddActionFn = (
14+
widget: WidgetProps & { children?: WidgetProps[] },
15+
) => Generator;
16+
17+
export type BlueprintOperationModifyPropsFn = (
18+
widget: WidgetProps & { children?: WidgetProps[] },
19+
widgets: { [widgetId: string]: FlattenedWidgetProps },
20+
parent?: WidgetProps,
21+
layoutSystemType?: LayoutSystemTypes,
22+
addActionResult?: ActionData,
23+
) => UpdatePropertyArgs[] | undefined;
24+
25+
export interface ChildOperationFnResponse {
26+
widgets: Record<string, FlattenedWidgetProps>;
27+
message?: string;
28+
}
29+
30+
export interface BlueprintOperationActionPayload {
31+
pluginPackageName: PluginPackageName;
32+
actionConfig: Action;
33+
datasourceName?: string;
34+
}

0 commit comments

Comments
 (0)
Please sign in to comment.