@@ -9,19 +9,15 @@ import {
9
9
ReduxActionTypes ,
10
10
WidgetReduxActionTypes ,
11
11
} from "ee/constants/ReduxActionConstants" ;
12
- import type { DynamicPath } from "utils/DynamicBindingUtils" ;
13
12
import AnalyticsUtil from "ee/utils/AnalyticsUtil" ;
14
13
import type { WidgetOperation , WidgetProps } from "widgets/BaseWidget" ;
15
14
import type {
16
- FetchPageResponse ,
17
- PageLayout ,
18
15
SavePageResponse ,
19
- UpdatePageRequest ,
20
16
UpdatePageResponse ,
17
+ FetchPageResponse ,
18
+ PageLayout ,
21
19
} from "api/PageApi" ;
22
20
import type { UrlDataState } from "reducers/entityReducers/appReducer" ;
23
- import type { APP_MODE } from "entities/App" ;
24
- import type { CanvasWidgetsReduxState } from "reducers/entityReducers/canvasWidgetsReducer" ;
25
21
import type { ENTITY_TYPE } from "ee/entities/AppsmithConsole/utils" ;
26
22
import type { Replayable } from "entities/Replay/ReplayEntity/ReplayEditor" ;
27
23
import * as Sentry from "@sentry/react" ;
@@ -30,26 +26,42 @@ import type {
30
26
LayoutOnLoadActionErrors ,
31
27
PageAction ,
32
28
} 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" ;
35
30
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" ;
36
63
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
- }
47
64
48
- export interface FetchPageActionPayload {
49
- id : string ;
50
- isFirstLoad ?: boolean ;
51
- pageWithMigratedDsl ?: FetchPageResponse ;
52
- }
53
65
54
66
export const fetchPageAction = (
55
67
pageId : string ,
@@ -67,17 +79,6 @@ export const fetchPageAction = (
67
79
} ;
68
80
69
81
// 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
-
81
82
export const fetchPublishedPageAction = (
82
83
pageId : string ,
83
84
bustCache = false ,
@@ -119,12 +120,6 @@ export const fetchAllPageEntityCompletion = (
119
120
payload : undefined ,
120
121
} ) ;
121
122
122
- export interface UpdateCurrentPagePayload {
123
- id : string ;
124
- slug ?: string ;
125
- permissions ?: string [ ] ;
126
- }
127
-
128
123
export const updateCurrentPage = (
129
124
id : string ,
130
125
slug ?: string ,
@@ -134,19 +129,6 @@ export const updateCurrentPage = (
134
129
payload : { id, slug, permissions } ,
135
130
} ) ;
136
131
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
-
150
132
export const initCanvasLayout = (
151
133
payload : UpdateCanvasPayload ,
152
134
) : ReduxAction < UpdateCanvasPayload > => {
@@ -182,7 +164,7 @@ export const deletePageSuccess = () => {
182
164
183
165
export const updateAndSaveLayout = (
184
166
widgets : CanvasWidgetsReduxState ,
185
- options : updateLayoutOptions = { } ,
167
+ options : UpdateLayoutOptions = { } ,
186
168
) => {
187
169
const { isRetry, shouldReplay, updatedWidgetIds } = options ;
188
170
@@ -199,12 +181,6 @@ export const saveLayout = (isRetry?: boolean) => {
199
181
} ;
200
182
} ;
201
183
202
- export interface CreatePageActionPayload {
203
- applicationId : string ;
204
- name : string ;
205
- layouts : Partial < PageLayout > [ ] ;
206
- }
207
-
208
184
export const createPageAction = (
209
185
applicationId : string ,
210
186
pageName : string ,
@@ -250,11 +226,6 @@ export const createNewPageFromEntities = (
250
226
} ;
251
227
252
228
// cloning a page
253
- export interface ClonePageActionPayload {
254
- id : string ;
255
- blockNavigation ?: boolean ;
256
- }
257
-
258
229
export const clonePageInit = (
259
230
pageId : string ,
260
231
blockNavigation ?: boolean ,
@@ -268,16 +239,6 @@ export const clonePageInit = (
268
239
} ;
269
240
} ;
270
241
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
-
281
242
export const clonePageSuccess = ( {
282
243
basePageId,
283
244
layoutId,
@@ -351,92 +312,7 @@ export const updatePageError = (payload: UpdatePageErrorPayload) => {
351
312
} ;
352
313
} ;
353
314
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
- }
394
315
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
- }
440
316
441
317
export const updateWidget = (
442
318
operation : WidgetOperation ,
@@ -482,26 +358,7 @@ export const updateAppStore = (
482
358
} ;
483
359
} ;
484
360
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
- }
490
361
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
- }
505
362
506
363
export const generateTemplateSuccess = ( payload : GenerateCRUDSuccess ) => {
507
364
return {
@@ -516,18 +373,7 @@ export const generateTemplateError = () => {
516
373
} ;
517
374
} ;
518
375
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
+
531
377
532
378
export const generateTemplateToUpdatePage = ( {
533
379
applicationId,
@@ -587,10 +433,6 @@ export function redoAction() {
587
433
588
434
// delete a page
589
435
590
- export interface DeletePageActionPayload {
591
- id : string ;
592
- }
593
-
594
436
export const deletePageAction = (
595
437
pageId : string ,
596
438
) : ReduxAction < DeletePageActionPayload > => {
@@ -602,11 +444,6 @@ export const deletePageAction = (
602
444
} ;
603
445
} ;
604
446
605
- export interface SetDefaultPageActionPayload {
606
- id : string ;
607
- applicationId : string ;
608
- }
609
-
610
447
export const setPageAsDefault = (
611
448
pageId : string ,
612
449
applicationId : string ,
@@ -620,12 +457,6 @@ export const setPageAsDefault = (
620
457
} ;
621
458
} ;
622
459
623
- export interface SetPageOrderActionPayload {
624
- pageId : string ;
625
- order : number ;
626
- applicationId : string ;
627
- }
628
-
629
460
export const setPageOrder = (
630
461
applicationId : string ,
631
462
pageId : string ,
@@ -655,13 +486,6 @@ export const fetchPageDSLs = (payload?: any) => ({
655
486
type : ReduxActionTypes . POPULATE_PAGEDSLS_INIT ,
656
487
payload,
657
488
} ) ;
658
- export interface SetupPageActionPayload {
659
- id : string ;
660
- isFirstLoad ?: boolean ;
661
- pageWithMigratedDsl ?: FetchPageResponse ;
662
- packagePullStatus ?: ApiResponse < PACKAGE_PULL_STATUS > ;
663
- }
664
-
665
489
export const setupPageAction = ( {
666
490
id,
667
491
isFirstLoad = false ,
@@ -677,12 +501,6 @@ export const setupPageAction = ({
677
501
} ,
678
502
} ) ;
679
503
680
- export interface SetupPublishedPageActionPayload {
681
- pageId : string ;
682
- bustCache : boolean ;
683
- pageWithMigratedDsl ?: FetchPageResponse ;
684
- }
685
-
686
504
export const setupPublishedPage = (
687
505
pageId : string ,
688
506
bustCache = false ,
0 commit comments