PromucFlow_constructor/app/client/src/sagas/selectors.tsx
Aswath K f9e17f670f
fix: All property control renders when JS toggle button is clicked (#18905)
Fix the performance issue that happens when we click the JS toggle button in property pane.
2022-12-19 15:45:50 +05:30

211 lines
6.1 KiB
TypeScript

import { AppState } from "@appsmith/reducers";
import { createSelector } from "reselect";
import memoize from "proxy-memoize";
import {
CanvasWidgetsReduxState,
FlattenedWidgetProps,
} from "reducers/entityReducers/canvasWidgetsReducer";
import { WidgetProps } from "widgets/BaseWidget";
import _, { omit } from "lodash";
import {
WidgetType,
WIDGET_PROPS_TO_SKIP_FROM_EVAL,
} from "constants/WidgetConstants";
import { ActionData } from "reducers/entityReducers/actionsReducer";
import { Page } from "@appsmith/constants/ReduxActionConstants";
import { getActions, getPlugins } from "selectors/entitiesSelector";
import { Plugin } from "api/PluginApi";
import { DataTreeForActionCreator } from "components/editorComponents/ActionCreator/types";
export const getWidgets = (state: AppState): CanvasWidgetsReduxState => {
return state.entities.canvasWidgets;
};
export const getWidgetsForEval = createSelector(getWidgets, (widgets) => {
const widgetForEval: CanvasWidgetsReduxState = {};
for (const key of Object.keys(widgets)) {
widgetForEval[key] = omit(
widgets[key],
Object.keys(WIDGET_PROPS_TO_SKIP_FROM_EVAL),
) as FlattenedWidgetProps;
}
return widgetForEval;
});
export const getWidgetsMeta = (state: AppState) => state.entities.meta;
export const getWidgetMetaProps = createSelector(
[getWidgetsMeta, (_state: AppState, widgetId: string) => widgetId],
(metaState, widgetId: string) => metaState[widgetId],
);
export const getWidgetByID = (widgetId: string) => {
return createSelector(
getWidgets,
(canvasWidgets: { [widgetId: string]: FlattenedWidgetProps }) => {
return canvasWidgets[widgetId];
},
);
};
export const getWidget = (state: AppState, widgetId: string): WidgetProps => {
return state.entities.canvasWidgets[widgetId];
};
export const getWidgetIdsByType = (state: AppState, type: WidgetType) => {
return Object.values(state.entities.canvasWidgets)
.filter((widget: FlattenedWidgetProps) => widget.type === type)
.map((widget: FlattenedWidgetProps) => widget.widgetId);
};
export const getWidgetOptionsTree = memoize((state: AppState) =>
Object.values(state.entities.canvasWidgets)
.filter((w) => w.type !== "CANVAS_WIDGET" && w.type !== "BUTTON_WIDGET")
.map((w) => {
return {
label: w.widgetName,
id: w.widgetName,
value: `"${w.widgetName}"`,
};
}),
);
export const getDataTreeForActionCreator = memoize((state: AppState) => {
const dataTree: DataTreeForActionCreator = {};
Object.keys(state.evaluations.tree).forEach((key) => {
const value: any = state.evaluations.tree[key];
if (value.meta)
dataTree[key] = {
meta: value.meta,
};
if (value.ENTITY_TYPE)
dataTree[key] = {
ENTITY_TYPE: value.ENTITY_TYPE,
};
});
return dataTree;
});
export const getEditorConfigs = (
state: AppState,
): { applicationId: string; pageId: string; layoutId: string } | undefined => {
const pageId = state.entities.pageList.currentPageId;
const layoutId = state.ui.editor.currentLayoutId;
const applicationId = state.ui.applications.currentApplication?.id;
if (!pageId || !layoutId || !applicationId) return undefined;
return { pageId, layoutId, applicationId };
};
export const getDefaultPageId = (state: AppState): string =>
state.entities.pageList.defaultPageId;
export const getExistingWidgetNames = createSelector(
getWidgets,
(widgets: { [widgetId: string]: FlattenedWidgetProps }) => {
return Object.values(widgets).map((widget) => widget.widgetName);
},
);
export const currentPageId = (state: AppState) => {
return state.entities.pageList.currentPageId;
};
export const getExistingActionNames = createSelector(
getActions,
currentPageId,
(actions: ActionData[], pageId?: string) => {
return _.compact(
actions.map((action: ActionData) => {
return action.config.pageId === pageId ? action.config.name : undefined;
}),
);
},
);
export const getPluginIdToImageLocation = createSelector(
getPlugins,
(plugins) =>
plugins.reduce((acc: any, p: Plugin) => {
acc[p.id] = p.iconLocation;
return acc;
}, {}),
);
/**
* returns a objects of existing page name in data tree
*
* @param state
*/
export const getExistingPageNames = (state: AppState) => {
const map: Record<string, any> = {};
state.entities.pageList.pages.map((page: Page) => {
map[page.pageName] = page.pageName;
});
return map;
};
export const getWidgetByName = (
state: AppState,
widgetName: string,
): FlattenedWidgetProps | undefined => {
const widgets = state.entities.canvasWidgets;
return _.find(
Object.values(widgets),
(widget) => widget.widgetName === widgetName,
);
};
export const getAllPageIds = (state: AppState) => {
return state.entities.pageList.pages.map((page) => page.pageId);
};
export const getPluginIdOfPackageName = (
state: AppState,
name: string,
): string | undefined => {
const plugins = state.entities.plugins.list;
const plugin = plugins.find((plugin) => plugin.packageName === name);
if (plugin) return plugin.id;
return undefined;
};
export const getDragDetails = (state: AppState) => {
return state.ui.widgetDragResize.dragDetails;
};
export const getSelectedWidget = (
state: AppState,
): FlattenedWidgetProps | undefined => {
const selectedWidgetId = state.ui.widgetDragResize.lastSelectedWidget;
if (!selectedWidgetId) return;
return state.entities.canvasWidgets[selectedWidgetId];
};
export const getFocusedWidget = (state: AppState) => {
const focusedWidgetId = state.ui.widgetDragResize.focusedWidget;
if (!focusedWidgetId) return;
return state.entities.canvasWidgets[focusedWidgetId];
};
export const getWidgetImmediateChildren = createSelector(
getWidget,
(widget: WidgetProps) => {
const childrenIds: string[] = [];
if (widget === undefined) {
return [];
}
const { children = [] } = widget;
if (children && children.length) {
for (const childIndex in children) {
if (children.hasOwnProperty(childIndex)) {
const child = children[childIndex];
childrenIds.push(child);
}
}
}
return childrenIds;
},
);