2020-08-03 14:18:48 +00:00
|
|
|
import React from "react";
|
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 "./wdyr";
|
2019-03-16 11:33:15 +00:00
|
|
|
import ReactDOM from "react-dom";
|
|
|
|
|
import { Provider } from "react-redux";
|
|
|
|
|
import "./index.css";
|
2019-12-30 07:35:16 +00:00
|
|
|
import { ThemeProvider, theme } from "constants/DefaultTheme";
|
|
|
|
|
import { appInitializer } from "utils/AppsmithUtils";
|
2020-02-18 10:41:52 +00:00
|
|
|
import { Slide, ToastContainer } from "react-toastify";
|
2019-12-23 12:16:33 +00:00
|
|
|
import store from "./store";
|
2020-05-28 18:10:26 +00:00
|
|
|
import { LayersContext, Layers } from "constants/Layers";
|
2020-08-03 14:18:48 +00:00
|
|
|
import AppRouter from "./AppRouter";
|
2019-12-03 09:21:06 +00:00
|
|
|
|
2019-09-02 15:36:24 +00:00
|
|
|
appInitializer();
|
2019-11-21 10:52:49 +00:00
|
|
|
|
2020-08-03 14:18:48 +00:00
|
|
|
const App = () => {
|
|
|
|
|
return (
|
|
|
|
|
<Provider store={store}>
|
|
|
|
|
<LayersContext.Provider value={Layers}>
|
|
|
|
|
<ThemeProvider theme={theme}>
|
|
|
|
|
<ToastContainer
|
|
|
|
|
hideProgressBar
|
|
|
|
|
draggable={false}
|
|
|
|
|
transition={Slide}
|
|
|
|
|
autoClose={5000}
|
|
|
|
|
closeButton={false}
|
|
|
|
|
/>
|
|
|
|
|
<AppRouter />
|
|
|
|
|
</ThemeProvider>
|
|
|
|
|
</LayersContext.Provider>
|
|
|
|
|
</Provider>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
ReactDOM.render(<App />, document.getElementById("root"));
|