Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
import React, { useEffect, ReactNode } from "react";
|
2020-09-24 16:05:18 +00:00
|
|
|
import {
|
|
|
|
|
Switch,
|
|
|
|
|
withRouter,
|
|
|
|
|
RouteComponentProps,
|
|
|
|
|
Route,
|
2021-02-11 12:54:00 +00:00
|
|
|
matchPath,
|
2020-09-24 16:05:18 +00:00
|
|
|
} from "react-router-dom";
|
2019-11-25 09:15:11 +00:00
|
|
|
import ApiEditor from "./APIEditor";
|
2021-07-07 03:46:16 +00:00
|
|
|
import IntegrationEditor from "./IntegrationEditor";
|
2020-05-05 07:50:30 +00:00
|
|
|
import QueryEditor from "./QueryEditor";
|
2020-04-28 06:52:53 +00:00
|
|
|
import DataSourceEditor from "./DataSourceEditor";
|
2021-09-08 17:32:22 +00:00
|
|
|
import JSEditor from "./JSEditor";
|
2020-04-28 06:52:53 +00:00
|
|
|
|
2021-07-29 08:13:10 +00:00
|
|
|
import GeneratePage from "./GeneratePage";
|
2020-04-14 12:34:14 +00:00
|
|
|
import CurlImportForm from "./APIEditor/CurlImportForm";
|
|
|
|
|
import ProviderTemplates from "./APIEditor/ProviderTemplates";
|
2019-10-21 15:12:45 +00:00
|
|
|
import {
|
|
|
|
|
API_EDITOR_ID_URL,
|
2020-05-05 07:50:30 +00:00
|
|
|
QUERIES_EDITOR_ID_URL,
|
2020-04-28 06:52:53 +00:00
|
|
|
DATA_SOURCES_EDITOR_ID_URL,
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
BUILDER_PAGE_URL,
|
2019-11-22 14:02:55 +00:00
|
|
|
BuilderRouteParams,
|
|
|
|
|
APIEditorRouteParams,
|
2020-04-14 12:34:14 +00:00
|
|
|
getCurlImportPageURL,
|
2021-08-13 11:38:26 +00:00
|
|
|
PAGE_LIST_EDITOR_URL,
|
2021-07-07 03:46:16 +00:00
|
|
|
INTEGRATION_EDITOR_URL,
|
2021-09-08 17:32:22 +00:00
|
|
|
JS_COLLECTION_EDITOR_URL,
|
|
|
|
|
JS_COLLECTION_ID_URL,
|
2021-07-29 08:13:10 +00:00
|
|
|
getGenerateTemplateURL,
|
2021-08-13 11:38:26 +00:00
|
|
|
getProviderTemplatesURL,
|
2021-07-29 08:13:10 +00:00
|
|
|
getGenerateTemplateFormURL,
|
2019-11-25 05:07:27 +00:00
|
|
|
} from "constants/routes";
|
2019-10-18 08:16:26 +00:00
|
|
|
import styled from "styled-components";
|
2021-06-17 13:26:54 +00:00
|
|
|
import { useShowPropertyPane } from "utils/hooks/dragResizeHooks";
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
import { closeAllModals } from "actions/widgetActions";
|
|
|
|
|
import { useDispatch } from "react-redux";
|
2020-09-24 04:47:37 +00:00
|
|
|
import PerformanceTracker, {
|
|
|
|
|
PerformanceTransactionName,
|
|
|
|
|
} from "utils/PerformanceTracker";
|
2019-10-18 08:16:26 +00:00
|
|
|
|
2020-09-24 16:05:18 +00:00
|
|
|
import * as Sentry from "@sentry/react";
|
|
|
|
|
const SentryRoute = Sentry.withSentryRouting(Route);
|
|
|
|
|
|
2021-04-22 03:30:09 +00:00
|
|
|
import { SaaSEditorRoutes } from "./SaaSEditor/routes";
|
2021-06-17 13:26:54 +00:00
|
|
|
import { useWidgetSelection } from "utils/hooks/useWidgetSelection";
|
2021-08-13 11:38:26 +00:00
|
|
|
import PagesEditor from "./PagesEditor";
|
2021-04-22 03:30:09 +00:00
|
|
|
|
2020-08-14 07:18:30 +00:00
|
|
|
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%")};
|
2021-09-06 09:29:35 +00:00
|
|
|
height: 100%;
|
2020-12-24 04:32:25 +00:00
|
|
|
background-color: ${(props) =>
|
2019-10-29 12:02:58 +00:00
|
|
|
props.isVisible ? "rgba(0, 0, 0, 0.26)" : "transparent"};
|
2020-12-24 04:32:25 +00:00
|
|
|
z-index: ${(props) => (props.isVisible ? 2 : -1)};
|
2019-10-29 12:02:58 +00:00
|
|
|
`;
|
|
|
|
|
|
2020-01-27 08:24:58 +00:00
|
|
|
const DrawerWrapper = styled.div<{
|
|
|
|
|
isVisible: boolean;
|
2021-04-23 13:50:55 +00:00
|
|
|
isActionPath: any;
|
2020-01-27 08:24:58 +00:00
|
|
|
}>`
|
2019-10-29 12:02:58 +00:00
|
|
|
background-color: white;
|
2021-05-10 13:28:38 +00:00
|
|
|
width: ${(props) => (!props.isVisible ? "0" : "100%")};
|
2019-10-29 12:02:58 +00:00
|
|
|
height: 100%;
|
2021-09-06 09:29:35 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2019-10-18 08:16:26 +00:00
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
interface RouterState {
|
2019-10-29 12:02:58 +00:00
|
|
|
isVisible: boolean;
|
2021-04-23 13:50:55 +00:00
|
|
|
isActionPath: Record<any, any> | null;
|
2019-10-18 08:16:26 +00:00
|
|
|
}
|
|
|
|
|
|
2019-11-22 14:02:55 +00:00
|
|
|
class EditorsRouter extends React.Component<
|
|
|
|
|
RouteComponentProps<BuilderRouteParams>,
|
|
|
|
|
RouterState
|
|
|
|
|
> {
|
|
|
|
|
constructor(props: RouteComponentProps<APIEditorRouteParams>) {
|
2019-10-18 08:16:26 +00:00
|
|
|
super(props);
|
2019-11-22 14:02:55 +00:00
|
|
|
const { applicationId, pageId } = this.props.match.params;
|
2019-10-18 08:16:26 +00:00
|
|
|
this.state = {
|
2019-11-22 14:02:55 +00:00
|
|
|
isVisible:
|
|
|
|
|
this.props.location.pathname !==
|
2020-09-02 06:44:01 +00:00
|
|
|
BUILDER_PAGE_URL(applicationId, pageId),
|
2021-04-23 13:50:55 +00:00
|
|
|
isActionPath: this.isMatchPath(),
|
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) {
|
2019-11-22 14:02:55 +00:00
|
|
|
const { applicationId, pageId } = this.props.match.params;
|
2019-10-18 08:16:26 +00:00
|
|
|
this.setState({
|
2019-11-22 14:02:55 +00:00
|
|
|
isVisible:
|
|
|
|
|
this.props.location.pathname !==
|
2020-09-02 06:44:01 +00:00
|
|
|
BUILDER_PAGE_URL(applicationId, pageId),
|
2021-04-23 13:50:55 +00:00
|
|
|
isActionPath: this.isMatchPath(),
|
2019-10-18 08:16:26 +00:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-11 12:54:00 +00:00
|
|
|
isMatchPath = () => {
|
|
|
|
|
return matchPath(this.props.location.pathname, {
|
|
|
|
|
path: [
|
2021-07-07 03:46:16 +00:00
|
|
|
INTEGRATION_EDITOR_URL(),
|
2021-02-11 12:54:00 +00:00
|
|
|
API_EDITOR_ID_URL(),
|
2021-04-23 13:50:55 +00:00
|
|
|
QUERIES_EDITOR_ID_URL(),
|
2021-02-11 12:54:00 +00:00
|
|
|
],
|
|
|
|
|
exact: true,
|
|
|
|
|
strict: false,
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2019-10-29 12:02:58 +00:00
|
|
|
handleClose = (e: React.MouseEvent) => {
|
2020-09-28 05:12:23 +00:00
|
|
|
PerformanceTracker.startTracking(
|
|
|
|
|
PerformanceTransactionName.CLOSE_SIDE_PANE,
|
|
|
|
|
{ path: this.props.location.pathname },
|
|
|
|
|
);
|
2019-10-29 12:02:58 +00:00
|
|
|
e.stopPropagation();
|
2019-11-22 14:02:55 +00:00
|
|
|
const { applicationId, pageId } = this.props.match.params;
|
2019-10-29 12:02:58 +00:00
|
|
|
this.setState({
|
|
|
|
|
isVisible: false,
|
|
|
|
|
});
|
2019-11-22 14:02:55 +00:00
|
|
|
this.props.history.replace(BUILDER_PAGE_URL(applicationId, pageId));
|
2019-10-29 12:02:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
preventClose = (e: React.MouseEvent) => {
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
};
|
|
|
|
|
|
2019-10-18 08:16:26 +00:00
|
|
|
render(): React.ReactNode {
|
|
|
|
|
return (
|
2020-08-14 07:18:30 +00:00
|
|
|
<Wrapper isVisible={this.state.isVisible} onClick={this.handleClose}>
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
<PaneDrawer
|
2021-04-23 13:50:55 +00:00
|
|
|
isActionPath={this.state.isActionPath}
|
2021-04-28 10:28:39 +00:00
|
|
|
isVisible={this.state.isVisible}
|
2019-10-29 12:02:58 +00:00
|
|
|
onClick={this.preventClose}
|
2019-10-18 08:16:26 +00:00
|
|
|
>
|
|
|
|
|
<Switch>
|
2020-09-24 16:05:18 +00:00
|
|
|
<SentryRoute
|
2021-07-07 03:46:16 +00:00
|
|
|
component={IntegrationEditor}
|
2020-03-11 13:59:46 +00:00
|
|
|
exact
|
2021-07-07 03:46:16 +00:00
|
|
|
path={INTEGRATION_EDITOR_URL()}
|
2020-03-11 13:59:46 +00:00
|
|
|
/>
|
2020-09-24 16:05:18 +00:00
|
|
|
<SentryRoute
|
2021-04-28 10:28:39 +00:00
|
|
|
component={ApiEditor}
|
2020-04-14 12:34:14 +00:00
|
|
|
exact
|
2021-07-07 03:46:16 +00:00
|
|
|
path={API_EDITOR_ID_URL()}
|
2020-05-05 07:50:30 +00:00
|
|
|
/>
|
2020-09-24 16:05:18 +00:00
|
|
|
<SentryRoute
|
2021-04-28 10:28:39 +00:00
|
|
|
component={QueryEditor}
|
2020-05-05 07:50:30 +00:00
|
|
|
exact
|
|
|
|
|
path={QUERIES_EDITOR_ID_URL()}
|
|
|
|
|
/>
|
|
|
|
|
|
2021-09-08 17:32:22 +00:00
|
|
|
<SentryRoute
|
|
|
|
|
component={JSEditor}
|
|
|
|
|
exact
|
|
|
|
|
path={JS_COLLECTION_EDITOR_URL()}
|
|
|
|
|
/>
|
|
|
|
|
<SentryRoute
|
|
|
|
|
component={JSEditor}
|
|
|
|
|
exact
|
|
|
|
|
path={JS_COLLECTION_ID_URL()}
|
|
|
|
|
/>
|
|
|
|
|
|
2020-09-24 16:05:18 +00:00
|
|
|
<SentryRoute
|
2021-04-28 10:28:39 +00:00
|
|
|
component={CurlImportForm}
|
2020-04-14 12:34:14 +00:00
|
|
|
exact
|
|
|
|
|
path={getCurlImportPageURL()}
|
|
|
|
|
/>
|
2021-04-22 03:30:09 +00:00
|
|
|
{SaaSEditorRoutes.map((props) => (
|
|
|
|
|
<SentryRoute exact key={props.path} {...props} />
|
|
|
|
|
))}
|
2021-08-13 11:38:26 +00:00
|
|
|
<SentryRoute
|
|
|
|
|
component={PagesEditor}
|
|
|
|
|
exact
|
|
|
|
|
path={PAGE_LIST_EDITOR_URL()}
|
|
|
|
|
/>
|
2020-09-24 16:05:18 +00:00
|
|
|
<SentryRoute
|
2021-04-28 10:28:39 +00:00
|
|
|
component={DataSourceEditor}
|
2020-04-28 06:52:53 +00:00
|
|
|
exact
|
|
|
|
|
path={DATA_SOURCES_EDITOR_ID_URL()}
|
|
|
|
|
/>
|
2020-09-24 16:05:18 +00:00
|
|
|
<SentryRoute
|
2021-04-28 10:28:39 +00:00
|
|
|
component={ProviderTemplates}
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
exact
|
2020-04-14 12:34:14 +00:00
|
|
|
path={getProviderTemplatesURL()}
|
|
|
|
|
/>
|
2021-07-29 08:13:10 +00:00
|
|
|
<SentryRoute
|
|
|
|
|
component={GeneratePage}
|
|
|
|
|
exact
|
|
|
|
|
path={getGenerateTemplateURL()}
|
|
|
|
|
/>
|
|
|
|
|
<SentryRoute
|
|
|
|
|
component={GeneratePage}
|
|
|
|
|
exact
|
|
|
|
|
path={getGenerateTemplateFormURL()}
|
|
|
|
|
/>
|
2019-10-18 08:16:26 +00:00
|
|
|
</Switch>
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
</PaneDrawer>
|
2019-10-29 12:02:58 +00:00
|
|
|
</Wrapper>
|
2019-10-18 08:16:26 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
type PaneDrawerProps = {
|
|
|
|
|
isVisible: boolean;
|
2021-04-23 13:50:55 +00:00
|
|
|
isActionPath: Record<any, any> | null;
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
onClick: (e: React.MouseEvent) => void;
|
|
|
|
|
children: ReactNode;
|
|
|
|
|
};
|
2021-04-28 10:28:39 +00:00
|
|
|
function PaneDrawer(props: PaneDrawerProps) {
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
const showPropertyPane = useShowPropertyPane();
|
2021-05-13 08:35:39 +00:00
|
|
|
const { focusWidget, selectWidget } = useWidgetSelection();
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
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>;
|
2021-04-28 10:28:39 +00:00
|
|
|
}
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
|
|
|
|
|
PaneDrawer.displayName = "PaneDrawer";
|
2019-10-18 08:16:26 +00:00
|
|
|
|
|
|
|
|
export default withRouter(EditorsRouter);
|