mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-03-13 05:15:30 +00:00
* Border at the bottom has been added for the tabs to differntiate from unselected tabs while using contrast themes * Update Tabs.tsx * Update Tabs.tsx
266 lines
9.0 KiB
TypeScript
266 lines
9.0 KiB
TypeScript
import { MessageBar, MessageBarButton, MessageBarType } from "@fluentui/react";
|
|
import { sendMessage } from "Common/MessageHandler";
|
|
import { MessageTypes } from "Contracts/ExplorerContracts";
|
|
import { CollectionTabKind } from "Contracts/ViewModels";
|
|
import Explorer from "Explorer/Explorer";
|
|
import { QueryCopilotTab } from "Explorer/QueryCopilot/QueryCopilotTab";
|
|
import { SplashScreen } from "Explorer/SplashScreen/SplashScreen";
|
|
import { ConnectTab } from "Explorer/Tabs/ConnectTab";
|
|
import { PostgresConnectTab } from "Explorer/Tabs/PostgresConnectTab";
|
|
import { QuickstartTab } from "Explorer/Tabs/QuickstartTab";
|
|
import { userContext } from "UserContext";
|
|
import { useQueryCopilot } from "hooks/useQueryCopilot";
|
|
import { useTeachingBubble } from "hooks/useTeachingBubble";
|
|
import ko from "knockout";
|
|
import React, { MutableRefObject, useEffect, useRef, useState } from "react";
|
|
import loadingIcon from "../../../images/circular_loader_black_16x16.gif";
|
|
import errorIcon from "../../../images/close-black.svg";
|
|
import errorQuery from "../../../images/error_no_outline.svg";
|
|
import { useObservable } from "../../hooks/useObservable";
|
|
import { ReactTabKind, useTabs } from "../../hooks/useTabs";
|
|
import TabsBase from "./TabsBase";
|
|
|
|
type Tab = TabsBase | (TabsBase & { render: () => JSX.Element });
|
|
|
|
interface TabsProps {
|
|
explorer: Explorer;
|
|
}
|
|
|
|
export const Tabs = ({ explorer }: TabsProps): JSX.Element => {
|
|
const { openedTabs, openedReactTabs, activeTab, activeReactTab, networkSettingsWarning } = useTabs();
|
|
|
|
return (
|
|
<div className="tabsManagerContainer">
|
|
{networkSettingsWarning && (
|
|
<MessageBar
|
|
messageBarType={MessageBarType.warning}
|
|
actions={
|
|
<MessageBarButton onClick={() => sendMessage({ type: MessageTypes.OpenPostgresNetworkingBlade })}>
|
|
Change network settings
|
|
</MessageBarButton>
|
|
}
|
|
messageBarIconProps={{ iconName: "WarningSolid", className: "messageBarWarningIcon" }}
|
|
>
|
|
{networkSettingsWarning}
|
|
</MessageBar>
|
|
)}
|
|
<div id="content" className="flexContainer hideOverflows">
|
|
<div className="nav-tabs-margin">
|
|
<ul className="nav nav-tabs level navTabHeight" id="navTabs" role="tablist">
|
|
{openedReactTabs.map((tab) => (
|
|
<TabNav key={ReactTabKind[tab]} active={activeReactTab === tab} tabKind={tab} />
|
|
))}
|
|
{openedTabs.map((tab) => (
|
|
<TabNav key={tab.tabId} tab={tab} active={activeTab === tab} />
|
|
))}
|
|
</ul>
|
|
</div>
|
|
<div className="tabPanesContainer">
|
|
{activeReactTab !== undefined && getReactTabContent(activeReactTab, explorer)}
|
|
{openedTabs.map((tab) => (
|
|
<TabPane key={tab.tabId} tab={tab} active={activeTab === tab} />
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
function TabNav({ tab, active, tabKind }: { tab?: Tab; active: boolean; tabKind?: ReactTabKind }) {
|
|
const [hovering, setHovering] = useState(false);
|
|
const focusTab = useRef<HTMLLIElement>() as MutableRefObject<HTMLLIElement>;
|
|
const tabId = tab ? tab.tabId : "";
|
|
|
|
const getReactTabTitle = (): ko.Observable<string> => {
|
|
if (tabKind === ReactTabKind.QueryCopilot) {
|
|
return ko.observable("Query");
|
|
}
|
|
return ko.observable(ReactTabKind[tabKind]);
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (active && focusTab.current) {
|
|
focusTab.current.focus();
|
|
}
|
|
});
|
|
return (
|
|
<li
|
|
onMouseOver={() => setHovering(true)}
|
|
onMouseLeave={() => setHovering(false)}
|
|
onClick={() => {
|
|
if (tab) {
|
|
tab.onTabClick();
|
|
} else if (tabKind !== undefined) {
|
|
useTabs.getState().activateReactTab(tabKind);
|
|
}
|
|
}}
|
|
onKeyPress={({ nativeEvent: e }) => {
|
|
if (tab) {
|
|
tab.onKeyPressActivate(undefined, e);
|
|
} else if (tabKind !== undefined) {
|
|
onKeyPressReactTab(e, tabKind);
|
|
}
|
|
}}
|
|
className={active ? "active tabList" : "tabList"}
|
|
style={active ? { fontWeight: "bolder" } : {}}
|
|
title={useObservable(tab?.tabPath || ko.observable(""))}
|
|
aria-selected={active}
|
|
aria-expanded={active}
|
|
aria-controls={tabId}
|
|
tabIndex={0}
|
|
role="tab"
|
|
ref={focusTab}
|
|
>
|
|
<span className="tabNavContentContainer">
|
|
<div className="tab_Content">
|
|
<span className="statusIconContainer" style={{ width: tabKind === ReactTabKind.Home ? 0 : 18 }}>
|
|
{useObservable(tab?.isExecutionError || ko.observable(false)) && <ErrorIcon tab={tab} active={active} />}
|
|
{isTabExecuting(tab, tabKind) && (
|
|
<img className="loadingIcon" title="Loading" src={loadingIcon} alt="Loading" />
|
|
)}
|
|
{isQueryErrorThrown(tab, tabKind) && (
|
|
<img
|
|
src={errorQuery}
|
|
title="Error"
|
|
alt="Error"
|
|
style={{ marginTop: 4, marginLeft: 4, width: 10, height: 11 }}
|
|
/>
|
|
)}
|
|
</span>
|
|
<span
|
|
className="tabNavText"
|
|
style={active ? { fontWeight: "bolder", borderBottom: "2px solid rgba(0,120,212,1)" } : {}}
|
|
>
|
|
{useObservable(tab?.tabTitle || getReactTabTitle())}
|
|
</span>
|
|
{tabKind !== ReactTabKind.Home && (
|
|
<span className="tabIconSection">
|
|
<CloseButton tab={tab} active={active} hovering={hovering} tabKind={tabKind} />
|
|
</span>
|
|
)}
|
|
</div>
|
|
</span>
|
|
</li>
|
|
);
|
|
}
|
|
|
|
const CloseButton = ({
|
|
tab,
|
|
active,
|
|
hovering,
|
|
tabKind,
|
|
}: {
|
|
tab: Tab;
|
|
active: boolean;
|
|
hovering: boolean;
|
|
tabKind?: ReactTabKind;
|
|
}) => (
|
|
<span
|
|
style={{ display: hovering || active ? undefined : "none" }}
|
|
title="Close"
|
|
role="button"
|
|
aria-label="Close Tab"
|
|
className="cancelButton"
|
|
onClick={(event: React.MouseEvent<HTMLSpanElement, MouseEvent>) => {
|
|
event.stopPropagation();
|
|
tab ? tab.onCloseTabButtonClick() : useTabs.getState().closeReactTab(tabKind);
|
|
tabKind === ReactTabKind.QueryCopilot && useQueryCopilot.getState().resetQueryCopilotStates();
|
|
}}
|
|
tabIndex={active ? 0 : undefined}
|
|
onKeyPress={({ nativeEvent: e }) => tab.onKeyPressClose(undefined, e)}
|
|
>
|
|
<span className="tabIcon close-Icon">
|
|
<img src={errorIcon} title="Close" alt="Close" />
|
|
</span>
|
|
</span>
|
|
);
|
|
|
|
const ErrorIcon = ({ tab, active }: { tab: Tab; active: boolean }) => (
|
|
<div
|
|
id="errorStatusIcon"
|
|
role="button"
|
|
title="Click to view more details"
|
|
tabIndex={active ? 0 : undefined}
|
|
className={active ? "actionsEnabled errorIconContainer" : "errorIconContainer"}
|
|
onClick={({ nativeEvent: e }) => tab.onErrorDetailsClick(undefined, e)}
|
|
onKeyPress={({ nativeEvent: e }) => tab.onErrorDetailsKeyPress(undefined, e)}
|
|
>
|
|
<span className="errorIcon" />
|
|
</div>
|
|
);
|
|
|
|
function TabPane({ tab, active }: { tab: Tab; active: boolean }) {
|
|
const ref = useRef<HTMLDivElement>();
|
|
const attrs = {
|
|
style: { display: active ? undefined : "none" },
|
|
className: "tabs-container",
|
|
};
|
|
|
|
useEffect((): (() => void) | void => {
|
|
if (tab.tabKind === CollectionTabKind.Documents && tab.collection?.isSampleCollection) {
|
|
useTeachingBubble.getState().setIsDocumentsTabOpened(true);
|
|
}
|
|
|
|
const { current: element } = ref;
|
|
if (element) {
|
|
ko.applyBindings(tab, element);
|
|
const ctx = ko.contextFor(element).createChildContext(tab);
|
|
ko.applyBindingsToDescendants(ctx, element);
|
|
tab.isTemplateReady(true);
|
|
return () => ko.cleanNode(element);
|
|
}
|
|
}, [ref, tab]);
|
|
|
|
if (tab) {
|
|
if ("render" in tab) {
|
|
return <div {...attrs}>{tab.render()}</div>;
|
|
}
|
|
}
|
|
|
|
return <div {...attrs} ref={ref} data-bind="html:html" />;
|
|
}
|
|
|
|
const onKeyPressReactTab = (e: KeyboardEvent, tabKind: ReactTabKind): void => {
|
|
if (e.key === "Enter" || e.key === "Space") {
|
|
useTabs.getState().activateReactTab(tabKind);
|
|
e.stopPropagation();
|
|
}
|
|
};
|
|
|
|
const isTabExecuting = (tab?: Tab, tabKind?: ReactTabKind): boolean => {
|
|
if (useObservable(tab?.isExecuting || ko.observable(false))) {
|
|
return true;
|
|
} else if (tabKind !== undefined && tabKind !== ReactTabKind.Home && useTabs.getState()?.isTabExecuting) {
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
|
|
const isQueryErrorThrown = (tab?: Tab, tabKind?: ReactTabKind): boolean => {
|
|
if (
|
|
!tab?.isExecuting &&
|
|
tabKind !== undefined &&
|
|
tabKind !== ReactTabKind.Home &&
|
|
useTabs.getState()?.isQueryErrorThrown &&
|
|
!useTabs.getState()?.isTabExecuting
|
|
) {
|
|
return true;
|
|
}
|
|
return false;
|
|
};
|
|
|
|
const getReactTabContent = (activeReactTab: ReactTabKind, explorer: Explorer): JSX.Element => {
|
|
switch (activeReactTab) {
|
|
case ReactTabKind.Connect:
|
|
return userContext.apiType === "Postgres" ? <PostgresConnectTab /> : <ConnectTab />;
|
|
case ReactTabKind.Home:
|
|
return <SplashScreen explorer={explorer} />;
|
|
case ReactTabKind.Quickstart:
|
|
return <QuickstartTab explorer={explorer} />;
|
|
case ReactTabKind.QueryCopilot:
|
|
return <QueryCopilotTab explorer={explorer} />;
|
|
default:
|
|
throw Error(`Unsupported tab kind ${ReactTabKind[activeReactTab]}`);
|
|
}
|
|
};
|