* dip * dip * scroll * fixes * dip * dip * dip * dip * dip * dip * dip * dip * dip * dip * dip * dip * dip * dip * dip * dip * dip * dip * solve for canvas glitches * dip * dip * dip * adjust scroll speed * dip * dip(code clean up) * dip * dip * ---dip * dip * dip * dip * middle ware for dropping multiple widgets. * adding scroll to drag for canvas selection. * fixing drag disabled and modal widget(detach from layout) drops * firefox and safari fixes * rebase conflicts. * fixing broken specs. * fixing specs and adding jest tests. * show border and disable resize when multiple widgets are selected. * selection box grab cursor * merge conflicts. * code clean up * fixing specs. * fixed a bug and failed specs. * fixing rerenders. * code clean up * code review comments * always have the drag point inside the widget. * fetching snap spaces instead of calculating. * remove widget_move action * fixing bugs with add widget parent height updation. * fixing specs. * List widget conflict fixes. * fixing canvas drop persistence. * Adding click to drag for modals and fixing few issues.
190 lines
5.3 KiB
TypeScript
190 lines
5.3 KiB
TypeScript
import { AppState } from "reducers";
|
|
import { createSelector } from "reselect";
|
|
import { FlattenedWidgetProps } from "reducers/entityReducers/canvasWidgetsReducer";
|
|
import { WidgetProps } from "widgets/BaseWidget";
|
|
import _ from "lodash";
|
|
import { WidgetType } from "constants/WidgetConstants";
|
|
import { ActionData } from "reducers/entityReducers/actionsReducer";
|
|
import { Page } from "constants/ReduxActionConstants";
|
|
import { getActions, getPlugins } from "../selectors/entitiesSelector";
|
|
import { Plugin } from "api/PluginApi";
|
|
|
|
export const getWidgets = (
|
|
state: AppState,
|
|
): { [widgetId: string]: FlattenedWidgetProps } => {
|
|
return state.entities.canvasWidgets;
|
|
};
|
|
|
|
export const getWidgetsMeta = (state: AppState) => state.entities.meta;
|
|
export const getWidgetMetaProps = (state: AppState, widgetId: string) =>
|
|
state.entities.meta[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 = createSelector(getWidgets, (widgets) =>
|
|
Object.values(widgets)
|
|
.filter((w) => w.type !== "CANVAS_WIDGET" && w.type !== "BUTTON_WIDGET")
|
|
.map((w) => {
|
|
return {
|
|
label: w.widgetName,
|
|
id: w.widgetName,
|
|
value: `"${w.widgetName}"`,
|
|
};
|
|
}),
|
|
);
|
|
|
|
export const getEditorConfigs = (
|
|
state: AppState,
|
|
): { pageId: string; layoutId: string } | undefined => {
|
|
const pageId = state.entities.pageList.currentPageId;
|
|
const layoutId = state.ui.editor.currentLayoutId;
|
|
if (!pageId || !layoutId) return undefined;
|
|
return { pageId, layoutId };
|
|
};
|
|
|
|
export const getDefaultWidgetConfig = (
|
|
state: AppState,
|
|
type: WidgetType,
|
|
): Partial<WidgetProps> => {
|
|
const configs = state.entities.widgetConfig.config;
|
|
if (configs.hasOwnProperty(type)) {
|
|
const widgetConfig = { ...configs[type] };
|
|
return widgetConfig;
|
|
}
|
|
return {};
|
|
};
|
|
|
|
export const getWidgetNamePrefix = (
|
|
state: AppState,
|
|
type: WidgetType,
|
|
): string => {
|
|
return state.entities.widgetConfig.config[type].widgetName;
|
|
};
|
|
|
|
export const getDefaultPageId = (state: AppState): string | undefined =>
|
|
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 getWidgetById = (
|
|
state: AppState,
|
|
id: string,
|
|
): FlattenedWidgetProps | undefined => {
|
|
const widgets = state.entities.canvasWidgets;
|
|
return widgets[id];
|
|
};
|
|
|
|
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 = _.find(plugins, { packageName: name });
|
|
if (plugin) return plugin.id;
|
|
return undefined;
|
|
};
|
|
|
|
export const getDragDetails = (state: AppState) => {
|
|
return state.ui.widgetDragResize.dragDetails;
|
|
};
|
|
|
|
export const getSelectedWidget = (state: AppState) => {
|
|
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;
|
|
},
|
|
);
|