Removed logic for closing modals and refactored the code for better readability.

This commit is contained in:
devanshu052000 2025-03-04 03:09:50 +05:30
parent 6dd933fa63
commit 46ab01fead
2 changed files with 31 additions and 40 deletions

View file

@ -9,6 +9,7 @@ const useCallbackActions = () => {
const currentPageComponents = useStore((state) => state?.getCurrentPageComponents(), shallow);
const shouldFreeze = useStore((state) => state.getShouldFreeze());
const runQuery = useStore((state) => state.queryPanel.runQuery);
const getComponentIdToAutoScroll = useStore((state) => state.getComponentIdToAutoScroll);
const handleRemoveComponent = (component) => {
deleteComponents([component.id]);
@ -31,7 +32,8 @@ const useCallbackActions = () => {
};
const handleAutoScrollToComponent = (data) => {
const computedComponentId = useStore.getState().getComponentIdToAutoScroll(data.id);
const computedComponentId = getComponentIdToAutoScroll(data.id);
if (!computedComponentId) return;
setSelectedComponents([computedComponentId]);
const target = document.getElementById(computedComponentId);
target.scrollIntoView({ behavior: 'smooth', block: 'nearest' });

View file

@ -41,24 +41,22 @@ export const createLeftSideBarSlice = (set, get) => ({
const { getCurrentPageComponents, getAllExposedValues, modalsOpenOnCanvas } = get();
const currentPageComponents = getCurrentPageComponents();
let candidate = componentId;
let targetComponentId = componentId;
let current = componentId;
const visited = new Set();
let closedUnusedModals = false; // Flag to check if we have closed all unused modals on the canvas
let isInsideOpenModal = false;
// Bubble up to the outermost parent to find the target component
// eslint-disable-next-line no-constant-condition
while (true) {
if (visited.has(current)) break;
visited.add(current);
const component = currentPageComponents?.[current];
if (!component) break;
const parentId = component?.component?.parent;
const parentId = currentPageComponents?.[current]?.component?.parent;
if (!parentId) break;
let isParentInactive = false;
let newCandidate = candidate;
let isComponentVisibleInParent = true;
let nextPossibleCandidate = parentId;
// If the component exists inside a tab component
const regForTabs = /-(?!\d{12}$)\d+$/; // Parent id for tabs follow the format 'id-index' and index is not UUIDv4 id segment
@ -67,55 +65,46 @@ export const createLeftSideBarSlice = (set, get) => ({
const tabIndex = Number(parentId.match(reg)[1]); // Tab index inside which the component exists
const tabId = parentId.replace(regForTabs, ''); // Extract tab id from parent id
const { currentTab } = getAllExposedValues().components[tabId];
const { currentTab } = getAllExposedValues().components?.[tabId] || {};
const activeTabIndex = Number(currentTab);
nextPossibleCandidate = tabId;
if (tabIndex !== activeTabIndex) {
isParentInactive = true;
newCandidate = tabId;
isComponentVisibleInParent = false;
}
}
const parentExposedValues = getAllExposedValues().components[parentId];
// If the component exists inside a modal component
if (currentPageComponents?.[parentId]?.component?.component === 'Modal') {
// Close all modals that are open on the canvas until we get to the parent modal
if (modalsOpenOnCanvas.length > 0 && !closedUnusedModals) {
if (!modalsOpenOnCanvas.includes(parentId)) {
modalsOpenOnCanvas.map((modalId) => getAllExposedValues().components[modalId]?.close());
} else {
const idx = modalsOpenOnCanvas.indexOf(parentId);
modalsOpenOnCanvas.slice(idx + 1).map((modalId) => getAllExposedValues().components[modalId]?.close());
}
closedUnusedModals = true;
}
if (!parentExposedValues?.show) {
isParentInactive = true;
newCandidate = parentId;
nextPossibleCandidate = parentId;
if (!modalsOpenOnCanvas.includes(parentId)) {
isComponentVisibleInParent = false;
}
}
// If the component exists inside the kanban component's modal
if (parentId.endsWith('-modal')) {
isParentInactive = true;
newCandidate = parentId.replace(/-modal$/, ''); // Extract kanban id from parent id
nextPossibleCandidate = parentId.replace(/-modal$/, ''); // Extract kanban id from parent id
if (!modalsOpenOnCanvas.includes(parentId)) {
isComponentVisibleInParent = false;
}
}
if (isParentInactive) {
candidate = newCandidate;
current = newCandidate;
} else {
current = parentId;
// If the open modal contains the component
if (modalsOpenOnCanvas[modalsOpenOnCanvas.length - 1] === parentId) {
isInsideOpenModal = true;
}
if (!isComponentVisibleInParent) {
targetComponentId = nextPossibleCandidate;
}
current = nextPossibleCandidate;
}
// Close all modals that are open on the canvas if the component is not inside any of the modals
if (modalsOpenOnCanvas.length > 0 && !closedUnusedModals) {
modalsOpenOnCanvas.map((modalId) => getAllExposedValues().components[modalId]?.close());
if (modalsOpenOnCanvas.length > 0 && !isInsideOpenModal) {
return undefined;
}
return candidate;
return targetComponentId;
},
});