PromucFlow_constructor/app/client/src/sagas/IDESaga.tsx
Hetu Nandu 22688f994f
chore: AppIDE Folder Structure (#39165)
## Description

Updates the folder structure and file breakup according to the new IDE
folder structure

Fixes #39048
Fixes #39049
Fixes #39051


## 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/13352717132>
> Commit: 54cd1a3b4679ae8bd0687ddb063692a26be1d7b9
> <a
href="https://internal.appsmith.com/app/cypress-dashboard/rundetails-65890b3c81d7400d08fa9ee5?branch=master&workflowId=13352717132&attempt=1"
target="_blank">Cypress dashboard</a>.
> Tags: `@tag.All`
> Spec:
> <hr>Sun, 16 Feb 2025 08:44:30 UTC
<!-- end of auto-generated comment: Cypress test results  -->


## Communication
Should the DevRel and Marketing teams inform users about this change?
- [ ] Yes
- [ ] No
2025-02-17 10:34:23 +03:00

201 lines
5.9 KiB
TypeScript

import type { FocusEntityInfo } from "navigation/FocusEntity";
import { FocusEntity, identifyEntityFromPath } from "navigation/FocusEntity";
import { all, call, put, select, takeEvery } from "redux-saga/effects";
import { getJSTabs, getQueryTabs } from "selectors/ideSelectors";
import {
setIdeEditorViewMode,
setJSTabs,
setQueryTabs,
} from "actions/ideActions";
import history from "../utils/history";
import {
jsCollectionAddURL,
jsCollectionListURL,
queryAddURL,
queryListURL,
} from "ee/RouteBuilder";
import type { EntityItem } from "ee/IDE/Interfaces/EntityItem";
import { getQueryEntityItemUrl } from "ee/pages/AppIDE/layouts/routers/utils/getQueryEntityItemUrl";
import { getJSEntityItemUrl } from "ee/pages/AppIDE/layouts/routers/utils/getJSEntityItemUrl";
import log from "loglevel";
import type { ReduxAction } from "actions/ReduxActionTypes";
import { ReduxActionTypes } from "ee/constants/ReduxActionConstants";
import type { EditorViewMode } from "IDE/Interfaces/EditorTypes";
import { retrieveIDEViewMode, storeIDEViewMode } from "utils/storage";
import {
selectJSSegmentEditorTabs,
selectQuerySegmentEditorTabs,
} from "ee/selectors/appIDESelectors";
import { getCurrentBasePageId } from "selectors/editorSelectors";
export function* updateIDETabsOnRouteChangeSaga(entityInfo: FocusEntityInfo) {
const { entity, id, params } = entityInfo;
if (!params.basePageId) return;
if (
entity === FocusEntity.JS_OBJECT ||
entity === FocusEntity.JS_MODULE_INSTANCE
) {
const jsTabs: string[] = yield select(getJSTabs);
const newTabs: string[] = yield call(getUpdatedTabs, id, jsTabs);
yield put(setJSTabs(newTabs, params.basePageId));
}
if (
entity === FocusEntity.QUERY ||
entity === FocusEntity.QUERY_MODULE_INSTANCE
) {
const queryTabs: string[] = yield select(getQueryTabs);
const newTabs: string[] = yield call(getUpdatedTabs, id, queryTabs);
yield put(setQueryTabs(newTabs, params.basePageId));
}
}
function* getUpdatedTabs(newId: string, currentTabs: string[]) {
if (currentTabs.includes(newId)) return currentTabs;
const newTabs = [...currentTabs, newId];
return newTabs;
}
export function* handleJSEntityRedirect(deletedId: string) {
const basePageId: string = yield select(getCurrentBasePageId);
const jsTabs: EntityItem[] = yield select(selectJSSegmentEditorTabs);
const redirectAction = getNextEntityAfterRemove(deletedId, jsTabs);
switch (redirectAction.action) {
case RedirectAction.LIST:
history.push(jsCollectionListURL({ basePageId }));
break;
case RedirectAction.ITEM:
if (!redirectAction.payload) {
log.error("Redirect item does not have a payload");
history.push(jsCollectionAddURL({ basePageId }));
break;
}
const { payload } = redirectAction;
history.push(getJSEntityItemUrl(payload, basePageId));
break;
}
}
export function* handleQueryEntityRedirect(deletedId: string) {
const basePageId: string = yield select(getCurrentBasePageId);
const queryTabs: EntityItem[] = yield select(selectQuerySegmentEditorTabs);
const redirectAction = getNextEntityAfterRemove(deletedId, queryTabs);
switch (redirectAction.action) {
case RedirectAction.LIST:
history.push(queryListURL({ basePageId }));
break;
case RedirectAction.ITEM:
if (!redirectAction.payload) {
history.push(queryAddURL({ basePageId }));
log.error("Redirect item does not have a payload");
break;
}
const { payload } = redirectAction;
history.push(getQueryEntityItemUrl(payload, basePageId));
break;
}
}
/**
* Adds custom redirect logic to redirect after an item is deleted
* 1. Do not navigate if the deleted item is not selected
* 2. If it was the only item, navigate to the list url, to show the blank state
* 3. If there are other items, navigate to an item close to the current one
* **/
export enum RedirectAction {
NA = "NA", // No action is needed
LIST = "LIST", // Navigate to a creation URL
ITEM = "ITEM", // Navigate to this item
}
interface RedirectActionDescription {
action: RedirectAction;
payload?: EntityItem;
}
export function getNextEntityAfterRemove(
removedId: string,
tabs: EntityItem[],
): RedirectActionDescription {
const currentSelectedEntity = identifyEntityFromPath(
window.location.pathname,
);
const isSelectedActionRemoved = currentSelectedEntity.id === removedId;
// If removed item is not currently selected, don't redirect
if (!isSelectedActionRemoved) {
return {
action: RedirectAction.NA,
};
}
const indexOfTab = tabs.findIndex((item) => item.key === removedId);
switch (indexOfTab) {
case -1:
// If no other action is remaining, navigate to the creation url
return {
action: RedirectAction.LIST,
};
case 0:
// if the removed item is first item, then if tabs present, tabs + 1
// else otherItems[0] -> TODO: consider changing this logic after discussion with
// design team. May be new listing UI for side by side
if (tabs.length > 1) {
return {
action: RedirectAction.ITEM,
payload: tabs[1],
};
} else {
return {
action: RedirectAction.LIST,
};
}
default:
return {
action: RedirectAction.ITEM,
payload: tabs[indexOfTab - 1],
};
}
}
function* storeIDEViewChangeSaga(
action: ReduxAction<{ view: EditorViewMode }>,
) {
yield call(storeIDEViewMode, action.payload.view);
}
function* restoreIDEViewModeSaga() {
const storedState: EditorViewMode = yield call(retrieveIDEViewMode);
if (storedState) {
yield put(setIdeEditorViewMode(storedState));
}
}
export default function* root() {
yield all([
takeEvery(
ReduxActionTypes.SET_IDE_EDITOR_VIEW_MODE,
storeIDEViewChangeSaga,
),
takeEvery(
ReduxActionTypes.RESTORE_IDE_EDITOR_VIEW_MODE,
restoreIDEViewModeSaga,
),
]);
}