migrate AddDatabase component

This commit is contained in:
Your Name
2021-03-24 12:40:20 +05:30
parent ca7cd139ba
commit 201310eea4
6 changed files with 26487 additions and 6546 deletions

View File

@@ -50,6 +50,7 @@ import { NotebookUtil } from "./Notebook/NotebookUtil";
import AddCollectionPane from "./Panes/AddCollectionPane";
import { AddCollectionPanel } from "./Panes/AddCollectionPanel";
import AddDatabasePane from "./Panes/AddDatabasePane";
import { AddDatabasePaneF } from "./Panes/AddDatabasePaneF";
import { BrowseQueriesPane } from "./Panes/BrowseQueriesPane";
import CassandraAddCollectionPane from "./Panes/CassandraAddCollectionPane";
import { ContextualPaneBase } from "./Panes/ContextualPaneBase";
@@ -2491,4 +2492,10 @@ export default class Explorer {
/>
);
}
public openAddDatabasePane(): void {
this.openSidePanel(
"Add Database",
<AddDatabasePaneF explorer={this} openNotificationConsole={this.expandConsole} closePanel={this.closeSidePanel} />
);
}
}