PromucFlow_constructor/app/client/src/pages/Editor/routes.tsx

191 lines
5.3 KiB
TypeScript
Raw Normal View History

import React, { useEffect, ReactNode } from "react";
import {
Switch,
withRouter,
RouteComponentProps,
Route,
} from "react-router-dom";
2019-11-25 09:15:11 +00:00
import ApiEditor from "./APIEditor";
import QueryEditor from "./QueryEditor";
import DataSourceEditor from "./DataSourceEditor";
import CurlImportForm from "./APIEditor/CurlImportForm";
import ProviderTemplates from "./APIEditor/ProviderTemplates";
2019-10-21 15:12:45 +00:00
import {
API_EDITOR_ID_URL,
API_EDITOR_URL,
QUERIES_EDITOR_URL,
QUERIES_EDITOR_ID_URL,
DATA_SOURCES_EDITOR_URL,
DATA_SOURCES_EDITOR_ID_URL,
BUILDER_PAGE_URL,
BuilderRouteParams,
APIEditorRouteParams,
getCurlImportPageURL,
API_EDITOR_URL_WITH_SELECTED_PAGE_ID,
getProviderTemplatesURL,
2019-11-25 05:07:27 +00:00
} from "constants/routes";
2019-10-18 08:16:26 +00:00
import styled from "styled-components";
import {
useShowPropertyPane,
useWidgetSelection,
} from "utils/hooks/dragResizeHooks";
import { closeAllModals } from "actions/widgetActions";
import { useDispatch } from "react-redux";
import PerformanceTracker, {
PerformanceTransactionName,
} from "utils/PerformanceTracker";
2019-10-18 08:16:26 +00:00
import * as Sentry from "@sentry/react";
const SentryRoute = Sentry.withSentryRouting(Route);
const Wrapper = styled.div<{ isVisible: boolean }>`
2019-10-18 08:16:26 +00:00
position: absolute;
2019-12-11 10:35:07 +00:00
top: 0;
left: 0;
2020-12-24 04:32:25 +00:00
width: ${(props) => (!props.isVisible ? "0px" : "100%")};
height: calc(100vh - ${(props) => props.theme.headerHeight});
background-color: ${(props) =>
props.isVisible ? "rgba(0, 0, 0, 0.26)" : "transparent"};
2020-12-24 04:32:25 +00:00
z-index: ${(props) => (props.isVisible ? 2 : -1)};
`;
2020-01-27 08:24:58 +00:00
const DrawerWrapper = styled.div<{
isVisible: boolean;
}>`
background-color: white;
2020-12-24 04:32:25 +00:00
width: ${(props) => (!props.isVisible ? "0px" : "75%")};
height: 100%;
2019-10-18 08:16:26 +00:00
`;
interface RouterState {
isVisible: boolean;
2019-10-18 08:16:26 +00:00
}
class EditorsRouter extends React.Component<
RouteComponentProps<BuilderRouteParams>,
RouterState
> {
constructor(props: RouteComponentProps<APIEditorRouteParams>) {
2019-10-18 08:16:26 +00:00
super(props);
const { applicationId, pageId } = this.props.match.params;
2019-10-18 08:16:26 +00:00
this.state = {
isVisible:
this.props.location.pathname !==
BUILDER_PAGE_URL(applicationId, pageId),
2019-10-18 08:16:26 +00:00
};
}
2020-01-27 08:24:58 +00:00
2019-10-18 08:16:26 +00:00
componentDidUpdate(prevProps: Readonly<RouteComponentProps>): void {
if (this.props.location.pathname !== prevProps.location.pathname) {
const { applicationId, pageId } = this.props.match.params;
2019-10-18 08:16:26 +00:00
this.setState({
isVisible:
this.props.location.pathname !==
BUILDER_PAGE_URL(applicationId, pageId),
2019-10-18 08:16:26 +00:00
});
}
}
handleClose = (e: React.MouseEvent) => {
PerformanceTracker.startTracking(
PerformanceTransactionName.CLOSE_SIDE_PANE,
{ path: this.props.location.pathname },
);
e.stopPropagation();
const { applicationId, pageId } = this.props.match.params;
this.setState({
isVisible: false,
});
this.props.history.replace(BUILDER_PAGE_URL(applicationId, pageId));
};
preventClose = (e: React.MouseEvent) => {
e.stopPropagation();
};
2019-10-18 08:16:26 +00:00
render(): React.ReactNode {
return (
<Wrapper isVisible={this.state.isVisible} onClick={this.handleClose}>
<PaneDrawer
isVisible={this.state.isVisible}
onClick={this.preventClose}
2019-10-18 08:16:26 +00:00
>
<Switch>
<SentryRoute exact path={API_EDITOR_URL()} component={ApiEditor} />
<SentryRoute
2020-03-11 13:59:46 +00:00
exact
path={API_EDITOR_ID_URL()}
component={ApiEditor}
/>
<SentryRoute
exact
path={API_EDITOR_URL_WITH_SELECTED_PAGE_ID()}
component={ApiEditor}
/>
<SentryRoute
exact
path={QUERIES_EDITOR_URL()}
component={QueryEditor}
/>
<SentryRoute
exact
path={QUERIES_EDITOR_ID_URL()}
component={QueryEditor}
/>
<SentryRoute
exact
path={getCurlImportPageURL()}
component={CurlImportForm}
/>
<SentryRoute
exact
path={DATA_SOURCES_EDITOR_URL()}
component={DataSourceEditor}
/>
<SentryRoute
exact
path={DATA_SOURCES_EDITOR_ID_URL()}
component={DataSourceEditor}
/>
<SentryRoute
exact
path={getProviderTemplatesURL()}
component={ProviderTemplates}
/>
2019-10-18 08:16:26 +00:00
</Switch>
</PaneDrawer>
</Wrapper>
2019-10-18 08:16:26 +00:00
);
}
}
type PaneDrawerProps = {
isVisible: boolean;
onClick: (e: React.MouseEvent) => void;
children: ReactNode;
};
const PaneDrawer = (props: PaneDrawerProps) => {
const showPropertyPane = useShowPropertyPane();
const { selectWidget, focusWidget } = useWidgetSelection();
const dispatch = useDispatch();
useEffect(() => {
// This pane drawer is only open when NOT on canvas.
// De-select all widgets
// Un-focus all widgets
// Hide property pane
// Close all modals
if (props.isVisible) {
showPropertyPane();
selectWidget(undefined);
focusWidget(undefined);
dispatch(closeAllModals());
}
}, [dispatch, props.isVisible, selectWidget, showPropertyPane, focusWidget]);
return <DrawerWrapper {...props}>{props.children}</DrawerWrapper>;
};
PaneDrawer.displayName = "PaneDrawer";
2019-10-18 08:16:26 +00:00
export default withRouter(EditorsRouter);