mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-05-03 23:13:55 +01:00
* Update contracts for new all resource messages * Add timestamp to token message signature * Reconstruct resource tree with databases and collections parsed from token dictionary keys * Create FabricDatabase and FabricCollection to turn off interaction * Remove unnecessary FabricCollection derived class * Handle resource tokens * Bug fix * Fix linting issues * Fix update document * Fix partitition keys * Remove special case for FabricDatabase tree node * Modify readCollections to follow normal flow with Fabric * Move fabric databases refresh to data access and remove special case in Explorer * Revert Explorer.tsx changes * Disable database context menu and delete container context menu * Remove create database/container button for Fabric * Fix format * Renew token logic * Parallelize read collections calls to speed up * Disable readDatabaseOffer, because it is too slow for now * Reduce TOKEN_VALIDITY_MS a bit to make sure renewal happens before expiration. Receving new tokens new refreshes databases * Add container element for Main app in HTML * Do not handle "openTab" message anymore * Fix style of main div * Simplify conditional load of the fabric .css * Fix format * Fix tsc can't find dynamic less import --------- Co-authored-by: Armando Trejo Oliver <artrejo@microsoft.com>
225 lines
7.3 KiB
TypeScript
225 lines
7.3 KiB
TypeScript
import { useDatabases } from "Explorer/useDatabases";
|
|
import { Action } from "Shared/Telemetry/TelemetryConstants";
|
|
import { traceOpen } from "Shared/Telemetry/TelemetryProcessor";
|
|
import { ReactTabKind, useTabs } from "hooks/useTabs";
|
|
import React from "react";
|
|
import AddCollectionIcon from "../../images/AddCollection.svg";
|
|
import AddSqlQueryIcon from "../../images/AddSqlQuery_16x16.svg";
|
|
import AddStoredProcedureIcon from "../../images/AddStoredProcedure.svg";
|
|
import AddTriggerIcon from "../../images/AddTrigger.svg";
|
|
import AddUdfIcon from "../../images/AddUdf.svg";
|
|
import DeleteCollectionIcon from "../../images/DeleteCollection.svg";
|
|
import DeleteDatabaseIcon from "../../images/DeleteDatabase.svg";
|
|
import DeleteSprocIcon from "../../images/DeleteSproc.svg";
|
|
import DeleteTriggerIcon from "../../images/DeleteTrigger.svg";
|
|
import DeleteUDFIcon from "../../images/DeleteUDF.svg";
|
|
import HostedTerminalIcon from "../../images/Hosted-Terminal.svg";
|
|
import * as ViewModels from "../Contracts/ViewModels";
|
|
import { userContext } from "../UserContext";
|
|
import { getCollectionName, getDatabaseName } from "../Utils/APITypeUtils";
|
|
import { useSidePanel } from "../hooks/useSidePanel";
|
|
import { Platform, configContext } from "./../ConfigContext";
|
|
import { TreeNodeMenuItem } from "./Controls/TreeComponent/TreeComponent";
|
|
import Explorer from "./Explorer";
|
|
import { useNotebook } from "./Notebook/useNotebook";
|
|
import { DeleteCollectionConfirmationPane } from "./Panes/DeleteCollectionConfirmationPane/DeleteCollectionConfirmationPane";
|
|
import { DeleteDatabaseConfirmationPanel } from "./Panes/DeleteDatabaseConfirmationPanel";
|
|
import StoredProcedure from "./Tree/StoredProcedure";
|
|
import Trigger from "./Tree/Trigger";
|
|
import UserDefinedFunction from "./Tree/UserDefinedFunction";
|
|
import { useSelectedNode } from "./useSelectedNode";
|
|
|
|
export interface CollectionContextMenuButtonParams {
|
|
databaseId: string;
|
|
collectionId: string;
|
|
}
|
|
|
|
export interface DatabaseContextMenuButtonParams {
|
|
databaseId: string;
|
|
}
|
|
/**
|
|
* New resource tree (in ReactJS)
|
|
*/
|
|
export const createDatabaseContextMenu = (container: Explorer, databaseId: string): TreeNodeMenuItem[] => {
|
|
const items: TreeNodeMenuItem[] = [
|
|
{
|
|
iconSrc: AddCollectionIcon,
|
|
onClick: () => container.onNewCollectionClicked({ databaseId }),
|
|
label: `New ${getCollectionName()}`,
|
|
},
|
|
];
|
|
|
|
if (userContext.apiType !== "Tables" || userContext.features.enableSDKoperations) {
|
|
items.push({
|
|
iconSrc: DeleteDatabaseIcon,
|
|
onClick: () =>
|
|
useSidePanel
|
|
.getState()
|
|
.openSidePanel(
|
|
"Delete " + getDatabaseName(),
|
|
<DeleteDatabaseConfirmationPanel refreshDatabases={() => container.refreshAllDatabases()} />,
|
|
),
|
|
label: `Delete ${getDatabaseName()}`,
|
|
styleClass: "deleteDatabaseMenuItem",
|
|
});
|
|
}
|
|
return items;
|
|
};
|
|
|
|
export const createCollectionContextMenuButton = (
|
|
container: Explorer,
|
|
selectedCollection: ViewModels.Collection,
|
|
): TreeNodeMenuItem[] => {
|
|
const items: TreeNodeMenuItem[] = [];
|
|
if (userContext.apiType === "SQL" || userContext.apiType === "Gremlin") {
|
|
items.push({
|
|
iconSrc: AddSqlQueryIcon,
|
|
onClick: () => selectedCollection && selectedCollection.onNewQueryClick(selectedCollection, undefined),
|
|
label: "New SQL Query",
|
|
});
|
|
}
|
|
|
|
if (userContext.apiType === "Mongo") {
|
|
items.push({
|
|
iconSrc: AddSqlQueryIcon,
|
|
onClick: () => selectedCollection && selectedCollection.onNewMongoQueryClick(selectedCollection, undefined),
|
|
label: "New Query",
|
|
});
|
|
|
|
items.push({
|
|
iconSrc: HostedTerminalIcon,
|
|
onClick: () => {
|
|
const selectedCollection: ViewModels.Collection = useSelectedNode.getState().findSelectedCollection();
|
|
if (useNotebook.getState().isShellEnabled) {
|
|
container.openNotebookTerminal(ViewModels.TerminalKind.Mongo);
|
|
} else {
|
|
selectedCollection && selectedCollection.onNewMongoShellClick();
|
|
}
|
|
},
|
|
label: useNotebook.getState().isShellEnabled ? "Open Mongo Shell" : "New Shell",
|
|
});
|
|
}
|
|
|
|
if (
|
|
configContext.platform !== Platform.Fabric &&
|
|
(userContext.apiType === "SQL" || userContext.apiType === "Gremlin")
|
|
) {
|
|
items.push({
|
|
iconSrc: AddStoredProcedureIcon,
|
|
onClick: () => {
|
|
selectedCollection && selectedCollection.onNewStoredProcedureClick(selectedCollection, undefined);
|
|
},
|
|
label: "New Stored Procedure",
|
|
});
|
|
|
|
items.push({
|
|
iconSrc: AddUdfIcon,
|
|
onClick: () => {
|
|
selectedCollection && selectedCollection.onNewUserDefinedFunctionClick(selectedCollection);
|
|
},
|
|
label: "New UDF",
|
|
});
|
|
|
|
items.push({
|
|
iconSrc: AddTriggerIcon,
|
|
onClick: () => {
|
|
selectedCollection && selectedCollection.onNewTriggerClick(selectedCollection, undefined);
|
|
},
|
|
label: "New Trigger",
|
|
});
|
|
}
|
|
|
|
if (configContext.platform !== Platform.Fabric) {
|
|
items.push({
|
|
iconSrc: DeleteCollectionIcon,
|
|
onClick: () => {
|
|
useSelectedNode.getState().setSelectedNode(selectedCollection);
|
|
useSidePanel
|
|
.getState()
|
|
.openSidePanel(
|
|
"Delete " + getCollectionName(),
|
|
<DeleteCollectionConfirmationPane refreshDatabases={() => container.refreshAllDatabases()} />,
|
|
);
|
|
},
|
|
label: `Delete ${getCollectionName()}`,
|
|
styleClass: "deleteCollectionMenuItem",
|
|
});
|
|
}
|
|
|
|
return items;
|
|
};
|
|
|
|
export const createSampleCollectionContextMenuButton = (): TreeNodeMenuItem[] => {
|
|
const items: TreeNodeMenuItem[] = [];
|
|
if (userContext.apiType === "SQL") {
|
|
const copilotVersion = userContext.features.copilotVersion;
|
|
if (copilotVersion === "v1.0") {
|
|
items.push({
|
|
iconSrc: AddSqlQueryIcon,
|
|
onClick: () => {
|
|
useTabs.getState().openAndActivateReactTab(ReactTabKind.QueryCopilot);
|
|
traceOpen(Action.OpenQueryCopilotFromNewQuery, { apiType: userContext.apiType });
|
|
},
|
|
label: "New SQL Query",
|
|
});
|
|
} else if (copilotVersion === "v2.0") {
|
|
const sampleCollection = useDatabases.getState().sampleDataResourceTokenCollection;
|
|
items.push({
|
|
iconSrc: AddSqlQueryIcon,
|
|
onClick: () => sampleCollection && sampleCollection.onNewQueryClick(sampleCollection, undefined),
|
|
label: "New SQL Query",
|
|
});
|
|
}
|
|
}
|
|
|
|
return items;
|
|
};
|
|
|
|
export const createStoreProcedureContextMenuItems = (
|
|
container: Explorer,
|
|
storedProcedure: StoredProcedure,
|
|
): TreeNodeMenuItem[] => {
|
|
if (userContext.apiType === "Cassandra") {
|
|
return [];
|
|
}
|
|
|
|
return [
|
|
{
|
|
iconSrc: DeleteSprocIcon,
|
|
onClick: () => storedProcedure.delete(),
|
|
label: "Delete Stored Procedure",
|
|
},
|
|
];
|
|
};
|
|
|
|
export const createTriggerContextMenuItems = (container: Explorer, trigger: Trigger): TreeNodeMenuItem[] => {
|
|
if (userContext.apiType === "Cassandra") {
|
|
return [];
|
|
}
|
|
|
|
return [
|
|
{
|
|
iconSrc: DeleteTriggerIcon,
|
|
onClick: () => trigger.delete(),
|
|
label: "Delete Trigger",
|
|
},
|
|
];
|
|
};
|
|
|
|
export const createUserDefinedFunctionContextMenuItems = (
|
|
container: Explorer,
|
|
userDefinedFunction: UserDefinedFunction,
|
|
): TreeNodeMenuItem[] => {
|
|
if (userContext.apiType === "Cassandra") {
|
|
return [];
|
|
}
|
|
|
|
return [
|
|
{
|
|
iconSrc: DeleteUDFIcon,
|
|
onClick: () => userDefinedFunction.delete(),
|
|
label: "Delete User Defined Function",
|
|
},
|
|
];
|
|
};
|