import { createReducer } from "utils/AppsmithUtils"; import { WidgetProps } from "widgets/BaseWidget"; import { ContainerWidgetProps } from "widgets/ContainerWidget"; import { ReduxAction, ReduxActionTypes, PageListPayload, } from "constants/ReduxActionConstants"; import { FetchPublishedPageSuccessPayload } from "actions/pageActions"; const initialState: AppViewReduxState = { isFetchingPage: false, initialized: false, pages: [], pageWidgetId: "0", }; const appViewReducer = createReducer(initialState, { [ReduxActionTypes.INITIALIZE_PAGE_VIEWER]: (state: AppViewReduxState) => { return { ...state, initialized: false }; }, [ReduxActionTypes.INITIALIZE_PAGE_VIEWER_SUCCESS]: ( state: AppViewReduxState, ) => { return { ...state, initialized: true }; }, [ReduxActionTypes.FETCH_PUBLISHED_PAGE_INIT]: (state: AppViewReduxState) => { return { ...state, dsl: undefined, isFetchingPage: true }; }, [ReduxActionTypes.FETCH_PUBLISHED_PAGE_ERROR]: (state: AppViewReduxState) => { return { ...state, isFetchingPage: false }; }, [ReduxActionTypes.FETCH_PUBLISHED_PAGE_SUCCESS]: ( state: AppViewReduxState, action: ReduxAction, ) => { return { ...state, dsl: action.payload.dsl, isFetchingPage: false, pageWidgetId: action.payload.pageWidgetId, }; }, }); export interface AppViewReduxState { initialized: boolean; dsl?: ContainerWidgetProps; isFetchingPage: boolean; currentLayoutId?: string; pages: PageListPayload; pageWidgetId: string; } export default appViewReducer;