* dip * dip * Cleaning up grid density positioning. * dip * dip * dip * dip * code clean up * dip * dip(restructuring widget selection) * Deselect parents and children of a widget when user multi selects. * dip * dip * dip * dip * dip * fixing a bad merge * fixing tests * adding jest tests. * common util * dip * dip * fixes * restrict in deploy mode. * fixing dynamic layout. * fixing tests. * on paste fix. * fixing specs. * addressing code review comments * dip * dip * dip * fixing specs.
127 lines
3.1 KiB
TypeScript
127 lines
3.1 KiB
TypeScript
import { getCanvasWidgetsPayload } from "sagas/PageSagas";
|
|
import { updateCurrentPage } from "actions/pageActions";
|
|
import { editorInitializer } from "utils/EditorUtils";
|
|
import {
|
|
PageListPayload,
|
|
ReduxActionTypes,
|
|
} from "constants/ReduxActionConstants";
|
|
import { initEditor } from "actions/initActions";
|
|
import { useDispatch } from "react-redux";
|
|
import { extractCurrentDSL } from "utils/WidgetPropsUtils";
|
|
import { setAppMode } from "actions/pageActions";
|
|
import { APP_MODE } from "reducers/entityReducers/appReducer";
|
|
|
|
export const useMockDsl = (dsl: any) => {
|
|
const dispatch = useDispatch();
|
|
dispatch(setAppMode(APP_MODE.EDIT));
|
|
const mockResp: any = {
|
|
data: {
|
|
id: "page_id",
|
|
name: "Page1",
|
|
applicationId: "app_id",
|
|
isDefault: true,
|
|
isHidden: false,
|
|
layouts: [
|
|
{
|
|
id: "layout_id",
|
|
dsl,
|
|
layoutOnLoadActions: [],
|
|
layoutActions: [],
|
|
},
|
|
],
|
|
},
|
|
};
|
|
const canvasWidgetsPayload = getCanvasWidgetsPayload(mockResp);
|
|
dispatch({
|
|
type: ReduxActionTypes.FETCH_PAGE_DSLS_SUCCESS,
|
|
payload: [
|
|
{
|
|
pageId: mockResp.data.id,
|
|
dsl: extractCurrentDSL(mockResp),
|
|
},
|
|
],
|
|
});
|
|
const pages: PageListPayload = [
|
|
{
|
|
pageName: mockResp.data.name,
|
|
pageId: mockResp.data.id,
|
|
isDefault: mockResp.data.isDefault,
|
|
isHidden: !!mockResp.data.isHidden,
|
|
},
|
|
];
|
|
dispatch({
|
|
type: ReduxActionTypes.FETCH_PAGE_LIST_SUCCESS,
|
|
payload: {
|
|
pages,
|
|
applicationId: mockResp.data.applicationId,
|
|
},
|
|
});
|
|
dispatch({
|
|
type: "UPDATE_LAYOUT",
|
|
payload: { widgets: canvasWidgetsPayload.widgets },
|
|
});
|
|
|
|
dispatch(updateCurrentPage(mockResp.data.id));
|
|
};
|
|
export function MockPageDSL({ dsl, children }: any) {
|
|
editorInitializer();
|
|
useMockDsl(dsl);
|
|
return children;
|
|
}
|
|
|
|
export const syntheticTestMouseEvent = (
|
|
event: MouseEvent,
|
|
optionsToAdd = {},
|
|
) => {
|
|
const options = Object.entries(optionsToAdd);
|
|
options.forEach(([key, value]) => {
|
|
Object.defineProperty(event, key, { get: () => value });
|
|
});
|
|
return event;
|
|
};
|
|
|
|
export function MockApplication({ children }: any) {
|
|
editorInitializer();
|
|
const dispatch = useDispatch();
|
|
dispatch(initEditor("app_id", "page_id"));
|
|
const mockResp: any = {
|
|
organizationId: "org_id",
|
|
pages: [{ id: "page_id", name: "Page1", isDefault: true }],
|
|
id: "app_id",
|
|
isDefault: true,
|
|
name: "Page1",
|
|
};
|
|
dispatch({
|
|
type: ReduxActionTypes.FETCH_APPLICATION_SUCCESS,
|
|
payload: mockResp,
|
|
});
|
|
return children;
|
|
}
|
|
|
|
//got it from @blueprintjs/test-commons to dispatch hotkeys events
|
|
export function dispatchTestKeyboardEventWithCode(
|
|
target: EventTarget,
|
|
eventType: string,
|
|
key: string,
|
|
keyCode: number,
|
|
shift = false,
|
|
meta = false,
|
|
) {
|
|
const event = document.createEvent("KeyboardEvent");
|
|
(event as any).initKeyboardEvent(
|
|
eventType,
|
|
true,
|
|
true,
|
|
window,
|
|
key,
|
|
0,
|
|
meta,
|
|
false,
|
|
shift,
|
|
);
|
|
Object.defineProperty(event, "key", { get: () => key });
|
|
Object.defineProperty(event, "which", { get: () => keyCode });
|
|
|
|
target.dispatchEvent(event);
|
|
}
|