mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-02-08 01:05:15 +00:00
* Add Platform.Fabric to run in context of Fabric * Use separate StyleConstants We want to have more flexibility with Styles at runtime but Constants depend on ConfigContext and therefore get loaded very early at startup. * Add Fabric specific styles and Fluent theme documentDBFabric.less contains all styles for Fabric. We use React.lazy to import them conditionally at runtime preventing webpack from preprocessing them into main.css. * Restyle CommandBar for Fabric with more roundness and native colors. * Disable Notebooks when running in Fabric * Disable Synapse and Scripts commands for Fabric * Fix code formatting issues * Fetch encrypted token from sessionStorage for fabric platform * Fix Tabs style * Dark refresh icons for Fabric * Use new ResourceTree2 for Fabric * Fluent tree should have a fixed width otherwise the action buttons jump around on hover. * Disable remaining Script actions in Fabric * Revert accidentally committed change which broke a test * Fix cross-origin error second try * Adjust @FabrixBoxMargin css * Hide Database Scale node on Fabric * Remove all Collection child nodes on Fabric * Add a comment about why we need FabricPlatform.tsx * Fix equality checks * Fix more Colors for Fabric * Switch resource tree to "medium" size * Fix formatting again * Fix formatting again * Disable no-var-requires error on some intended var import. * Increase memory limit for build * Use standard Segoe UI font for Fabric * Improve Tabs design for Fabric * Fix active Tab style bug in Portal introduced with 39a7765aef807de5c1e7c82b094765072a10924c --------- Co-authored-by: Laurent Nguyen <laurent.nguyen@microsoft.com>
176 lines
7.2 KiB
TypeScript
176 lines
7.2 KiB
TypeScript
// CSS Dependencies
|
|
import { initializeIcons, loadTheme } from "@fluentui/react";
|
|
import { QuickstartCarousel } from "Explorer/Quickstart/QuickstartCarousel";
|
|
import { MongoQuickstartTutorial } from "Explorer/Quickstart/Tutorials/MongoQuickstartTutorial";
|
|
import { SQLQuickstartTutorial } from "Explorer/Quickstart/Tutorials/SQLQuickstartTutorial";
|
|
import { userContext } from "UserContext";
|
|
import "bootstrap/dist/css/bootstrap.css";
|
|
import { useCarousel } from "hooks/useCarousel";
|
|
import React, { useState } from "react";
|
|
import ReactDOM from "react-dom";
|
|
import "../externals/jquery-ui.min.css";
|
|
import "../externals/jquery-ui.min.js";
|
|
import "../externals/jquery-ui.structure.min.css";
|
|
import "../externals/jquery-ui.theme.min.css";
|
|
import "../externals/jquery.dataTables.min.css";
|
|
import "../externals/jquery.typeahead.min.css";
|
|
import "../externals/jquery.typeahead.min.js";
|
|
// Image Dependencies
|
|
import { QueryCopilotCarousel } from "Explorer/QueryCopilot/CopilotCarousel";
|
|
import { QueryCopilotFeedbackModal } from "Explorer/QueryCopilot/Modal/QueryCopilotFeedbackModal";
|
|
import { useQueryCopilot } from "hooks/useQueryCopilot";
|
|
import "../images/CosmosDB_rgb_ui_lighttheme.ico";
|
|
import hdeConnectImage from "../images/HdeConnectCosmosDB.svg";
|
|
import "../images/favicon.ico";
|
|
import "../less/TableStyles/CustomizeColumns.less";
|
|
import "../less/TableStyles/EntityEditor.less";
|
|
import "../less/TableStyles/fulldatatables.less";
|
|
import "../less/TableStyles/queryBuilder.less";
|
|
import * as StyleConstants from "./Common/StyleConstants";
|
|
import { configContext, Platform } from "ConfigContext";
|
|
import "../less/documentDB.less";
|
|
import "../less/forms.less";
|
|
import "../less/infobox.less";
|
|
import "../less/menus.less";
|
|
import "../less/messagebox.less";
|
|
import "../less/resourceTree.less";
|
|
import "../less/tree.less";
|
|
import { CollapsedResourceTree } from "./Common/CollapsedResourceTree";
|
|
import { ResourceTreeContainer } from "./Common/ResourceTreeContainer";
|
|
import "./Explorer/Controls/Accordion/AccordionComponent.less";
|
|
import "./Explorer/Controls/CollapsiblePanel/CollapsiblePanelComponent.less";
|
|
import { Dialog } from "./Explorer/Controls/Dialog";
|
|
import "./Explorer/Controls/ErrorDisplayComponent/ErrorDisplayComponent.less";
|
|
import "./Explorer/Controls/JsonEditor/JsonEditorComponent.less";
|
|
import "./Explorer/Controls/Notebook/NotebookTerminalComponent.less";
|
|
import "./Explorer/Controls/TreeComponent/treeComponent.less";
|
|
import "./Explorer/Graph/GraphExplorerComponent/graphExplorer.less";
|
|
import "./Explorer/Menus/CommandBar/CommandBarComponent.less";
|
|
import { CommandBar } from "./Explorer/Menus/CommandBar/CommandBarComponentAdapter";
|
|
import "./Explorer/Menus/CommandBar/ConnectionStatusComponent.less";
|
|
import "./Explorer/Menus/CommandBar/MemoryTrackerComponent.less";
|
|
import "./Explorer/Menus/NotificationConsole/NotificationConsole.less";
|
|
import { NotificationConsole } from "./Explorer/Menus/NotificationConsole/NotificationConsoleComponent";
|
|
import "./Explorer/Panes/PanelComponent.less";
|
|
import { SidePanel } from "./Explorer/Panes/PanelContainerComponent";
|
|
import "./Explorer/SplashScreen/SplashScreen.less";
|
|
import { Tabs } from "./Explorer/Tabs/Tabs";
|
|
import "./Libs/jquery";
|
|
import "./Shared/appInsights";
|
|
import { useConfig } from "./hooks/useConfig";
|
|
import { useKnockoutExplorer } from "./hooks/useKnockoutExplorer";
|
|
import { appThemeFabric } from "./Platform/Fabric/FabricTheme";
|
|
|
|
initializeIcons();
|
|
|
|
const App: React.FunctionComponent = () => {
|
|
const [isLeftPaneExpanded, setIsLeftPaneExpanded] = useState<boolean>(true);
|
|
const isCarouselOpen = useCarousel((state) => state.shouldOpen);
|
|
const isCopilotCarouselOpen = useCarousel((state) => state.showCopilotCarousel);
|
|
const shouldShowModal = useQueryCopilot((state) => state.showFeedbackModal);
|
|
|
|
const config = useConfig();
|
|
if (config?.platform === Platform.Fabric) {
|
|
loadTheme(appThemeFabric);
|
|
}
|
|
StyleConstants.updateStyles();
|
|
const explorer = useKnockoutExplorer(config?.platform);
|
|
|
|
const toggleLeftPaneExpanded = () => {
|
|
setIsLeftPaneExpanded(!isLeftPaneExpanded);
|
|
if (isLeftPaneExpanded) {
|
|
document.getElementById("expandToggleLeftPaneButton").focus();
|
|
} else {
|
|
document.getElementById("collapseToggleLeftPaneButton").focus();
|
|
}
|
|
};
|
|
|
|
if (!explorer) {
|
|
return <LoadingExplorer />;
|
|
}
|
|
|
|
return (
|
|
<div className="flexContainer" aria-hidden="false">
|
|
<LoadFabricOverrides />
|
|
<div id="divExplorer" className="flexContainer hideOverflows">
|
|
<div id="freeTierTeachingBubble"> </div>
|
|
{/* Main Command Bar - Start */}
|
|
<CommandBar container={explorer} />
|
|
{/* Collections Tree and Tabs - Begin */}
|
|
<div className="resourceTreeAndTabs">
|
|
{/* Collections Tree - Start */}
|
|
{userContext.apiType !== "Postgres" && userContext.apiType !== "VCoreMongo" && (
|
|
<div id="resourcetree" data-test="resourceTreeId" className="resourceTree">
|
|
<div className="collectionsTreeWithSplitter">
|
|
{/* Collections Tree Expanded - Start */}
|
|
<ResourceTreeContainer
|
|
container={explorer}
|
|
toggleLeftPaneExpanded={toggleLeftPaneExpanded}
|
|
isLeftPaneExpanded={isLeftPaneExpanded}
|
|
/>
|
|
{/* Collections Tree Expanded - End */}
|
|
{/* Collections Tree Collapsed - Start */}
|
|
<CollapsedResourceTree
|
|
toggleLeftPaneExpanded={toggleLeftPaneExpanded}
|
|
isLeftPaneExpanded={isLeftPaneExpanded}
|
|
/>
|
|
{/* Collections Tree Collapsed - End */}
|
|
</div>
|
|
</div>
|
|
)}
|
|
<Tabs explorer={explorer} />
|
|
</div>
|
|
{/* Collections Tree and Tabs - End */}
|
|
<div
|
|
className="dataExplorerErrorConsoleContainer"
|
|
role="contentinfo"
|
|
aria-label="Notification console"
|
|
id="explorerNotificationConsole"
|
|
>
|
|
<NotificationConsole />
|
|
</div>
|
|
</div>
|
|
<SidePanel />
|
|
<Dialog />
|
|
{<QuickstartCarousel isOpen={isCarouselOpen} />}
|
|
{<SQLQuickstartTutorial />}
|
|
{<MongoQuickstartTutorial />}
|
|
{<QueryCopilotCarousel isOpen={isCopilotCarouselOpen} explorer={explorer} />}
|
|
{shouldShowModal && <QueryCopilotFeedbackModal explorer={explorer} />}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
ReactDOM.render(<App />, document.body);
|
|
|
|
function LoadFabricOverrides(): JSX.Element {
|
|
if (configContext.platform === Platform.Fabric) {
|
|
const FabricStyle = React.lazy(() => import("./Platform/Fabric/FabricPlatform"));
|
|
return (
|
|
<React.Suspense fallback={<div></div>}>
|
|
<FabricStyle />
|
|
</React.Suspense>
|
|
);
|
|
} else {
|
|
return <></>;
|
|
}
|
|
}
|
|
|
|
function LoadingExplorer(): JSX.Element {
|
|
return (
|
|
<div className="splashLoaderContainer">
|
|
<div className="splashLoaderContentContainer">
|
|
<p className="connectExplorerContent">
|
|
<img src={hdeConnectImage} alt="Azure Cosmos DB" />
|
|
</p>
|
|
<p className="splashLoaderTitle" id="explorerLoadingStatusTitle">
|
|
Welcome to Azure Cosmos DB
|
|
</p>
|
|
<p className="splashLoaderText" id="explorerLoadingStatusText" role="alert">
|
|
Connecting...
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|