mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-27 12:51:41 +00:00
Compare commits
1 Commits
users/srna
...
tsStrict/f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
17fa6aff31 |
@@ -111,6 +111,9 @@ src/Explorer/OpenActionsStubs.ts
|
|||||||
src/Explorer/Panes/AddDatabasePane.ts
|
src/Explorer/Panes/AddDatabasePane.ts
|
||||||
src/Explorer/Panes/AddDatabasePane.test.ts
|
src/Explorer/Panes/AddDatabasePane.test.ts
|
||||||
src/Explorer/Panes/BrowseQueriesPane.ts
|
src/Explorer/Panes/BrowseQueriesPane.ts
|
||||||
|
src/Explorer/Panes/ContextualPaneBase.ts
|
||||||
|
# src/Explorer/Panes/GraphStylingPane.ts
|
||||||
|
# src/Explorer/Panes/NewVertexPane.ts
|
||||||
src/Explorer/Panes/RenewAdHocAccessPane.ts
|
src/Explorer/Panes/RenewAdHocAccessPane.ts
|
||||||
src/Explorer/Panes/SetupNotebooksPane.ts
|
src/Explorer/Panes/SetupNotebooksPane.ts
|
||||||
src/Explorer/Panes/SwitchDirectoryPane.ts
|
src/Explorer/Panes/SwitchDirectoryPane.ts
|
||||||
|
|||||||
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@@ -92,11 +92,11 @@ jobs:
|
|||||||
name: dist
|
name: dist
|
||||||
path: dist/
|
path: dist/
|
||||||
- name: Upload build to preview blob storage
|
- name: Upload build to preview blob storage
|
||||||
run: az storage blob upload-batch -d '$web' -s 'dist' --account-name cosmosexplorerpreview --subscription cosmosdb-portalteam-generaldemo --destination-path "${{github.event.pull_request.head.sha || github.sha}}" --account-key="${PREVIEW_STORAGE_KEY}"
|
run: az storage blob upload-batch -d '$web' -s 'dist' --account-name cosmosexplorerpreview --subscription cosmosdb-portalteam-generaldemo --destination-path "${{github.event.pull_request.head.sha}}" --account-key="${PREVIEW_STORAGE_KEY}"
|
||||||
env:
|
env:
|
||||||
PREVIEW_STORAGE_KEY: ${{ secrets.PREVIEW_STORAGE_KEY }}
|
PREVIEW_STORAGE_KEY: ${{ secrets.PREVIEW_STORAGE_KEY }}
|
||||||
- name: Upload preview config to blob storage
|
- name: Upload preview config to blob storage
|
||||||
run: az storage blob upload -c '$web' -f ./preview/config.json --account-name cosmosexplorerpreview --subscription cosmosdb-portalteam-generaldemo --name "${{github.event.pull_request.head.sha || github.sha}}/config.json" --account-key="${PREVIEW_STORAGE_KEY}"
|
run: az storage blob upload -c '$web' -f ./preview/config.json --account-name cosmosexplorerpreview --subscription cosmosdb-portalteam-generaldemo --name "${{github.event.pull_request.head.sha}}/config.json" --account-key="${PREVIEW_STORAGE_KEY}"
|
||||||
env:
|
env:
|
||||||
PREVIEW_STORAGE_KEY: ${{ secrets.PREVIEW_STORAGE_KEY }}
|
PREVIEW_STORAGE_KEY: ${{ secrets.PREVIEW_STORAGE_KEY }}
|
||||||
endtoendemulator:
|
endtoendemulator:
|
||||||
|
|||||||
2
.github/workflows/cleanup.yml
vendored
2
.github/workflows/cleanup.yml
vendored
@@ -7,7 +7,7 @@ on:
|
|||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
# Once every hour
|
# Once every hour
|
||||||
- cron: "0 15 * * *"
|
- cron: "0 * * * *"
|
||||||
|
|
||||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||||
jobs:
|
jobs:
|
||||||
|
|||||||
@@ -3085,7 +3085,3 @@ settings-pane {
|
|||||||
padding-left: @SmallSpace;
|
padding-left: @SmallSpace;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.hiddenMain {
|
|
||||||
display: none;
|
|
||||||
height: 0px;
|
|
||||||
}
|
|
||||||
@@ -3,7 +3,6 @@
|
|||||||
|
|
||||||
.resourceTree {
|
.resourceTree {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 20%;
|
|
||||||
flex: 0 0 auto;
|
flex: 0 0 auto;
|
||||||
.main {
|
.main {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
{
|
{
|
||||||
"PROXY_PATH": "/proxy",
|
"PROXY_PATH": "/proxy"
|
||||||
"msalRedirectURI": "https://cosmos-explorer-preview.azurewebsites.net/"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -62,17 +62,6 @@ app.get("/pull/:pr(\\d+)", (req, res) => {
|
|||||||
})
|
})
|
||||||
.catch(() => res.sendStatus(500));
|
.catch(() => res.sendStatus(500));
|
||||||
});
|
});
|
||||||
app.get("/", (req, res) => {
|
|
||||||
fetch("https://api.github.com/repos/Azure/cosmos-explorer/branches/master")
|
|
||||||
.then((response) => response.json())
|
|
||||||
.then(({ commit: { sha } }) => {
|
|
||||||
const explorer = new URL(
|
|
||||||
"https://cosmos-explorer-preview.azurewebsites.net/commit/" + sha + "/hostedExplorer.html"
|
|
||||||
);
|
|
||||||
return res.redirect(explorer.href);
|
|
||||||
})
|
|
||||||
.catch(() => res.sendStatus(500));
|
|
||||||
});
|
|
||||||
|
|
||||||
app.listen(port, () => {
|
app.listen(port, () => {
|
||||||
console.log(`Example app listening on port: ${port}`);
|
console.log(`Example app listening on port: ${port}`);
|
||||||
|
|||||||
@@ -1,36 +0,0 @@
|
|||||||
import React, { FunctionComponent } from "react";
|
|
||||||
import arrowLeftImg from "../../images/imgarrowlefticon.svg";
|
|
||||||
import { userContext } from "../UserContext";
|
|
||||||
|
|
||||||
export interface CollapsedResourceTreeProps {
|
|
||||||
toggleLeftPaneExpanded: () => void;
|
|
||||||
isLeftPaneExpanded: boolean;
|
|
||||||
}
|
|
||||||
|
|
||||||
export const CollapsedResourceTree: FunctionComponent<CollapsedResourceTreeProps> = ({
|
|
||||||
toggleLeftPaneExpanded,
|
|
||||||
isLeftPaneExpanded,
|
|
||||||
}: CollapsedResourceTreeProps): JSX.Element => {
|
|
||||||
return (
|
|
||||||
<div id="mini" className={!isLeftPaneExpanded ? "mini toggle-mini" : "hiddenMain"}>
|
|
||||||
<div className="main-nav nav">
|
|
||||||
<ul className="nav">
|
|
||||||
<li
|
|
||||||
className="resourceTreeCollapse"
|
|
||||||
id="collapseToggleLeftPaneButton"
|
|
||||||
role="button"
|
|
||||||
tabIndex={0}
|
|
||||||
aria-label="Expand Tree"
|
|
||||||
>
|
|
||||||
<span className="leftarrowCollapsed" onClick={toggleLeftPaneExpanded}>
|
|
||||||
<img className="arrowCollapsed" src={arrowLeftImg} alt="Expand" />
|
|
||||||
</span>
|
|
||||||
<span className="collectionCollapsed" onClick={toggleLeftPaneExpanded}>
|
|
||||||
<span>{userContext.apiType} API</span>
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
@@ -83,7 +83,7 @@ export function client(): Cosmos.CosmosClient {
|
|||||||
if (_client) return _client;
|
if (_client) return _client;
|
||||||
const options: Cosmos.CosmosClientOptions = {
|
const options: Cosmos.CosmosClientOptions = {
|
||||||
endpoint: endpoint() || "https://cosmos.azure.com", // CosmosClient gets upset if we pass a bad URL. This should never actually get called
|
endpoint: endpoint() || "https://cosmos.azure.com", // CosmosClient gets upset if we pass a bad URL. This should never actually get called
|
||||||
key: userContext.masterKey,
|
...(!userContext.features.enableAadDataPlane && { key: userContext.masterKey }),
|
||||||
tokenProvider,
|
tokenProvider,
|
||||||
connectionPolicy: {
|
connectionPolicy: {
|
||||||
enableEndpointDiscovery: false,
|
enableEndpointDiscovery: false,
|
||||||
|
|||||||
@@ -1,17 +0,0 @@
|
|||||||
import { userContext } from "../UserContext";
|
|
||||||
|
|
||||||
function isVirtualNetworkFilterEnabled() {
|
|
||||||
return userContext.databaseAccount?.properties?.isVirtualNetworkFilterEnabled;
|
|
||||||
}
|
|
||||||
|
|
||||||
function isIpRulesEnabled() {
|
|
||||||
return userContext.databaseAccount?.properties?.ipRules?.length > 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
function isPrivateEndpointConnectionsEnabled() {
|
|
||||||
return userContext.databaseAccount?.properties?.privateEndpointConnections?.length > 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function isPublicInternetAccessAllowed(): boolean {
|
|
||||||
return !isVirtualNetworkFilterEnabled() && !isIpRulesEnabled() && !isPrivateEndpointConnectionsEnabled();
|
|
||||||
}
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
import React, { FunctionComponent } from "react";
|
|
||||||
import arrowLeftImg from "../../images/imgarrowlefticon.svg";
|
|
||||||
import refreshImg from "../../images/refresh-cosmos.svg";
|
|
||||||
import { AuthType } from "../AuthType";
|
|
||||||
import { userContext } from "../UserContext";
|
|
||||||
|
|
||||||
export interface ResourceTreeProps {
|
|
||||||
toggleLeftPaneExpanded: () => void;
|
|
||||||
isLeftPaneExpanded: boolean;
|
|
||||||
}
|
|
||||||
|
|
||||||
export const ResourceTree: FunctionComponent<ResourceTreeProps> = ({
|
|
||||||
toggleLeftPaneExpanded,
|
|
||||||
isLeftPaneExpanded,
|
|
||||||
}: ResourceTreeProps): JSX.Element => {
|
|
||||||
return (
|
|
||||||
<div id="main" className={isLeftPaneExpanded ? "main" : "hiddenMain"}>
|
|
||||||
{/* Collections Window - - Start */}
|
|
||||||
<div id="mainslide" className="flexContainer">
|
|
||||||
{/* Collections Window Title/Command Bar - Start */}
|
|
||||||
<div className="collectiontitle">
|
|
||||||
<div className="coltitle">
|
|
||||||
<span className="titlepadcol">{userContext.apiType} API</span>
|
|
||||||
<div className="float-right">
|
|
||||||
<span
|
|
||||||
className="padimgcolrefresh"
|
|
||||||
data-test="refreshTree"
|
|
||||||
role="button"
|
|
||||||
data-bind="click: onRefreshResourcesClick, clickBubble: false, event: { keypress: onRefreshDatabasesKeyPress }"
|
|
||||||
tabIndex={0}
|
|
||||||
aria-label="Refresh tree"
|
|
||||||
title="Refresh tree"
|
|
||||||
>
|
|
||||||
<img className="refreshcol" src={refreshImg} alt="Refresh Tree" />
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
className="padimgcolrefresh1"
|
|
||||||
id="expandToggleLeftPaneButton"
|
|
||||||
role="button"
|
|
||||||
onClick={toggleLeftPaneExpanded}
|
|
||||||
tabIndex={0}
|
|
||||||
aria-label="Collapse Tree"
|
|
||||||
title="Collapse Tree"
|
|
||||||
>
|
|
||||||
<img className="refreshcol1" src={arrowLeftImg} alt="Hide" />
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{userContext.authType === AuthType.ResourceToken ? (
|
|
||||||
<div style={{ overflowY: "auto" }} data-bind="react:resourceTreeForResourceToken" />
|
|
||||||
) : (
|
|
||||||
<div style={{ overflowY: "auto" }} data-bind="react:resourceTree" />
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
{/* Collections Window - End */}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
@@ -28,7 +28,6 @@ export interface ConfigContext {
|
|||||||
armAPIVersion?: string;
|
armAPIVersion?: string;
|
||||||
allowedJunoOrigins: string[];
|
allowedJunoOrigins: string[];
|
||||||
enableSchemaAnalyzer: boolean;
|
enableSchemaAnalyzer: boolean;
|
||||||
msalRedirectURI?: string;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Default configuration
|
// Default configuration
|
||||||
|
|||||||
@@ -22,7 +22,6 @@ export interface DatabaseAccountExtendedProperties {
|
|||||||
enableAnalyticalStorage?: boolean;
|
enableAnalyticalStorage?: boolean;
|
||||||
isVirtualNetworkFilterEnabled?: boolean;
|
isVirtualNetworkFilterEnabled?: boolean;
|
||||||
ipRules?: IpRule[];
|
ipRules?: IpRule[];
|
||||||
privateEndpointConnections?: unknown[];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface DatabaseAccountResponseLocation {
|
export interface DatabaseAccountResponseLocation {
|
||||||
@@ -392,6 +391,16 @@ export interface GeospatialConfig {
|
|||||||
type: string;
|
type: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface GatewayDatabaseAccount {
|
||||||
|
MediaLink: string;
|
||||||
|
DatabasesLink: string;
|
||||||
|
MaxMediaStorageUsageInMB: number;
|
||||||
|
CurrentMediaStorageUsageInMB: number;
|
||||||
|
EnableMultipleWriteLocations?: boolean;
|
||||||
|
WritableLocations: RegionEndpoint[];
|
||||||
|
ReadableLocations: RegionEndpoint[];
|
||||||
|
}
|
||||||
|
|
||||||
export interface RegionEndpoint {
|
export interface RegionEndpoint {
|
||||||
name: string;
|
name: string;
|
||||||
documentAccountEndpoint: string;
|
documentAccountEndpoint: string;
|
||||||
@@ -412,6 +421,13 @@ export interface AccountKeys {
|
|||||||
secondaryReadonlyMasterKey: string;
|
secondaryReadonlyMasterKey: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AfecFeature {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
properties: { state: string };
|
||||||
|
type: string;
|
||||||
|
}
|
||||||
|
|
||||||
export interface OperationStatus {
|
export interface OperationStatus {
|
||||||
status: string;
|
status: string;
|
||||||
id?: string;
|
id?: string;
|
||||||
@@ -491,6 +507,91 @@ export interface MongoParameters extends RpParameters {
|
|||||||
analyticalStorageTtl?: number;
|
analyticalStorageTtl?: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface SparkClusterLibrary {
|
||||||
|
name: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Library extends SparkClusterLibrary {
|
||||||
|
properties: {
|
||||||
|
kind: "Jar";
|
||||||
|
source: {
|
||||||
|
kind: "HttpsUri";
|
||||||
|
uri: string;
|
||||||
|
libraryFileName: string;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface LibraryFeedResponse {
|
||||||
|
value: Library[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ArmResource {
|
||||||
|
id: string;
|
||||||
|
location: string;
|
||||||
|
name: string;
|
||||||
|
type: string;
|
||||||
|
tags: { [key: string]: string };
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ArcadiaWorkspaceIdentity {
|
||||||
|
type: string;
|
||||||
|
principalId: string;
|
||||||
|
tenantId: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ArcadiaWorkspaceProperties {
|
||||||
|
managedResourceGroupName: string;
|
||||||
|
provisioningState: string;
|
||||||
|
sqlAdministratorLogin: string;
|
||||||
|
connectivityEndpoints: {
|
||||||
|
artifacts: string;
|
||||||
|
dev: string;
|
||||||
|
spark: string;
|
||||||
|
sql: string;
|
||||||
|
web: string;
|
||||||
|
};
|
||||||
|
defaultDataLakeStorage: {
|
||||||
|
accountUrl: string;
|
||||||
|
filesystem: string;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ArcadiaWorkspaceFeedResponse {
|
||||||
|
value: ArcadiaWorkspace[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ArcadiaWorkspace extends ArmResource {
|
||||||
|
identity: ArcadiaWorkspaceIdentity;
|
||||||
|
properties: ArcadiaWorkspaceProperties;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SparkPoolFeedResponse {
|
||||||
|
value: SparkPool[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SparkPoolProperties {
|
||||||
|
creationDate: string;
|
||||||
|
sparkVersion: string;
|
||||||
|
nodeCount: number;
|
||||||
|
nodeSize: string;
|
||||||
|
nodeSizeFamily: string;
|
||||||
|
provisioningState: string;
|
||||||
|
autoScale: {
|
||||||
|
enabled: boolean;
|
||||||
|
minNodeCount: number;
|
||||||
|
maxNodeCount: number;
|
||||||
|
};
|
||||||
|
autoPause: {
|
||||||
|
enabled: boolean;
|
||||||
|
delayInMinutes: number;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SparkPool extends ArmResource {
|
||||||
|
properties: SparkPoolProperties;
|
||||||
|
}
|
||||||
|
|
||||||
export interface MemoryUsageInfo {
|
export interface MemoryUsageInfo {
|
||||||
freeKB: number;
|
freeKB: number;
|
||||||
totalKB: number;
|
totalKB: number;
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import {
|
|||||||
TriggerDefinition,
|
TriggerDefinition,
|
||||||
UserDefinedFunctionDefinition,
|
UserDefinedFunctionDefinition,
|
||||||
} from "@azure/cosmos";
|
} from "@azure/cosmos";
|
||||||
|
import { CommandButtonComponentProps } from "../Explorer/Controls/CommandButton/CommandButtonComponent";
|
||||||
import Explorer from "../Explorer/Explorer";
|
import Explorer from "../Explorer/Explorer";
|
||||||
import { ConsoleData } from "../Explorer/Menus/NotificationConsole/NotificationConsoleComponent";
|
import { ConsoleData } from "../Explorer/Menus/NotificationConsole/NotificationConsoleComponent";
|
||||||
import { CassandraTableKey, CassandraTableKeys } from "../Explorer/Tables/TableDataClient";
|
import { CassandraTableKey, CassandraTableKeys } from "../Explorer/Tables/TableDataClient";
|
||||||
@@ -14,7 +15,6 @@ import StoredProcedure from "../Explorer/Tree/StoredProcedure";
|
|||||||
import Trigger from "../Explorer/Tree/Trigger";
|
import Trigger from "../Explorer/Tree/Trigger";
|
||||||
import UserDefinedFunction from "../Explorer/Tree/UserDefinedFunction";
|
import UserDefinedFunction from "../Explorer/Tree/UserDefinedFunction";
|
||||||
import { SelfServeType } from "../SelfServe/SelfServeUtils";
|
import { SelfServeType } from "../SelfServe/SelfServeUtils";
|
||||||
import { CollectionCreationDefaults } from "../UserContext";
|
|
||||||
import { SqlTriggerResource } from "../Utils/arm/generatedClients/cosmos/types";
|
import { SqlTriggerResource } from "../Utils/arm/generatedClients/cosmos/types";
|
||||||
import * as DataModels from "./DataModels";
|
import * as DataModels from "./DataModels";
|
||||||
import { SubscriptionType } from "./SubscriptionType";
|
import { SubscriptionType } from "./SubscriptionType";
|
||||||
@@ -276,6 +276,7 @@ export interface TabOptions {
|
|||||||
title: string;
|
title: string;
|
||||||
tabPath: string;
|
tabPath: string;
|
||||||
hashLocation: string;
|
hashLocation: string;
|
||||||
|
onUpdateTabsButtons: (buttons: CommandButtonComponentProps[]) => void;
|
||||||
isTabsContentExpanded?: ko.Observable<boolean>;
|
isTabsContentExpanded?: ko.Observable<boolean>;
|
||||||
onLoadStartKey?: number;
|
onLoadStartKey?: number;
|
||||||
|
|
||||||
@@ -410,6 +411,25 @@ export interface SelfServeFrameInputs {
|
|||||||
flights?: readonly string[];
|
flights?: readonly string[];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface CollectionCreationDefaults {
|
||||||
|
storage: string;
|
||||||
|
throughput: ThroughputDefaults;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ThroughputDefaults {
|
||||||
|
fixed: number;
|
||||||
|
unlimited:
|
||||||
|
| number
|
||||||
|
| {
|
||||||
|
collectionThreshold: number;
|
||||||
|
lessThanOrEqualToThreshold: number;
|
||||||
|
greatThanThreshold: number;
|
||||||
|
};
|
||||||
|
unlimitedmax: number;
|
||||||
|
unlimitedmin: number;
|
||||||
|
shared: number;
|
||||||
|
}
|
||||||
|
|
||||||
export class MonacoEditorSettings {
|
export class MonacoEditorSettings {
|
||||||
public readonly language: string;
|
public readonly language: string;
|
||||||
public readonly readOnly: boolean;
|
public readonly readOnly: boolean;
|
||||||
|
|||||||
14
src/Explorer/ComponentRegisterer.test.ts
Normal file
14
src/Explorer/ComponentRegisterer.test.ts
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
jest.mock("monaco-editor");
|
||||||
|
|
||||||
|
import * as ko from "knockout";
|
||||||
|
import "./ComponentRegisterer";
|
||||||
|
|
||||||
|
describe("Component Registerer", () => {
|
||||||
|
it("should register json-editor component", () => {
|
||||||
|
expect(ko.components.isRegistered("json-editor")).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should register dynamic-list component", () => {
|
||||||
|
expect(ko.components.isRegistered("dynamic-list")).toBe(true);
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -1,8 +1,12 @@
|
|||||||
import * as ko from "knockout";
|
import * as ko from "knockout";
|
||||||
import { DiffEditorComponent } from "./Controls/DiffEditor/DiffEditorComponent";
|
import { DiffEditorComponent } from "./Controls/DiffEditor/DiffEditorComponent";
|
||||||
|
import { DynamicListComponent } from "./Controls/DynamicList/DynamicListComponent";
|
||||||
import { EditorComponent } from "./Controls/Editor/EditorComponent";
|
import { EditorComponent } from "./Controls/Editor/EditorComponent";
|
||||||
import { JsonEditorComponent } from "./Controls/JsonEditor/JsonEditorComponent";
|
import { JsonEditorComponent } from "./Controls/JsonEditor/JsonEditorComponent";
|
||||||
|
import { ThroughputInputComponentAutoPilotV3 } from "./Controls/ThroughputInput/ThroughputInputComponentAutoPilotV3";
|
||||||
|
|
||||||
ko.components.register("editor", new EditorComponent());
|
ko.components.register("editor", new EditorComponent());
|
||||||
ko.components.register("json-editor", new JsonEditorComponent());
|
ko.components.register("json-editor", new JsonEditorComponent());
|
||||||
ko.components.register("diff-editor", new DiffEditorComponent());
|
ko.components.register("diff-editor", new DiffEditorComponent());
|
||||||
|
ko.components.register("dynamic-list", DynamicListComponent);
|
||||||
|
ko.components.register("throughput-input-autopilot-v3", ThroughputInputComponentAutoPilotV3);
|
||||||
|
|||||||
@@ -11,12 +11,12 @@ import DeleteUDFIcon from "../../images/DeleteUDF.svg";
|
|||||||
import HostedTerminalIcon from "../../images/Hosted-Terminal.svg";
|
import HostedTerminalIcon from "../../images/Hosted-Terminal.svg";
|
||||||
import * as ViewModels from "../Contracts/ViewModels";
|
import * as ViewModels from "../Contracts/ViewModels";
|
||||||
import { userContext } from "../UserContext";
|
import { userContext } from "../UserContext";
|
||||||
import { getCollectionName, getDatabaseName } from "../Utils/APITypeUtils";
|
|
||||||
import { TreeNodeMenuItem } from "./Controls/TreeComponent/TreeComponent";
|
import { TreeNodeMenuItem } from "./Controls/TreeComponent/TreeComponent";
|
||||||
import Explorer from "./Explorer";
|
import Explorer from "./Explorer";
|
||||||
import StoredProcedure from "./Tree/StoredProcedure";
|
import StoredProcedure from "./Tree/StoredProcedure";
|
||||||
import Trigger from "./Tree/Trigger";
|
import Trigger from "./Tree/Trigger";
|
||||||
import UserDefinedFunction from "./Tree/UserDefinedFunction";
|
import UserDefinedFunction from "./Tree/UserDefinedFunction";
|
||||||
|
|
||||||
export interface CollectionContextMenuButtonParams {
|
export interface CollectionContextMenuButtonParams {
|
||||||
databaseId: string;
|
databaseId: string;
|
||||||
collectionId: string;
|
collectionId: string;
|
||||||
@@ -34,7 +34,7 @@ export class ResourceTreeContextMenuButtonFactory {
|
|||||||
{
|
{
|
||||||
iconSrc: AddCollectionIcon,
|
iconSrc: AddCollectionIcon,
|
||||||
onClick: () => container.onNewCollectionClicked(databaseId),
|
onClick: () => container.onNewCollectionClicked(databaseId),
|
||||||
label: `New ${getCollectionName()}`,
|
label: container.addCollectionText(),
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -42,7 +42,7 @@ export class ResourceTreeContextMenuButtonFactory {
|
|||||||
items.push({
|
items.push({
|
||||||
iconSrc: DeleteDatabaseIcon,
|
iconSrc: DeleteDatabaseIcon,
|
||||||
onClick: () => container.openDeleteDatabaseConfirmationPane(),
|
onClick: () => container.openDeleteDatabaseConfirmationPane(),
|
||||||
label: `Delete ${getDatabaseName()}`,
|
label: container.deleteDatabaseText(),
|
||||||
styleClass: "deleteDatabaseMenuItem",
|
styleClass: "deleteDatabaseMenuItem",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -115,7 +115,7 @@ export class ResourceTreeContextMenuButtonFactory {
|
|||||||
items.push({
|
items.push({
|
||||||
iconSrc: DeleteCollectionIcon,
|
iconSrc: DeleteCollectionIcon,
|
||||||
onClick: () => container.openDeleteCollectionConfirmationPane(),
|
onClick: () => container.openDeleteCollectionConfirmationPane(),
|
||||||
label: `Delete ${getCollectionName()}`,
|
label: container.deleteCollectionText(),
|
||||||
styleClass: "deleteCollectionMenuItem",
|
styleClass: "deleteCollectionMenuItem",
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
142
src/Explorer/Controls/Arcadia/ArcadiaMenuPicker.tsx
Normal file
142
src/Explorer/Controls/Arcadia/ArcadiaMenuPicker.tsx
Normal file
@@ -0,0 +1,142 @@
|
|||||||
|
import { DefaultButton, IButtonStyles, IContextualMenuItem, IContextualMenuProps } from "@fluentui/react";
|
||||||
|
import * as React from "react";
|
||||||
|
import { getErrorMessage } from "../../../Common/ErrorHandlingUtils";
|
||||||
|
import * as Logger from "../../../Common/Logger";
|
||||||
|
import { ArcadiaWorkspace, SparkPool } from "../../../Contracts/DataModels";
|
||||||
|
|
||||||
|
export interface ArcadiaMenuPickerProps {
|
||||||
|
selectText?: string;
|
||||||
|
disableSubmenu?: boolean;
|
||||||
|
selectedSparkPool: string;
|
||||||
|
workspaces: ArcadiaWorkspaceItem[];
|
||||||
|
onSparkPoolSelect: (
|
||||||
|
e: React.MouseEvent<HTMLElement> | React.KeyboardEvent<HTMLElement>,
|
||||||
|
item: IContextualMenuItem
|
||||||
|
) => boolean | void;
|
||||||
|
onCreateNewWorkspaceClicked: () => boolean | void;
|
||||||
|
onCreateNewSparkPoolClicked: (workspaceResourceId: string) => boolean | void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ArcadiaMenuPickerStates {
|
||||||
|
selectedSparkPool: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ArcadiaWorkspaceItem extends ArcadiaWorkspace {
|
||||||
|
sparkPools: SparkPool[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export class ArcadiaMenuPicker extends React.Component<ArcadiaMenuPickerProps, ArcadiaMenuPickerStates> {
|
||||||
|
constructor(props: ArcadiaMenuPickerProps) {
|
||||||
|
super(props);
|
||||||
|
this.state = {
|
||||||
|
selectedSparkPool: props.selectedSparkPool,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private _onSparkPoolClicked = (
|
||||||
|
e: React.MouseEvent<HTMLElement> | React.KeyboardEvent<HTMLElement>,
|
||||||
|
item: IContextualMenuItem
|
||||||
|
): boolean | void => {
|
||||||
|
try {
|
||||||
|
this.props.onSparkPoolSelect(e, item);
|
||||||
|
this.setState({
|
||||||
|
selectedSparkPool: item.text,
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
Logger.logError(getErrorMessage(error), "ArcadiaMenuPicker/_onSparkPoolClicked");
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
private _onCreateNewWorkspaceClicked = (
|
||||||
|
e: React.MouseEvent<HTMLElement> | React.KeyboardEvent<HTMLElement>,
|
||||||
|
item: IContextualMenuItem
|
||||||
|
): boolean | void => {
|
||||||
|
this.props.onCreateNewWorkspaceClicked();
|
||||||
|
};
|
||||||
|
|
||||||
|
private _onCreateNewSparkPoolClicked = (
|
||||||
|
e: React.MouseEvent<HTMLElement> | React.KeyboardEvent<HTMLElement>,
|
||||||
|
item: IContextualMenuItem
|
||||||
|
): boolean | void => {
|
||||||
|
this.props.onCreateNewSparkPoolClicked(item.key);
|
||||||
|
};
|
||||||
|
|
||||||
|
public render() {
|
||||||
|
const { workspaces } = this.props;
|
||||||
|
let workspaceMenuItems: IContextualMenuItem[] = workspaces.map((workspace) => {
|
||||||
|
let sparkPoolsMenuProps: IContextualMenuProps = {
|
||||||
|
items: workspace.sparkPools.map(
|
||||||
|
(sparkpool): IContextualMenuItem => ({
|
||||||
|
key: sparkpool.id,
|
||||||
|
text: sparkpool.name,
|
||||||
|
onClick: this._onSparkPoolClicked,
|
||||||
|
})
|
||||||
|
),
|
||||||
|
};
|
||||||
|
if (!sparkPoolsMenuProps.items.length) {
|
||||||
|
sparkPoolsMenuProps.items.push({
|
||||||
|
key: workspace.id,
|
||||||
|
text: "Create new spark pool",
|
||||||
|
onClick: this._onCreateNewSparkPoolClicked,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
key: workspace.id,
|
||||||
|
text: workspace.name,
|
||||||
|
subMenuProps: this.props.disableSubmenu ? undefined : sparkPoolsMenuProps,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!workspaceMenuItems.length) {
|
||||||
|
workspaceMenuItems.push({
|
||||||
|
key: "create_workspace",
|
||||||
|
text: "Create new workspace",
|
||||||
|
onClick: this._onCreateNewWorkspaceClicked,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const dropdownStyle: IButtonStyles = {
|
||||||
|
root: {
|
||||||
|
backgroundColor: "transparent",
|
||||||
|
margin: "auto 5px",
|
||||||
|
padding: "0",
|
||||||
|
border: "0",
|
||||||
|
},
|
||||||
|
rootHovered: {
|
||||||
|
backgroundColor: "transparent",
|
||||||
|
},
|
||||||
|
rootChecked: {
|
||||||
|
backgroundColor: "transparent",
|
||||||
|
},
|
||||||
|
rootFocused: {
|
||||||
|
backgroundColor: "transparent",
|
||||||
|
},
|
||||||
|
rootExpanded: {
|
||||||
|
backgroundColor: "transparent",
|
||||||
|
},
|
||||||
|
flexContainer: {
|
||||||
|
height: "30px",
|
||||||
|
border: "1px solid #a6a6a6",
|
||||||
|
padding: "0 8px",
|
||||||
|
},
|
||||||
|
label: {
|
||||||
|
fontWeight: "400",
|
||||||
|
fontSize: "12px",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<DefaultButton
|
||||||
|
text={this.state.selectedSparkPool || this.props.selectText || "Select a Spark pool"}
|
||||||
|
persistMenu={true}
|
||||||
|
className="arcadia-menu-picker"
|
||||||
|
menuProps={{
|
||||||
|
items: workspaceMenuItems,
|
||||||
|
}}
|
||||||
|
styles={dropdownStyle}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,12 +1,15 @@
|
|||||||
|
import * as StringUtils from "../../../Utils/StringUtils";
|
||||||
|
import { KeyCodes } from "../../../Common/Constants";
|
||||||
|
import * as TelemetryProcessor from "../../../Shared/Telemetry/TelemetryProcessor";
|
||||||
|
import { Action, ActionModifiers } from "../../../Shared/Telemetry/TelemetryConstants";
|
||||||
|
import CollapseChevronDownIcon from "../../../../images/QueryBuilder/CollapseChevronDown_16x.png";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* React component for Command button component.
|
* React component for Command button component.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import CollapseChevronDownIcon from "../../../../images/QueryBuilder/CollapseChevronDown_16x.png";
|
import { ArcadiaMenuPickerProps } from "../Arcadia/ArcadiaMenuPicker";
|
||||||
import { KeyCodes } from "../../../Common/Constants";
|
|
||||||
import { Action, ActionModifiers } from "../../../Shared/Telemetry/TelemetryConstants";
|
|
||||||
import * as TelemetryProcessor from "../../../Shared/Telemetry/TelemetryProcessor";
|
|
||||||
import * as StringUtils from "../../../Utils/StringUtils";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Options for this component
|
* Options for this component
|
||||||
@@ -111,6 +114,15 @@ export interface CommandButtonComponentProps {
|
|||||||
* Aria-label for the button
|
* Aria-label for the button
|
||||||
*/
|
*/
|
||||||
ariaLabel: string;
|
ariaLabel: string;
|
||||||
|
//TODO: generalize customized command bar
|
||||||
|
/**
|
||||||
|
* If set to true, will render arcadia picker
|
||||||
|
*/
|
||||||
|
isArcadiaPicker?: boolean;
|
||||||
|
/**
|
||||||
|
* props to render arcadia picker
|
||||||
|
*/
|
||||||
|
arcadiaProps?: ArcadiaMenuPickerProps;
|
||||||
}
|
}
|
||||||
|
|
||||||
export class CommandButtonComponent extends React.Component<CommandButtonComponentProps> {
|
export class CommandButtonComponent extends React.Component<CommandButtonComponentProps> {
|
||||||
|
|||||||
64
src/Explorer/Controls/DynamicList/DynamicList.test.ts
Normal file
64
src/Explorer/Controls/DynamicList/DynamicList.test.ts
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
import * as ko from "knockout";
|
||||||
|
import { DynamicListComponent, DynamicListParams, DynamicListItem } from "./DynamicListComponent";
|
||||||
|
|
||||||
|
const $ = (selector: string) => document.querySelector(selector) as HTMLElement;
|
||||||
|
|
||||||
|
function buildComponent(buttonOptions: any) {
|
||||||
|
document.body.innerHTML = DynamicListComponent.template as any;
|
||||||
|
const vm = new DynamicListComponent.viewModel(buttonOptions);
|
||||||
|
ko.applyBindings(vm);
|
||||||
|
}
|
||||||
|
|
||||||
|
describe("Dynamic List Component", () => {
|
||||||
|
const mockPlaceHolder = "Write here";
|
||||||
|
const mockButton = "Add something";
|
||||||
|
const mockValue = "/someText";
|
||||||
|
const mockAriaLabel = "Add ariaLabel";
|
||||||
|
const items: ko.ObservableArray<DynamicListItem> = ko.observableArray<DynamicListItem>();
|
||||||
|
|
||||||
|
function buildListOptions(
|
||||||
|
items: ko.ObservableArray<DynamicListItem>,
|
||||||
|
placeholder?: string,
|
||||||
|
mockButton?: string
|
||||||
|
): DynamicListParams {
|
||||||
|
return {
|
||||||
|
placeholder: placeholder,
|
||||||
|
listItems: items,
|
||||||
|
buttonText: mockButton,
|
||||||
|
ariaLabel: mockAriaLabel,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
afterEach(() => {
|
||||||
|
ko.cleanNode(document);
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("Rendering", () => {
|
||||||
|
it("should display button text", () => {
|
||||||
|
const params = buildListOptions(items, mockPlaceHolder, mockButton);
|
||||||
|
buildComponent(params);
|
||||||
|
expect($(".dynamicListItemAdd").textContent).toContain(mockButton);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("Behavior", () => {
|
||||||
|
it("should add items to the list", () => {
|
||||||
|
const params = buildListOptions(items, mockPlaceHolder, mockButton);
|
||||||
|
buildComponent(params);
|
||||||
|
$(".dynamicListItemAdd").click();
|
||||||
|
expect(items().length).toBe(1);
|
||||||
|
const input = document.getElementsByClassName("dynamicListItem").item(0).children[0];
|
||||||
|
input.setAttribute("value", mockValue);
|
||||||
|
input.dispatchEvent(new Event("change"));
|
||||||
|
input.dispatchEvent(new Event("blur"));
|
||||||
|
expect(items()[0].value()).toBe(mockValue);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should remove items from the list", () => {
|
||||||
|
const params = buildListOptions(items, mockPlaceHolder);
|
||||||
|
buildComponent(params);
|
||||||
|
$(".dynamicListItemDelete").click();
|
||||||
|
expect(items().length).toBe(0);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
59
src/Explorer/Controls/DynamicList/DynamicListComponent.less
Normal file
59
src/Explorer/Controls/DynamicList/DynamicListComponent.less
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
@import "../../../../less/Common/Constants";
|
||||||
|
|
||||||
|
.dynamicList {
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
.dynamicListContainer {
|
||||||
|
.dynamicListItem {
|
||||||
|
justify-content: space-around;
|
||||||
|
margin-bottom: @MediumSpace;
|
||||||
|
|
||||||
|
input {
|
||||||
|
width: @newCollectionPaneInputWidth;
|
||||||
|
margin: auto;
|
||||||
|
font-size: @mediumFontSize;
|
||||||
|
padding: @SmallSpace @DefaultSpace;
|
||||||
|
color: @BaseDark;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dynamicListItemDelete {
|
||||||
|
padding: @SmallSpace @SmallSpace @DefaultSpace;
|
||||||
|
margin-left: @SmallSpace;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
.hover();
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
.active();
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
.dataExplorerIcons();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.dynamicListItemNew {
|
||||||
|
margin-top: @LargeSpace;
|
||||||
|
|
||||||
|
.dynamicListItemAdd {
|
||||||
|
padding: @DefaultSpace;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
.hover();
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
.active();
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
.dataExplorerIcons();
|
||||||
|
margin: 0px @SmallSpace @SmallSpace 0px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
117
src/Explorer/Controls/DynamicList/DynamicListComponent.ts
Normal file
117
src/Explorer/Controls/DynamicList/DynamicListComponent.ts
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
/**
|
||||||
|
* Dynamic list:
|
||||||
|
*
|
||||||
|
* Creates a list of dynamic inputs that can be populated and deleted.
|
||||||
|
*
|
||||||
|
* How to use in your markup:
|
||||||
|
* <dynamic-list params="{ listItems: anObservableArrayOfDynamicListItem, placeholder: 'Text to display in placeholder', ariaLabel: 'Text for aria-label', buttonText: 'Add item' }">
|
||||||
|
* </dynamic-list>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
import * as ko from "knockout";
|
||||||
|
import { WaitsForTemplateViewModel } from "../../WaitsForTemplateViewModel";
|
||||||
|
import { KeyCodes } from "../../../Common/Constants";
|
||||||
|
import template from "./dynamic-list.html";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parameters for this component
|
||||||
|
*/
|
||||||
|
export interface DynamicListParams {
|
||||||
|
/**
|
||||||
|
* Observable list of items to update
|
||||||
|
*/
|
||||||
|
listItems: ko.ObservableArray<DynamicListItem>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Placeholder text to use on inputs
|
||||||
|
*/
|
||||||
|
placeholder?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Text to use as aria-label
|
||||||
|
*/
|
||||||
|
ariaLabel: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Text for the button to add items
|
||||||
|
*/
|
||||||
|
buttonText?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Callback triggered when the template is bound to the component (for testing purposes)
|
||||||
|
*/
|
||||||
|
onTemplateReady?: () => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Item in the dynamic list
|
||||||
|
*/
|
||||||
|
export interface DynamicListItem {
|
||||||
|
value: ko.Observable<string>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class DynamicListViewModel extends WaitsForTemplateViewModel {
|
||||||
|
public placeholder: string;
|
||||||
|
public ariaLabel: string;
|
||||||
|
public buttonText: string;
|
||||||
|
public newItem: ko.Observable<string>;
|
||||||
|
public isTemplateReady: ko.Observable<boolean>;
|
||||||
|
public listItems: ko.ObservableArray<DynamicListItem>;
|
||||||
|
|
||||||
|
public constructor(options: DynamicListParams) {
|
||||||
|
super();
|
||||||
|
super.onTemplateReady((isTemplateReady: boolean) => {
|
||||||
|
if (isTemplateReady && options.onTemplateReady) {
|
||||||
|
options.onTemplateReady();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const params: DynamicListParams = options;
|
||||||
|
const paramsPlaceholder: string = params.placeholder;
|
||||||
|
const paramsButtonText: string = params.buttonText;
|
||||||
|
this.placeholder = paramsPlaceholder || "Write a value";
|
||||||
|
this.ariaLabel = "Unique keys";
|
||||||
|
this.buttonText = paramsButtonText || "Add item";
|
||||||
|
this.listItems = params.listItems || ko.observableArray<DynamicListItem>();
|
||||||
|
this.newItem = ko.observable("");
|
||||||
|
}
|
||||||
|
|
||||||
|
public removeItem = (data: any, event: MouseEvent | KeyboardEvent): void => {
|
||||||
|
const context = ko.contextFor(event.target as Node);
|
||||||
|
this.listItems.splice(context.$index(), 1);
|
||||||
|
document.getElementById("addUniqueKeyBtn").focus();
|
||||||
|
};
|
||||||
|
|
||||||
|
public onRemoveItemKeyPress = (data: any, event: KeyboardEvent, source: any): boolean => {
|
||||||
|
if (event.keyCode === KeyCodes.Enter || event.keyCode === KeyCodes.Space) {
|
||||||
|
this.removeItem(data, event);
|
||||||
|
(document.querySelector(".dynamicListItem:last-of-type input") as HTMLElement).focus();
|
||||||
|
event.stopPropagation();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
|
||||||
|
public addItem(): void {
|
||||||
|
this.listItems.push({ value: ko.observable("") });
|
||||||
|
(document.querySelector(".dynamicListItem:last-of-type input") as HTMLElement).focus();
|
||||||
|
}
|
||||||
|
|
||||||
|
public onAddItemKeyPress = (source: any, event: KeyboardEvent): boolean => {
|
||||||
|
if (event.keyCode === KeyCodes.Enter || event.keyCode === KeyCodes.Space) {
|
||||||
|
this.addItem();
|
||||||
|
event.stopPropagation();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper class for ko component registration
|
||||||
|
*/
|
||||||
|
export const DynamicListComponent = {
|
||||||
|
viewModel: DynamicListViewModel,
|
||||||
|
template,
|
||||||
|
};
|
||||||
34
src/Explorer/Controls/DynamicList/dynamic-list.html
Normal file
34
src/Explorer/Controls/DynamicList/dynamic-list.html
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<div class="dynamicList" data-bind="setTemplateReady: true">
|
||||||
|
<div class="dynamicListContainer" data-bind="foreach: listItems">
|
||||||
|
<div class="dynamicListItem">
|
||||||
|
<input
|
||||||
|
id="uniqueKeyItems"
|
||||||
|
type="text"
|
||||||
|
autocomplete="off"
|
||||||
|
data-bind="value: value, attr: {placeholder: $parent.placeholder, 'aria-label': $parent.ariaLabel}"
|
||||||
|
/>
|
||||||
|
<span
|
||||||
|
class="dynamicListItemDelete"
|
||||||
|
title="Remove item"
|
||||||
|
role="button"
|
||||||
|
aria-label="Remove item"
|
||||||
|
tabindex="0"
|
||||||
|
data-bind="click: $parent.removeItem, event: { keydown: $parent.onRemoveItemKeyPress }"
|
||||||
|
>
|
||||||
|
<img src="/delete.svg" alt="Remove item" />
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="dynamicListItemNew">
|
||||||
|
<span
|
||||||
|
class="dynamicListItemAdd"
|
||||||
|
id="addUniqueKeyBtn"
|
||||||
|
role="button"
|
||||||
|
aria-label="Add unique key"
|
||||||
|
tabindex="0"
|
||||||
|
data-bind="click: addItem, event: { keydown: onAddItemKeyPress }"
|
||||||
|
>
|
||||||
|
<img src="/Add-property.svg" data-bind="attr: {alt: buttonText}" /> <span data-bind="text: buttonText"></span>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
@@ -39,6 +39,7 @@ describe("SettingsComponent", () => {
|
|||||||
tabPath: "",
|
tabPath: "",
|
||||||
node: undefined,
|
node: undefined,
|
||||||
hashLocation: "settings",
|
hashLocation: "settings",
|
||||||
|
onUpdateTabsButtons: undefined,
|
||||||
}),
|
}),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -18,7 +18,6 @@ import { MongoDBCollectionResource, MongoIndex } from "../../../Utils/arm/genera
|
|||||||
import * as AutoPilotUtils from "../../../Utils/AutoPilotUtils";
|
import * as AutoPilotUtils from "../../../Utils/AutoPilotUtils";
|
||||||
import { CommandButtonComponentProps } from "../../Controls/CommandButton/CommandButtonComponent";
|
import { CommandButtonComponentProps } from "../../Controls/CommandButton/CommandButtonComponent";
|
||||||
import Explorer from "../../Explorer";
|
import Explorer from "../../Explorer";
|
||||||
import { useCommandBar } from "../../Menus/CommandBar/CommandBarComponentAdapter";
|
|
||||||
import { SettingsTabV2 } from "../../Tabs/SettingsTabV2";
|
import { SettingsTabV2 } from "../../Tabs/SettingsTabV2";
|
||||||
import "./SettingsComponent.less";
|
import "./SettingsComponent.less";
|
||||||
import { mongoIndexingPolicyAADError } from "./SettingsRenderUtils";
|
import { mongoIndexingPolicyAADError } from "./SettingsRenderUtils";
|
||||||
@@ -223,13 +222,13 @@ export class SettingsComponent extends React.Component<SettingsComponentProps, S
|
|||||||
this.setAutoPilotStates();
|
this.setAutoPilotStates();
|
||||||
this.setBaseline();
|
this.setBaseline();
|
||||||
if (this.props.settingsTab.isActive()) {
|
if (this.props.settingsTab.isActive()) {
|
||||||
useCommandBar.getState().setContextButtons(this.getTabsButtons());
|
this.props.settingsTab.getContainer().onUpdateTabsButtons(this.getTabsButtons());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidUpdate(): void {
|
componentDidUpdate(): void {
|
||||||
if (this.props.settingsTab.isActive()) {
|
if (this.props.settingsTab.isActive()) {
|
||||||
useCommandBar.getState().setContextButtons(this.getTabsButtons());
|
this.props.settingsTab.getContainer().onUpdateTabsButtons(this.getTabsButtons());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -4,7 +4,7 @@ import { ThroughputInput } from "./ThroughputInput";
|
|||||||
const props = {
|
const props = {
|
||||||
isDatabase: false,
|
isDatabase: false,
|
||||||
showFreeTierExceedThroughputTooltip: true,
|
showFreeTierExceedThroughputTooltip: true,
|
||||||
isSharded: true,
|
isSharded: false,
|
||||||
setThroughputValue: () => jest.fn(),
|
setThroughputValue: () => jest.fn(),
|
||||||
setIsAutoscale: () => jest.fn(),
|
setIsAutoscale: () => jest.fn(),
|
||||||
onCostAcknowledgeChange: () => jest.fn(),
|
onCostAcknowledgeChange: () => jest.fn(),
|
||||||
|
|||||||
@@ -41,16 +41,9 @@ export const ThroughputInput: FunctionComponent<ThroughputInputProps> = ({
|
|||||||
throughputHeaderText = AutoPilotUtils.getAutoPilotHeaderText().toLocaleLowerCase();
|
throughputHeaderText = AutoPilotUtils.getAutoPilotHeaderText().toLocaleLowerCase();
|
||||||
} else {
|
} else {
|
||||||
const minRU: string = SharedConstants.CollectionCreation.DefaultCollectionRUs400.toLocaleString();
|
const minRU: string = SharedConstants.CollectionCreation.DefaultCollectionRUs400.toLocaleString();
|
||||||
|
const maxRU: string = userContext.isTryCosmosDBSubscription
|
||||||
let maxRU: string;
|
? Constants.TryCosmosExperience.maxRU.toLocaleString()
|
||||||
if (userContext.isTryCosmosDBSubscription) {
|
: "unlimited";
|
||||||
maxRU = Constants.TryCosmosExperience.maxRU.toLocaleString();
|
|
||||||
} else if (!isSharded) {
|
|
||||||
maxRU = "10000";
|
|
||||||
} else {
|
|
||||||
maxRU = "unlimited";
|
|
||||||
}
|
|
||||||
|
|
||||||
throughputHeaderText = `throughput (${minRU} - ${maxRU} RU/s)`;
|
throughputHeaderText = `throughput (${minRU} - ${maxRU} RU/s)`;
|
||||||
}
|
}
|
||||||
return `${isDatabase ? "Database" : getCollectionName()} ${throughputHeaderText}`;
|
return `${isDatabase ? "Database" : getCollectionName()} ${throughputHeaderText}`;
|
||||||
|
|||||||
@@ -0,0 +1,308 @@
|
|||||||
|
import * as ko from "knockout";
|
||||||
|
import { KeyCodes } from "../../../Common/Constants";
|
||||||
|
import * as ViewModels from "../../../Contracts/ViewModels";
|
||||||
|
import { FreeTierLimits } from "../../../Shared/Constants";
|
||||||
|
import { Action, ActionModifiers } from "../../../Shared/Telemetry/TelemetryConstants";
|
||||||
|
import * as TelemetryProcessor from "../../../Shared/Telemetry/TelemetryProcessor";
|
||||||
|
import * as AutoPilotUtils from "../../../Utils/AutoPilotUtils";
|
||||||
|
import { WaitsForTemplateViewModel } from "../../WaitsForTemplateViewModel";
|
||||||
|
import ThroughputInputComponentAutoscaleV3 from "./ThroughputInputComponentAutoscaleV3.html";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Throughput Input:
|
||||||
|
*
|
||||||
|
* Creates a set of controls to input, sanitize and increase/decrease throughput
|
||||||
|
*
|
||||||
|
* How to use in your markup:
|
||||||
|
* <throughput-input params="{ value: anObservableToHoldTheValue, minimum: anObservableWithMinimum, maximum: anObservableWithMaximum }">
|
||||||
|
* </throughput-input>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parameters for this component
|
||||||
|
*/
|
||||||
|
export interface ThroughputInputParams {
|
||||||
|
/**
|
||||||
|
* Callback triggered when the template is bound to the component (for testing purposes)
|
||||||
|
*/
|
||||||
|
onTemplateReady?: () => void;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Observable to bind the Throughput value to
|
||||||
|
*/
|
||||||
|
value: ViewModels.Editable<number>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Text to use as id for testing
|
||||||
|
*/
|
||||||
|
testId: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Text to use as aria-label
|
||||||
|
*/
|
||||||
|
ariaLabel?: ko.Observable<string>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Minimum value in the range
|
||||||
|
*/
|
||||||
|
minimum: ko.Observable<number>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Maximum value in the range
|
||||||
|
*/
|
||||||
|
maximum: ko.Observable<number>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Step value for increase/decrease
|
||||||
|
*/
|
||||||
|
step?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Observable to bind the Throughput enabled status
|
||||||
|
*/
|
||||||
|
isEnabled?: ko.Observable<boolean>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Should show pricing controls
|
||||||
|
*/
|
||||||
|
costsVisible: ko.Observable<boolean>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* RU price
|
||||||
|
*/
|
||||||
|
requestUnitsUsageCost: ko.Computed<string>; // Our code assigns to ko.Computed, but unit test assigns to ko.Observable
|
||||||
|
|
||||||
|
/**
|
||||||
|
* State of the spending acknowledge checkbox
|
||||||
|
*/
|
||||||
|
spendAckChecked?: ko.Observable<boolean>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* id of the spending acknowledge checkbox
|
||||||
|
*/
|
||||||
|
spendAckId?: ko.Observable<string>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* spending acknowledge text
|
||||||
|
*/
|
||||||
|
spendAckText?: ko.Observable<string>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show spending acknowledge controls
|
||||||
|
*/
|
||||||
|
spendAckVisible?: ko.Observable<boolean>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Display * to the left of the label
|
||||||
|
*/
|
||||||
|
showAsMandatory: boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If true, it will display a text to prompt users to use unlimited collections to go beyond max for fixed
|
||||||
|
*/
|
||||||
|
isFixed: boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Label of the provisioned throughut control
|
||||||
|
*/
|
||||||
|
label: ko.Observable<string>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Text of the info bubble for provisioned throughut control
|
||||||
|
*/
|
||||||
|
infoBubbleText?: ko.Observable<string>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Computed value that decides if value can exceed maximum allowable value
|
||||||
|
*/
|
||||||
|
canExceedMaximumValue?: ko.Computed<boolean>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* CSS classes to apply on input element
|
||||||
|
*/
|
||||||
|
cssClass?: string;
|
||||||
|
|
||||||
|
isAutoPilotSelected: ko.Observable<boolean>;
|
||||||
|
throughputAutoPilotRadioId: string;
|
||||||
|
throughputProvisionedRadioId: string;
|
||||||
|
throughputModeRadioName: string;
|
||||||
|
maxAutoPilotThroughputSet: ViewModels.Editable<number>;
|
||||||
|
autoPilotUsageCost: ko.Computed<string>;
|
||||||
|
overrideWithAutoPilotSettings: ko.Observable<boolean>;
|
||||||
|
overrideWithProvisionedThroughputSettings: ko.Observable<boolean>;
|
||||||
|
freeTierExceedThroughputTooltip?: ko.Observable<string>;
|
||||||
|
freeTierExceedThroughputWarning?: ko.Observable<string>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class ThroughputInputViewModel extends WaitsForTemplateViewModel {
|
||||||
|
public ariaLabel: ko.Observable<string>;
|
||||||
|
public canExceedMaximumValue: ko.Computed<boolean>;
|
||||||
|
public step: ko.Computed<number>;
|
||||||
|
public testId: string;
|
||||||
|
public value: ViewModels.Editable<number>;
|
||||||
|
public minimum: ko.Observable<number>;
|
||||||
|
public maximum: ko.Observable<number>;
|
||||||
|
public isEnabled: ko.Observable<boolean>;
|
||||||
|
public cssClass: string;
|
||||||
|
public decreaseButtonAriaLabel: string;
|
||||||
|
public increaseButtonAriaLabel: string;
|
||||||
|
public costsVisible: ko.Observable<boolean>;
|
||||||
|
public requestUnitsUsageCost: ko.Computed<string>;
|
||||||
|
public spendAckChecked: ko.Observable<boolean>;
|
||||||
|
public spendAckId: ko.Observable<string>;
|
||||||
|
public spendAckText: ko.Observable<string>;
|
||||||
|
public spendAckVisible: ko.Observable<boolean>;
|
||||||
|
public showAsMandatory: boolean;
|
||||||
|
public infoBubbleText: string | ko.Observable<string>;
|
||||||
|
public label: ko.Observable<string>;
|
||||||
|
public isFixed: boolean;
|
||||||
|
public isAutoPilotSelected: ko.Observable<boolean>;
|
||||||
|
public throughputAutoPilotRadioId: string;
|
||||||
|
public throughputProvisionedRadioId: string;
|
||||||
|
public throughputModeRadioName: string;
|
||||||
|
public maxAutoPilotThroughputSet: ko.Observable<number>;
|
||||||
|
public autoPilotUsageCost: ko.Computed<string>;
|
||||||
|
public minAutoPilotThroughput: ko.Observable<number>;
|
||||||
|
public overrideWithAutoPilotSettings: ko.Observable<boolean>;
|
||||||
|
public overrideWithProvisionedThroughputSettings: ko.Observable<boolean>;
|
||||||
|
public isManualThroughputInputFieldRequired: ko.Computed<boolean>;
|
||||||
|
public isAutoscaleThroughputInputFieldRequired: ko.Computed<boolean>;
|
||||||
|
public freeTierExceedThroughputTooltip: ko.Observable<string>;
|
||||||
|
public freeTierExceedThroughputWarning: ko.Observable<string>;
|
||||||
|
public showFreeTierExceedThroughputTooltip: ko.Computed<boolean>;
|
||||||
|
public showFreeTierExceedThroughputWarning: ko.Computed<boolean>;
|
||||||
|
|
||||||
|
public constructor(options: ThroughputInputParams) {
|
||||||
|
super();
|
||||||
|
super.onTemplateReady((isTemplateReady: boolean) => {
|
||||||
|
if (isTemplateReady && options.onTemplateReady) {
|
||||||
|
options.onTemplateReady();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const params: ThroughputInputParams = options;
|
||||||
|
this.testId = params.testId || "ThroughputValue";
|
||||||
|
this.ariaLabel = ko.observable((params.ariaLabel && params.ariaLabel()) || "");
|
||||||
|
this.canExceedMaximumValue = params.canExceedMaximumValue || ko.computed(() => false);
|
||||||
|
this.isEnabled = params.isEnabled || ko.observable(true);
|
||||||
|
this.cssClass = params.cssClass || "textfontclr collid migration";
|
||||||
|
this.minimum = params.minimum;
|
||||||
|
this.maximum = params.maximum;
|
||||||
|
this.value = params.value;
|
||||||
|
this.costsVisible = options.costsVisible;
|
||||||
|
this.requestUnitsUsageCost = options.requestUnitsUsageCost;
|
||||||
|
this.spendAckChecked = options.spendAckChecked || ko.observable<boolean>(false);
|
||||||
|
this.spendAckId = options.spendAckId || ko.observable<string>();
|
||||||
|
this.spendAckText = options.spendAckText || ko.observable<string>();
|
||||||
|
this.spendAckVisible = options.spendAckVisible || ko.observable<boolean>(false);
|
||||||
|
this.showAsMandatory = !!options.showAsMandatory;
|
||||||
|
this.isFixed = !!options.isFixed;
|
||||||
|
this.infoBubbleText = options.infoBubbleText || ko.observable<string>();
|
||||||
|
this.label = options.label || ko.observable<string>();
|
||||||
|
this.isAutoPilotSelected = options.isAutoPilotSelected || ko.observable<boolean>(false);
|
||||||
|
this.isAutoPilotSelected.subscribe((value) => {
|
||||||
|
TelemetryProcessor.trace(Action.ToggleAutoscaleSetting, ActionModifiers.Mark, {
|
||||||
|
changedSelectedValueTo: value ? ActionModifiers.ToggleAutoscaleOn : ActionModifiers.ToggleAutoscaleOff,
|
||||||
|
dataExplorerArea: "Scale Tab V1",
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
this.throughputAutoPilotRadioId = options.throughputAutoPilotRadioId;
|
||||||
|
this.throughputProvisionedRadioId = options.throughputProvisionedRadioId;
|
||||||
|
this.throughputModeRadioName = options.throughputModeRadioName;
|
||||||
|
this.overrideWithAutoPilotSettings = options.overrideWithAutoPilotSettings || ko.observable<boolean>(false);
|
||||||
|
this.overrideWithProvisionedThroughputSettings =
|
||||||
|
options.overrideWithProvisionedThroughputSettings || ko.observable<boolean>(false);
|
||||||
|
|
||||||
|
this.maxAutoPilotThroughputSet =
|
||||||
|
options.maxAutoPilotThroughputSet || ko.observable<number>(AutoPilotUtils.minAutoPilotThroughput);
|
||||||
|
this.autoPilotUsageCost = options.autoPilotUsageCost;
|
||||||
|
this.minAutoPilotThroughput = ko.observable<number>(AutoPilotUtils.minAutoPilotThroughput);
|
||||||
|
|
||||||
|
this.step = ko.pureComputed(() => {
|
||||||
|
if (this.isAutoPilotSelected()) {
|
||||||
|
return AutoPilotUtils.autoPilotIncrementStep;
|
||||||
|
}
|
||||||
|
return params.step || ThroughputInputViewModel._defaultStep;
|
||||||
|
});
|
||||||
|
this.decreaseButtonAriaLabel = "Decrease throughput by " + this.step().toString();
|
||||||
|
this.increaseButtonAriaLabel = "Increase throughput by " + this.step().toString();
|
||||||
|
this.isManualThroughputInputFieldRequired = ko.pureComputed(() => this.isEnabled() && !this.isAutoPilotSelected());
|
||||||
|
this.isAutoscaleThroughputInputFieldRequired = ko.pureComputed(
|
||||||
|
() => this.isEnabled() && this.isAutoPilotSelected()
|
||||||
|
);
|
||||||
|
|
||||||
|
this.freeTierExceedThroughputTooltip = options.freeTierExceedThroughputTooltip || ko.observable<string>();
|
||||||
|
this.freeTierExceedThroughputWarning = options.freeTierExceedThroughputWarning || ko.observable<string>();
|
||||||
|
this.showFreeTierExceedThroughputTooltip = ko.pureComputed<boolean>(
|
||||||
|
() => !!this.freeTierExceedThroughputTooltip() && this.value() > FreeTierLimits.RU
|
||||||
|
);
|
||||||
|
|
||||||
|
this.showFreeTierExceedThroughputWarning = ko.pureComputed<boolean>(
|
||||||
|
() => !!this.freeTierExceedThroughputWarning() && this.value() > FreeTierLimits.RU
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public decreaseThroughput() {
|
||||||
|
let offerThroughput: number = this._getSanitizedValue();
|
||||||
|
|
||||||
|
if (offerThroughput > this.minimum()) {
|
||||||
|
offerThroughput -= this.step();
|
||||||
|
if (offerThroughput < this.minimum()) {
|
||||||
|
offerThroughput = this.minimum();
|
||||||
|
}
|
||||||
|
|
||||||
|
this.value(offerThroughput);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public increaseThroughput() {
|
||||||
|
let offerThroughput: number = this._getSanitizedValue();
|
||||||
|
|
||||||
|
if (offerThroughput < this.maximum() || this.canExceedMaximumValue()) {
|
||||||
|
offerThroughput += this.step();
|
||||||
|
if (offerThroughput > this.maximum() && !this.canExceedMaximumValue()) {
|
||||||
|
offerThroughput = this.maximum();
|
||||||
|
}
|
||||||
|
|
||||||
|
this.value(offerThroughput);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public onIncreaseKeyDown = (source: any, event: KeyboardEvent): boolean => {
|
||||||
|
if (event.keyCode === KeyCodes.Enter || event.keyCode === KeyCodes.Space) {
|
||||||
|
this.increaseThroughput();
|
||||||
|
event.stopPropagation();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
|
||||||
|
public onDecreaseKeyDown = (source: any, event: KeyboardEvent): boolean => {
|
||||||
|
if (event.keyCode === KeyCodes.Enter || event.keyCode === KeyCodes.Space) {
|
||||||
|
this.decreaseThroughput();
|
||||||
|
event.stopPropagation();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
|
||||||
|
private _getSanitizedValue(): number {
|
||||||
|
let throughput = this.value();
|
||||||
|
|
||||||
|
if (this.isAutoPilotSelected()) {
|
||||||
|
throughput = this.maxAutoPilotThroughputSet();
|
||||||
|
}
|
||||||
|
return isNaN(throughput) ? 0 : Number(throughput);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static _defaultStep: number = 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const ThroughputInputComponentAutoPilotV3 = {
|
||||||
|
viewModel: ThroughputInputViewModel,
|
||||||
|
template: ThroughputInputComponentAutoscaleV3,
|
||||||
|
};
|
||||||
@@ -0,0 +1,194 @@
|
|||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<p class="pkPadding">
|
||||||
|
<!-- ko if: showAsMandatory -->
|
||||||
|
<span class="mandatoryStar">*</span>
|
||||||
|
<!-- /ko -->
|
||||||
|
|
||||||
|
<span data-bind="text: label"></span>
|
||||||
|
|
||||||
|
<!-- ko if: infoBubbleText -->
|
||||||
|
<span class="infoTooltip" role="tooltip" tabindex="0">
|
||||||
|
<img class="infoImg" src="../../../../images/info-bubble.svg" alt="More information" />
|
||||||
|
<span data-bind="text: infoBubbleText" class="tooltiptext throughputRuInfo"></span>
|
||||||
|
</span>
|
||||||
|
<!-- /ko -->
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ko if: !isFixed -->
|
||||||
|
<div class="throughputModeContainer">
|
||||||
|
<input
|
||||||
|
class="throughputModeRadio"
|
||||||
|
aria-label="Autopilot mode"
|
||||||
|
type="radio"
|
||||||
|
role="radio"
|
||||||
|
tabindex="0"
|
||||||
|
data-bind="
|
||||||
|
checked: isAutoPilotSelected,
|
||||||
|
checkedValue: true,
|
||||||
|
attr: {
|
||||||
|
id: throughputAutoPilotRadioId,
|
||||||
|
name: throughputModeRadioName,
|
||||||
|
'aria-checked': isAutoPilotSelected() ? 'true' : 'false'
|
||||||
|
}"
|
||||||
|
/>
|
||||||
|
<span
|
||||||
|
class="throughputModeSpace"
|
||||||
|
data-bind="
|
||||||
|
attr: {
|
||||||
|
for: throughputAutoPilotRadioId
|
||||||
|
}"
|
||||||
|
>Autoscale
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<input
|
||||||
|
class="throughputModeRadio nonFirstRadio"
|
||||||
|
aria-label="Manual mode"
|
||||||
|
type="radio"
|
||||||
|
role="radio"
|
||||||
|
tabindex="0"
|
||||||
|
data-bind="
|
||||||
|
checked: isAutoPilotSelected,
|
||||||
|
checkedValue: false,
|
||||||
|
attr: {
|
||||||
|
id: throughputProvisionedRadioId,
|
||||||
|
name: throughputModeRadioName,
|
||||||
|
'aria-checked': !isAutoPilotSelected() ? 'true' : 'false'
|
||||||
|
}"
|
||||||
|
/>
|
||||||
|
<span
|
||||||
|
class="throughputModeSpace"
|
||||||
|
data-bind="attr: {
|
||||||
|
for: throughputProvisionedRadioId
|
||||||
|
}"
|
||||||
|
>Manual
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<!-- /ko -->
|
||||||
|
|
||||||
|
<div data-bind="visible: isAutoPilotSelected">
|
||||||
|
<p>
|
||||||
|
<span
|
||||||
|
>Provision maximum RU/s required by this resource. Estimate your required RU/s with
|
||||||
|
<a target="_blank" href="https://cosmos.azure.com/capacitycalculator/">capacity calculator</a>.</span
|
||||||
|
>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<span>Max RU/s</span>
|
||||||
|
</p>
|
||||||
|
<div data-bind="setTemplateReady: true">
|
||||||
|
<input
|
||||||
|
data-bind="textInput: overrideWithProvisionedThroughputSettings() ? '' : maxAutoPilotThroughputSet, attr:{
|
||||||
|
disabled: overrideWithProvisionedThroughputSettings(),
|
||||||
|
step: step,
|
||||||
|
'class':'migration collid select-font-size',
|
||||||
|
min: minAutoPilotThroughput,
|
||||||
|
'aria-label': 'Max request units per second',
|
||||||
|
type: isAutoscaleThroughputInputFieldRequired() ? 'number' : 'hidden',
|
||||||
|
css: {
|
||||||
|
dirty: maxAutoPilotThroughputSet.editableIsDirty
|
||||||
|
}
|
||||||
|
}"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<p data-bind="visible: overrideWithProvisionedThroughputSettings && !overrideWithProvisionedThroughputSettings()">
|
||||||
|
<span
|
||||||
|
data-bind="
|
||||||
|
html: autoPilotUsageCost"
|
||||||
|
></span>
|
||||||
|
</p>
|
||||||
|
<p
|
||||||
|
data-bind="visible: costsVisible && overrideWithProvisionedThroughputSettings && !overrideWithProvisionedThroughputSettings()"
|
||||||
|
>
|
||||||
|
<span data-bind="html: requestUnitsUsageCost"></span>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<!-- ko if: spendAckVisible -->
|
||||||
|
<p class="pkPadding">
|
||||||
|
<input
|
||||||
|
type="checkbox"
|
||||||
|
aria-label="acknowledge spend throughput"
|
||||||
|
data-bind="
|
||||||
|
attr: {
|
||||||
|
title: spendAckText,
|
||||||
|
id: spendAckId
|
||||||
|
},
|
||||||
|
checked: spendAckChecked"
|
||||||
|
/>
|
||||||
|
<span data-bind="text: spendAckText, attr: { for: spendAckId }"></span>
|
||||||
|
</p>
|
||||||
|
<!-- /ko -->
|
||||||
|
|
||||||
|
<!-- ko if: isFixed -->
|
||||||
|
<p>Choose unlimited storage capacity for more than 10,000 RU/s.</p>
|
||||||
|
<!-- /ko -->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div data-bind="visible: !isAutoPilotSelected()">
|
||||||
|
<p>
|
||||||
|
<span
|
||||||
|
>Estimate your required throughput with
|
||||||
|
<a target="_blank" href="https://cosmos.azure.com/capacitycalculator/">capacity calculator</a></span
|
||||||
|
>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="inputTooltip">
|
||||||
|
<span
|
||||||
|
data-bind="text: freeTierExceedThroughputTooltip, visible: showFreeTierExceedThroughputTooltip"
|
||||||
|
class="inputTooltipText"
|
||||||
|
></span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div data-bind="setTemplateReady: true">
|
||||||
|
<input
|
||||||
|
data-bind="
|
||||||
|
textInput: overrideWithAutoPilotSettings() ? maxAutoPilotThroughputSet : value,
|
||||||
|
css: {
|
||||||
|
dirty: value.editableIsDirty
|
||||||
|
},
|
||||||
|
enable: isEnabled,
|
||||||
|
attr:{
|
||||||
|
type: isManualThroughputInputFieldRequired() ? 'number' : 'hidden',
|
||||||
|
'data-test': testId,
|
||||||
|
'class': cssClass,
|
||||||
|
step: step,
|
||||||
|
min: minimum,
|
||||||
|
max: canExceedMaximumValue() ? null : maximum,
|
||||||
|
'aria-label': ariaLabel,
|
||||||
|
disabled: overrideWithAutoPilotSettings(),
|
||||||
|
required: isManualThroughputInputFieldRequired()
|
||||||
|
}"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="freeTierInlineWarning" data-bind="visible: showFreeTierExceedThroughputWarning">
|
||||||
|
<span class="freeTierWarningIcon"><img src="/warning.svg" alt="Warning" /></span>
|
||||||
|
<span class="freeTierWarningMessage" data-bind="text: freeTierExceedThroughputWarning"></span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p data-bind="visible: costsVisible">
|
||||||
|
<span data-bind="html: requestUnitsUsageCost"></span>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<!-- ko if: spendAckVisible -->
|
||||||
|
<p class="pkPadding">
|
||||||
|
<input
|
||||||
|
type="checkbox"
|
||||||
|
aria-label="acknowledge spend throughput"
|
||||||
|
data-bind="
|
||||||
|
attr: {
|
||||||
|
title: spendAckText,
|
||||||
|
id: spendAckId
|
||||||
|
},
|
||||||
|
checked: spendAckChecked"
|
||||||
|
/>
|
||||||
|
<span data-bind="text: spendAckText, attr: { for: spendAckId }"></span>
|
||||||
|
</p>
|
||||||
|
<!-- /ko -->
|
||||||
|
|
||||||
|
<!-- ko if: isFixed -->
|
||||||
|
<p>Choose unlimited storage capacity for more than 10,000 RU/s.</p>
|
||||||
|
<!-- /ko -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
exports[`ThroughputInput Pane should render Default properly 1`] = `
|
exports[`ThroughputInput Pane should render Default properly 1`] = `
|
||||||
<ThroughputInput
|
<ThroughputInput
|
||||||
isDatabase={false}
|
isDatabase={false}
|
||||||
isSharded={true}
|
isSharded={false}
|
||||||
onCostAcknowledgeChange={[Function]}
|
onCostAcknowledgeChange={[Function]}
|
||||||
setIsAutoscale={[Function]}
|
setIsAutoscale={[Function]}
|
||||||
setThroughputValue={[Function]}
|
setThroughputValue={[Function]}
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ describe("ContainerSampleGenerator", () => {
|
|||||||
const createExplorerStub = (database: ViewModels.Database): Explorer => {
|
const createExplorerStub = (database: ViewModels.Database): Explorer => {
|
||||||
const explorerStub = {} as Explorer;
|
const explorerStub = {} as Explorer;
|
||||||
explorerStub.databases = ko.observableArray<ViewModels.Database>([database]);
|
explorerStub.databases = ko.observableArray<ViewModels.Database>([database]);
|
||||||
|
explorerStub.canExceedMaximumValue = ko.computed<boolean>(() => false);
|
||||||
explorerStub.findDatabaseWithId = () => database;
|
explorerStub.findDatabaseWithId = () => database;
|
||||||
explorerStub.refreshAllDatabases = () => Q.resolve();
|
explorerStub.refreshAllDatabases = () => Q.resolve();
|
||||||
return explorerStub;
|
return explorerStub;
|
||||||
|
|||||||
@@ -6,38 +6,44 @@ import _ from "underscore";
|
|||||||
import { AuthType } from "../AuthType";
|
import { AuthType } from "../AuthType";
|
||||||
import { BindingHandlersRegisterer } from "../Bindings/BindingHandlersRegisterer";
|
import { BindingHandlersRegisterer } from "../Bindings/BindingHandlersRegisterer";
|
||||||
import * as Constants from "../Common/Constants";
|
import * as Constants from "../Common/Constants";
|
||||||
import { ExplorerMetrics } from "../Common/Constants";
|
import { ExplorerMetrics, HttpStatusCodes } from "../Common/Constants";
|
||||||
import { readCollection } from "../Common/dataAccess/readCollection";
|
import { readCollection } from "../Common/dataAccess/readCollection";
|
||||||
import { readDatabases } from "../Common/dataAccess/readDatabases";
|
import { readDatabases } from "../Common/dataAccess/readDatabases";
|
||||||
import { isPublicInternetAccessAllowed } from "../Common/DatabaseAccountUtility";
|
|
||||||
import { getErrorMessage, getErrorStack, handleError } from "../Common/ErrorHandlingUtils";
|
import { getErrorMessage, getErrorStack, handleError } from "../Common/ErrorHandlingUtils";
|
||||||
import * as Logger from "../Common/Logger";
|
import * as Logger from "../Common/Logger";
|
||||||
|
import { sendCachedDataMessage } from "../Common/MessageHandler";
|
||||||
import { QueriesClient } from "../Common/QueriesClient";
|
import { QueriesClient } from "../Common/QueriesClient";
|
||||||
import { Splitter, SplitterBounds, SplitterDirection } from "../Common/Splitter";
|
import { Splitter, SplitterBounds, SplitterDirection } from "../Common/Splitter";
|
||||||
import { configContext, Platform } from "../ConfigContext";
|
import { configContext, Platform } from "../ConfigContext";
|
||||||
import * as DataModels from "../Contracts/DataModels";
|
import * as DataModels from "../Contracts/DataModels";
|
||||||
|
import { MessageTypes } from "../Contracts/ExplorerContracts";
|
||||||
import * as ViewModels from "../Contracts/ViewModels";
|
import * as ViewModels from "../Contracts/ViewModels";
|
||||||
|
import { GitHubClient } from "../GitHub/GitHubClient";
|
||||||
import { GitHubOAuthService } from "../GitHub/GitHubOAuthService";
|
import { GitHubOAuthService } from "../GitHub/GitHubOAuthService";
|
||||||
import { useSidePanel } from "../hooks/useSidePanel";
|
|
||||||
import { IGalleryItem, JunoClient } from "../Juno/JunoClient";
|
import { IGalleryItem, JunoClient } from "../Juno/JunoClient";
|
||||||
import { NotebookWorkspaceManager } from "../NotebookWorkspaceManager/NotebookWorkspaceManager";
|
import { NotebookWorkspaceManager } from "../NotebookWorkspaceManager/NotebookWorkspaceManager";
|
||||||
|
import { ResourceProviderClientFactory } from "../ResourceProvider/ResourceProviderClientFactory";
|
||||||
import { RouteHandler } from "../RouteHandlers/RouteHandler";
|
import { RouteHandler } from "../RouteHandlers/RouteHandler";
|
||||||
|
import { trackEvent } from "../Shared/appInsights";
|
||||||
|
import * as SharedConstants from "../Shared/Constants";
|
||||||
import { ExplorerSettings } from "../Shared/ExplorerSettings";
|
import { ExplorerSettings } from "../Shared/ExplorerSettings";
|
||||||
import { Action, ActionModifiers } from "../Shared/Telemetry/TelemetryConstants";
|
import { Action, ActionModifiers } from "../Shared/Telemetry/TelemetryConstants";
|
||||||
import * as TelemetryProcessor from "../Shared/Telemetry/TelemetryProcessor";
|
import * as TelemetryProcessor from "../Shared/Telemetry/TelemetryProcessor";
|
||||||
import { userContext } from "../UserContext";
|
import { ArcadiaResourceManager } from "../SparkClusterManager/ArcadiaResourceManager";
|
||||||
|
import { updateUserContext, userContext } from "../UserContext";
|
||||||
import { getCollectionName, getDatabaseName, getUploadName } from "../Utils/APITypeUtils";
|
import { getCollectionName, getDatabaseName, getUploadName } from "../Utils/APITypeUtils";
|
||||||
import { update } from "../Utils/arm/generatedClients/cosmos/databaseAccounts";
|
import { decryptJWTToken, getAuthorizationHeader } from "../Utils/AuthorizationUtils";
|
||||||
import { getAuthorizationHeader } from "../Utils/AuthorizationUtils";
|
|
||||||
import { stringToBlob } from "../Utils/BlobUtils";
|
import { stringToBlob } from "../Utils/BlobUtils";
|
||||||
import { isCapabilityEnabled } from "../Utils/CapabilityUtils";
|
import { isCapabilityEnabled } from "../Utils/CapabilityUtils";
|
||||||
import { fromContentUri, toRawContentUri } from "../Utils/GitHubUtils";
|
import { fromContentUri, toRawContentUri } from "../Utils/GitHubUtils";
|
||||||
import * as NotificationConsoleUtils from "../Utils/NotificationConsoleUtils";
|
import * as NotificationConsoleUtils from "../Utils/NotificationConsoleUtils";
|
||||||
import { logConsoleError, logConsoleInfo, logConsoleProgress } from "../Utils/NotificationConsoleUtils";
|
import { logConsoleError, logConsoleInfo, logConsoleProgress } from "../Utils/NotificationConsoleUtils";
|
||||||
import * as ComponentRegisterer from "./ComponentRegisterer";
|
import * as ComponentRegisterer from "./ComponentRegisterer";
|
||||||
|
import { ArcadiaWorkspaceItem } from "./Controls/Arcadia/ArcadiaMenuPicker";
|
||||||
|
import { CommandButtonComponentProps } from "./Controls/CommandButton/CommandButtonComponent";
|
||||||
import { DialogProps, TextFieldProps, useDialog } from "./Controls/Dialog";
|
import { DialogProps, TextFieldProps, useDialog } from "./Controls/Dialog";
|
||||||
import { GalleryTab as GalleryTabKind } from "./Controls/NotebookGallery/GalleryViewerComponent";
|
import { GalleryTab as GalleryTabKind } from "./Controls/NotebookGallery/GalleryViewerComponent";
|
||||||
import { useCommandBar } from "./Menus/CommandBar/CommandBarComponentAdapter";
|
import { CommandBarComponentAdapter } from "./Menus/CommandBar/CommandBarComponentAdapter";
|
||||||
import { ConsoleData } from "./Menus/NotificationConsole/NotificationConsoleComponent";
|
import { ConsoleData } from "./Menus/NotificationConsole/NotificationConsoleComponent";
|
||||||
import * as FileSystemUtil from "./Notebook/FileSystemUtil";
|
import * as FileSystemUtil from "./Notebook/FileSystemUtil";
|
||||||
import { SnapshotRequest } from "./Notebook/NotebookComponent/types";
|
import { SnapshotRequest } from "./Notebook/NotebookComponent/types";
|
||||||
@@ -49,10 +55,12 @@ import { AddCollectionPanel } from "./Panes/AddCollectionPanel";
|
|||||||
import { AddDatabasePanel } from "./Panes/AddDatabasePanel/AddDatabasePanel";
|
import { AddDatabasePanel } from "./Panes/AddDatabasePanel/AddDatabasePanel";
|
||||||
import { BrowseQueriesPane } from "./Panes/BrowseQueriesPane/BrowseQueriesPane";
|
import { BrowseQueriesPane } from "./Panes/BrowseQueriesPane/BrowseQueriesPane";
|
||||||
import { CassandraAddCollectionPane } from "./Panes/CassandraAddCollectionPane/CassandraAddCollectionPane";
|
import { CassandraAddCollectionPane } from "./Panes/CassandraAddCollectionPane/CassandraAddCollectionPane";
|
||||||
|
import { ContextualPaneBase } from "./Panes/ContextualPaneBase";
|
||||||
import { DeleteCollectionConfirmationPane } from "./Panes/DeleteCollectionConfirmationPane/DeleteCollectionConfirmationPane";
|
import { DeleteCollectionConfirmationPane } from "./Panes/DeleteCollectionConfirmationPane/DeleteCollectionConfirmationPane";
|
||||||
import { DeleteDatabaseConfirmationPanel } from "./Panes/DeleteDatabaseConfirmationPanel";
|
import { DeleteDatabaseConfirmationPanel } from "./Panes/DeleteDatabaseConfirmationPanel";
|
||||||
import { ExecuteSprocParamsPane } from "./Panes/ExecuteSprocParamsPane/ExecuteSprocParamsPane";
|
import { ExecuteSprocParamsPane } from "./Panes/ExecuteSprocParamsPane/ExecuteSprocParamsPane";
|
||||||
import { GitHubReposPanel } from "./Panes/GitHubReposPanel/GitHubReposPanel";
|
import { GitHubReposPanel } from "./Panes/GitHubReposPanel/GitHubReposPanel";
|
||||||
|
import { LoadQueryPane } from "./Panes/LoadQueryPane/LoadQueryPane";
|
||||||
import { SaveQueryPane } from "./Panes/SaveQueryPane/SaveQueryPane";
|
import { SaveQueryPane } from "./Panes/SaveQueryPane/SaveQueryPane";
|
||||||
import { SettingsPane } from "./Panes/SettingsPane/SettingsPane";
|
import { SettingsPane } from "./Panes/SettingsPane/SettingsPane";
|
||||||
import { SetupNoteBooksPanel } from "./Panes/SetupNotebooksPanel/SetupNotebooksPanel";
|
import { SetupNoteBooksPanel } from "./Panes/SetupNotebooksPanel/SetupNotebooksPanel";
|
||||||
@@ -80,29 +88,48 @@ BindingHandlersRegisterer.registerBindingHandlers();
|
|||||||
var tmp = ComponentRegisterer;
|
var tmp = ComponentRegisterer;
|
||||||
|
|
||||||
export interface ExplorerParams {
|
export interface ExplorerParams {
|
||||||
|
setIsNotificationConsoleExpanded: (isExpanded: boolean) => void;
|
||||||
setNotificationConsoleData: (consoleData: ConsoleData) => void;
|
setNotificationConsoleData: (consoleData: ConsoleData) => void;
|
||||||
setInProgressConsoleDataIdToBeDeleted: (id: string) => void;
|
setInProgressConsoleDataIdToBeDeleted: (id: string) => void;
|
||||||
|
openSidePanel: (headerText: string, panelContent: JSX.Element, onClose?: () => void) => void;
|
||||||
|
closeSidePanel: () => void;
|
||||||
tabsManager: TabsManager;
|
tabsManager: TabsManager;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class Explorer {
|
export default class Explorer {
|
||||||
|
public addCollectionText: ko.Observable<string>;
|
||||||
|
public collectionTitle: ko.Observable<string>;
|
||||||
|
public deleteCollectionText: ko.Observable<string>;
|
||||||
|
public deleteDatabaseText: ko.Observable<string>;
|
||||||
|
public collectionTreeNodeAltText: ko.Observable<string>;
|
||||||
|
public refreshTreeTitle: ko.Observable<string>;
|
||||||
public collapsedResourceTreeWidth: number = ExplorerMetrics.CollapsedResourceTreeWidth;
|
public collapsedResourceTreeWidth: number = ExplorerMetrics.CollapsedResourceTreeWidth;
|
||||||
|
|
||||||
|
public collectionCreationDefaults: ViewModels.CollectionCreationDefaults = SharedConstants.CollectionCreationDefaults;
|
||||||
public isFixedCollectionWithSharedThroughputSupported: ko.Computed<boolean>;
|
public isFixedCollectionWithSharedThroughputSupported: ko.Computed<boolean>;
|
||||||
public isServerlessEnabled: ko.Computed<boolean>;
|
public isServerlessEnabled: ko.Computed<boolean>;
|
||||||
public isAccountReady: ko.Observable<boolean>;
|
public isAccountReady: ko.Observable<boolean>;
|
||||||
public canSaveQueries: ko.Computed<boolean>;
|
public canSaveQueries: ko.Computed<boolean>;
|
||||||
|
public features: ko.Observable<any>;
|
||||||
public queriesClient: QueriesClient;
|
public queriesClient: QueriesClient;
|
||||||
public tableDataClient: TableDataClient;
|
public tableDataClient: TableDataClient;
|
||||||
public splitter: Splitter;
|
public splitter: Splitter;
|
||||||
|
|
||||||
|
// Notification Console
|
||||||
|
private setIsNotificationConsoleExpanded: (isExpanded: boolean) => void;
|
||||||
private setNotificationConsoleData: (consoleData: ConsoleData) => void;
|
private setNotificationConsoleData: (consoleData: ConsoleData) => void;
|
||||||
private setInProgressConsoleDataIdToBeDeleted: (id: string) => void;
|
private setInProgressConsoleDataIdToBeDeleted: (id: string) => void;
|
||||||
|
|
||||||
|
// Panes
|
||||||
|
public contextPanes: ContextualPaneBase[];
|
||||||
|
public openSidePanel: (headerText: string, panelContent: JSX.Element, onClose?: () => void) => void;
|
||||||
|
public closeSidePanel: () => void;
|
||||||
|
|
||||||
// Resource Tree
|
// Resource Tree
|
||||||
public databases: ko.ObservableArray<ViewModels.Database>;
|
public databases: ko.ObservableArray<ViewModels.Database>;
|
||||||
public selectedDatabaseId: ko.Computed<string>;
|
public selectedDatabaseId: ko.Computed<string>;
|
||||||
public selectedCollectionId: ko.Computed<string>;
|
public selectedCollectionId: ko.Computed<string>;
|
||||||
|
public isLeftPaneExpanded: ko.Observable<boolean>;
|
||||||
public selectedNode: ko.Observable<ViewModels.TreeNode>;
|
public selectedNode: ko.Observable<ViewModels.TreeNode>;
|
||||||
private resourceTree: ResourceTreeAdapter;
|
private resourceTree: ResourceTreeAdapter;
|
||||||
|
|
||||||
@@ -118,10 +145,16 @@ export default class Explorer {
|
|||||||
public isTabsContentExpanded: ko.Observable<boolean>;
|
public isTabsContentExpanded: ko.Observable<boolean>;
|
||||||
public tabsManager: TabsManager;
|
public tabsManager: TabsManager;
|
||||||
|
|
||||||
|
// Contextual panes
|
||||||
|
private gitHubClient: GitHubClient;
|
||||||
public gitHubOAuthService: GitHubOAuthService;
|
public gitHubOAuthService: GitHubOAuthService;
|
||||||
|
public junoClient: JunoClient;
|
||||||
|
|
||||||
// features
|
// features
|
||||||
|
public isPublishNotebookPaneEnabled: ko.Observable<boolean>;
|
||||||
public isHostedDataExplorerEnabled: ko.Computed<boolean>;
|
public isHostedDataExplorerEnabled: ko.Computed<boolean>;
|
||||||
|
public isMongoIndexingEnabled: ko.Observable<boolean>;
|
||||||
|
public canExceedMaximumValue: ko.Computed<boolean>;
|
||||||
public isSchemaEnabled: ko.Computed<boolean>;
|
public isSchemaEnabled: ko.Computed<boolean>;
|
||||||
|
|
||||||
// Notebooks
|
// Notebooks
|
||||||
@@ -130,6 +163,11 @@ export default class Explorer {
|
|||||||
public notebookServerInfo: ko.Observable<DataModels.NotebookWorkspaceConnectionInfo>;
|
public notebookServerInfo: ko.Observable<DataModels.NotebookWorkspaceConnectionInfo>;
|
||||||
public notebookWorkspaceManager: NotebookWorkspaceManager;
|
public notebookWorkspaceManager: NotebookWorkspaceManager;
|
||||||
public sparkClusterConnectionInfo: ko.Observable<DataModels.SparkClusterConnectionInfo>;
|
public sparkClusterConnectionInfo: ko.Observable<DataModels.SparkClusterConnectionInfo>;
|
||||||
|
public isSparkEnabled: ko.Observable<boolean>;
|
||||||
|
public isSparkEnabledForAccount: ko.Observable<boolean>;
|
||||||
|
public arcadiaToken: ko.Observable<string>;
|
||||||
|
public arcadiaWorkspaces: ko.ObservableArray<ArcadiaWorkspaceItem>;
|
||||||
|
public hasStorageAnalyticsAfecFeature: ko.Observable<boolean>;
|
||||||
public isSynapseLinkUpdating: ko.Observable<boolean>;
|
public isSynapseLinkUpdating: ko.Observable<boolean>;
|
||||||
public memoryUsageInfo: ko.Observable<DataModels.MemoryUsageInfo>;
|
public memoryUsageInfo: ko.Observable<DataModels.MemoryUsageInfo>;
|
||||||
public notebookManager?: NotebookManager;
|
public notebookManager?: NotebookManager;
|
||||||
@@ -138,25 +176,54 @@ export default class Explorer {
|
|||||||
|
|
||||||
private _isInitializingNotebooks: boolean;
|
private _isInitializingNotebooks: boolean;
|
||||||
private notebookBasePath: ko.Observable<string>;
|
private notebookBasePath: ko.Observable<string>;
|
||||||
|
private _arcadiaManager: ArcadiaResourceManager;
|
||||||
private notebookToImport: {
|
private notebookToImport: {
|
||||||
name: string;
|
name: string;
|
||||||
content: string;
|
content: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// React adapters
|
||||||
|
private commandBarComponentAdapter: CommandBarComponentAdapter;
|
||||||
|
|
||||||
private static readonly MaxNbDatabasesToAutoExpand = 5;
|
private static readonly MaxNbDatabasesToAutoExpand = 5;
|
||||||
|
|
||||||
constructor(params?: ExplorerParams) {
|
constructor(params?: ExplorerParams) {
|
||||||
|
this.gitHubClient = new GitHubClient(this.onGitHubClientError);
|
||||||
|
this.junoClient = new JunoClient();
|
||||||
|
this.setIsNotificationConsoleExpanded = params?.setIsNotificationConsoleExpanded;
|
||||||
this.setNotificationConsoleData = params?.setNotificationConsoleData;
|
this.setNotificationConsoleData = params?.setNotificationConsoleData;
|
||||||
this.setInProgressConsoleDataIdToBeDeleted = params?.setInProgressConsoleDataIdToBeDeleted;
|
this.setInProgressConsoleDataIdToBeDeleted = params?.setInProgressConsoleDataIdToBeDeleted;
|
||||||
|
this.openSidePanel = params?.openSidePanel;
|
||||||
|
this.closeSidePanel = params?.closeSidePanel;
|
||||||
|
|
||||||
const startKey: number = TelemetryProcessor.traceStart(Action.InitializeDataExplorer, {
|
const startKey: number = TelemetryProcessor.traceStart(Action.InitializeDataExplorer, {
|
||||||
dataExplorerArea: Constants.Areas.ResourceTree,
|
dataExplorerArea: Constants.Areas.ResourceTree,
|
||||||
});
|
});
|
||||||
|
this.addCollectionText = ko.observable<string>("New Collection");
|
||||||
|
this.collectionTitle = ko.observable<string>("Collections");
|
||||||
|
this.collectionTreeNodeAltText = ko.observable<string>("Collection");
|
||||||
|
this.deleteCollectionText = ko.observable<string>("Delete Collection");
|
||||||
|
this.deleteDatabaseText = ko.observable<string>("Delete Database");
|
||||||
|
this.refreshTreeTitle = ko.observable<string>("Refresh collections");
|
||||||
|
|
||||||
this.isAccountReady = ko.observable<boolean>(false);
|
this.isAccountReady = ko.observable<boolean>(false);
|
||||||
this._isInitializingNotebooks = false;
|
this._isInitializingNotebooks = false;
|
||||||
|
this.arcadiaToken = ko.observable<string>();
|
||||||
|
this.arcadiaToken.subscribe((token: string) => {
|
||||||
|
if (token) {
|
||||||
|
const notebookTabs = this.tabsManager.getTabs(ViewModels.CollectionTabKind.NotebookV2);
|
||||||
|
(notebookTabs || []).forEach((tab: NotebookV2Tab) => {
|
||||||
|
tab.reconfigureServiceEndpoints();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
this.isShellEnabled = ko.observable(false);
|
this.isShellEnabled = ko.observable(false);
|
||||||
this.isNotebooksEnabledForAccount = ko.observable(false);
|
this.isNotebooksEnabledForAccount = ko.observable(false);
|
||||||
this.isNotebooksEnabledForAccount.subscribe((isEnabledForAccount: boolean) => this.refreshCommandBarButtons());
|
this.isNotebooksEnabledForAccount.subscribe((isEnabledForAccount: boolean) => this.refreshCommandBarButtons());
|
||||||
|
this.isSparkEnabledForAccount = ko.observable(false);
|
||||||
|
this.isSparkEnabledForAccount.subscribe((isEnabledForAccount: boolean) => this.refreshCommandBarButtons());
|
||||||
|
this.hasStorageAnalyticsAfecFeature = ko.observable(false);
|
||||||
|
this.hasStorageAnalyticsAfecFeature.subscribe((enabled: boolean) => this.refreshCommandBarButtons());
|
||||||
this.isSynapseLinkUpdating = ko.observable<boolean>(false);
|
this.isSynapseLinkUpdating = ko.observable<boolean>(false);
|
||||||
this.isAccountReady.subscribe(async (isAccountReady: boolean) => {
|
this.isAccountReady.subscribe(async (isAccountReady: boolean) => {
|
||||||
if (isAccountReady) {
|
if (isAccountReady) {
|
||||||
@@ -165,14 +232,23 @@ export default class Explorer {
|
|||||||
: this.refreshAllDatabases(true);
|
: this.refreshAllDatabases(true);
|
||||||
RouteHandler.getInstance().initHandler();
|
RouteHandler.getInstance().initHandler();
|
||||||
this.notebookWorkspaceManager = new NotebookWorkspaceManager();
|
this.notebookWorkspaceManager = new NotebookWorkspaceManager();
|
||||||
await this._refreshNotebooksEnabledStateForAccount();
|
this.arcadiaWorkspaces = ko.observableArray();
|
||||||
|
this._arcadiaManager = new ArcadiaResourceManager();
|
||||||
|
this._isAfecFeatureRegistered(Constants.AfecFeatures.StorageAnalytics).then((isRegistered) =>
|
||||||
|
this.hasStorageAnalyticsAfecFeature(isRegistered)
|
||||||
|
);
|
||||||
|
Promise.all([this._refreshNotebooksEnabledStateForAccount(), this._refreshSparkEnabledStateForAccount()]).then(
|
||||||
|
async () => {
|
||||||
this.isNotebookEnabled(
|
this.isNotebookEnabled(
|
||||||
userContext.authType !== AuthType.ResourceToken &&
|
userContext.authType !== AuthType.ResourceToken &&
|
||||||
((await this._containsDefaultNotebookWorkspace(userContext.databaseAccount)) ||
|
((await this._containsDefaultNotebookWorkspace(userContext.databaseAccount)) ||
|
||||||
userContext.features.enableNotebooks)
|
userContext.features.enableNotebooks)
|
||||||
);
|
);
|
||||||
|
this.isShellEnabled(
|
||||||
this.isShellEnabled(this.isNotebookEnabled() && isPublicInternetAccessAllowed());
|
this.isNotebookEnabled() &&
|
||||||
|
!userContext.databaseAccount.properties.isVirtualNetworkFilterEnabled &&
|
||||||
|
userContext.databaseAccount.properties.ipRules.length === 0
|
||||||
|
);
|
||||||
|
|
||||||
TelemetryProcessor.trace(Action.NotebookEnabled, ActionModifiers.Mark, {
|
TelemetryProcessor.trace(Action.NotebookEnabled, ActionModifiers.Mark, {
|
||||||
isNotebookEnabled: this.isNotebookEnabled(),
|
isNotebookEnabled: this.isNotebookEnabled(),
|
||||||
@@ -181,10 +257,38 @@ export default class Explorer {
|
|||||||
|
|
||||||
if (this.isNotebookEnabled()) {
|
if (this.isNotebookEnabled()) {
|
||||||
await this.initNotebooks(userContext.databaseAccount);
|
await this.initNotebooks(userContext.databaseAccount);
|
||||||
|
const workspaces = await this._getArcadiaWorkspaces();
|
||||||
|
this.arcadiaWorkspaces(workspaces);
|
||||||
} else if (this.notebookToImport) {
|
} else if (this.notebookToImport) {
|
||||||
// if notebooks is not enabled but the user is trying to do a quickstart setup with notebooks, open the SetupNotebooksPane
|
// if notebooks is not enabled but the user is trying to do a quickstart setup with notebooks, open the SetupNotebooksPane
|
||||||
this._openSetupNotebooksPaneForQuickstart();
|
this._openSetupNotebooksPaneForQuickstart();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.isSparkEnabled(
|
||||||
|
(this.isNotebookEnabled() &&
|
||||||
|
this.isSparkEnabledForAccount() &&
|
||||||
|
this.arcadiaWorkspaces() &&
|
||||||
|
this.arcadiaWorkspaces().length > 0) ||
|
||||||
|
userContext.features.enableSpark
|
||||||
|
);
|
||||||
|
if (this.isSparkEnabled()) {
|
||||||
|
trackEvent(
|
||||||
|
{ name: "LoadedWithSparkEnabled" },
|
||||||
|
{
|
||||||
|
subscriptionId: userContext.subscriptionId,
|
||||||
|
accountName: userContext.databaseAccount?.name,
|
||||||
|
accountId: userContext.databaseAccount?.id,
|
||||||
|
platform: configContext.platform,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
const pollArcadiaTokenRefresh = async () => {
|
||||||
|
this.arcadiaToken(await this.getArcadiaToken());
|
||||||
|
setTimeout(() => pollArcadiaTokenRefresh(), this.getTokenRefreshInterval(this.arcadiaToken()));
|
||||||
|
};
|
||||||
|
await pollArcadiaTokenRefresh();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
this.memoryUsageInfo = ko.observable<DataModels.MemoryUsageInfo>();
|
this.memoryUsageInfo = ko.observable<DataModels.MemoryUsageInfo>();
|
||||||
@@ -195,6 +299,11 @@ export default class Explorer {
|
|||||||
this.resourceTokenCollectionId = ko.observable<string>();
|
this.resourceTokenCollectionId = ko.observable<string>();
|
||||||
this.resourceTokenCollection = ko.observable<ViewModels.CollectionBase>();
|
this.resourceTokenCollection = ko.observable<ViewModels.CollectionBase>();
|
||||||
this.resourceTokenPartitionKey = ko.observable<string>();
|
this.resourceTokenPartitionKey = ko.observable<string>();
|
||||||
|
this.isMongoIndexingEnabled = ko.observable<boolean>(false);
|
||||||
|
this.isPublishNotebookPaneEnabled = ko.observable<boolean>(false);
|
||||||
|
|
||||||
|
this.canExceedMaximumValue = ko.computed<boolean>(() => userContext.features.canExceedMaximumValue);
|
||||||
|
|
||||||
this.isSchemaEnabled = ko.computed<boolean>(() => userContext.features.enableSchema);
|
this.isSchemaEnabled = ko.computed<boolean>(() => userContext.features.enableSchema);
|
||||||
|
|
||||||
this.databases = ko.observableArray<ViewModels.Database>();
|
this.databases = ko.observableArray<ViewModels.Database>();
|
||||||
@@ -217,6 +326,7 @@ export default class Explorer {
|
|||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
|
this.isLeftPaneExpanded = ko.observable<boolean>(true);
|
||||||
this.selectedNode = ko.observable<ViewModels.TreeNode>();
|
this.selectedNode = ko.observable<ViewModels.TreeNode>();
|
||||||
this.selectedNode.subscribe((nodeSelected: ViewModels.TreeNode) => {
|
this.selectedNode.subscribe((nodeSelected: ViewModels.TreeNode) => {
|
||||||
// Make sure switching tabs restores tabs display
|
// Make sure switching tabs restores tabs display
|
||||||
@@ -291,7 +401,7 @@ export default class Explorer {
|
|||||||
this.tabsManager.openedTabs.subscribe((tabs) => {
|
this.tabsManager.openedTabs.subscribe((tabs) => {
|
||||||
if (tabs.length === 0) {
|
if (tabs.length === 0) {
|
||||||
this.selectedNode(undefined);
|
this.selectedNode(undefined);
|
||||||
useCommandBar.getState().setContextButtons([]);
|
this.onUpdateTabsButtons([]);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -310,14 +420,52 @@ export default class Explorer {
|
|||||||
});
|
});
|
||||||
|
|
||||||
switch (userContext.apiType) {
|
switch (userContext.apiType) {
|
||||||
|
case "SQL":
|
||||||
|
this.addCollectionText("New Container");
|
||||||
|
this.collectionTitle("SQL API");
|
||||||
|
this.collectionTreeNodeAltText("Container");
|
||||||
|
this.deleteCollectionText("Delete Container");
|
||||||
|
this.deleteDatabaseText("Delete Database");
|
||||||
|
this.refreshTreeTitle("Refresh containers");
|
||||||
|
break;
|
||||||
|
case "Mongo":
|
||||||
|
this.addCollectionText("New Collection");
|
||||||
|
this.collectionTitle("Collections");
|
||||||
|
this.collectionTreeNodeAltText("Collection");
|
||||||
|
this.deleteCollectionText("Delete Collection");
|
||||||
|
this.deleteDatabaseText("Delete Database");
|
||||||
|
this.refreshTreeTitle("Refresh collections");
|
||||||
|
break;
|
||||||
|
case "Gremlin":
|
||||||
|
this.addCollectionText("New Graph");
|
||||||
|
this.deleteCollectionText("Delete Graph");
|
||||||
|
this.deleteDatabaseText("Delete Database");
|
||||||
|
this.collectionTitle("Gremlin API");
|
||||||
|
this.collectionTreeNodeAltText("Graph");
|
||||||
|
this.refreshTreeTitle("Refresh graphs");
|
||||||
|
break;
|
||||||
case "Tables":
|
case "Tables":
|
||||||
|
this.addCollectionText("New Table");
|
||||||
|
this.deleteCollectionText("Delete Table");
|
||||||
|
this.deleteDatabaseText("Delete Database");
|
||||||
|
this.collectionTitle("Azure Table API");
|
||||||
|
this.collectionTreeNodeAltText("Table");
|
||||||
|
this.refreshTreeTitle("Refresh tables");
|
||||||
this.tableDataClient = new TablesAPIDataClient();
|
this.tableDataClient = new TablesAPIDataClient();
|
||||||
break;
|
break;
|
||||||
case "Cassandra":
|
case "Cassandra":
|
||||||
|
this.addCollectionText("New Table");
|
||||||
|
this.deleteCollectionText("Delete Table");
|
||||||
|
this.deleteDatabaseText("Delete Keyspace");
|
||||||
|
this.collectionTitle("Cassandra API");
|
||||||
|
this.collectionTreeNodeAltText("Table");
|
||||||
|
this.refreshTreeTitle("Refresh tables");
|
||||||
this.tableDataClient = new CassandraAPIDataClient();
|
this.tableDataClient = new CassandraAPIDataClient();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.commandBarComponentAdapter = new CommandBarComponentAdapter(this);
|
||||||
|
|
||||||
this._initSettings();
|
this._initSettings();
|
||||||
|
|
||||||
TelemetryProcessor.traceSuccess(
|
TelemetryProcessor.traceSuccess(
|
||||||
@@ -346,6 +494,8 @@ export default class Explorer {
|
|||||||
this.refreshNotebookList();
|
this.refreshNotebookList();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.isSparkEnabled = ko.observable(false);
|
||||||
|
this.isSparkEnabled.subscribe((isEnabled: boolean) => this.refreshCommandBarButtons());
|
||||||
this.resourceTree = new ResourceTreeAdapter(this);
|
this.resourceTree = new ResourceTreeAdapter(this);
|
||||||
this.resourceTreeForResourceToken = new ResourceTreeAdapterForResourceToken(this);
|
this.resourceTreeForResourceToken = new ResourceTreeAdapterForResourceToken(this);
|
||||||
this.notebookServerInfo = ko.observable<DataModels.NotebookWorkspaceConnectionInfo>({
|
this.notebookServerInfo = ko.observable<DataModels.NotebookWorkspaceConnectionInfo>({
|
||||||
@@ -389,6 +539,23 @@ export default class Explorer {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private onGitHubClientError = (error: any): void => {
|
||||||
|
Logger.logError(getErrorMessage(error), "NotebookManager/onGitHubClientError");
|
||||||
|
|
||||||
|
if (error.status === HttpStatusCodes.Unauthorized) {
|
||||||
|
this.gitHubOAuthService.resetToken();
|
||||||
|
|
||||||
|
this.showOkCancelModalDialog(
|
||||||
|
undefined,
|
||||||
|
"Cosmos DB cannot access your Github account anymore. Please connect to GitHub again.",
|
||||||
|
"Connect to GitHub",
|
||||||
|
() => this.openGitHubReposPanel("Connect to GitHub"),
|
||||||
|
"Cancel",
|
||||||
|
undefined
|
||||||
|
);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
public openEnableSynapseLinkDialog(): void {
|
public openEnableSynapseLinkDialog(): void {
|
||||||
const addSynapseLinkDialogProps: DialogProps = {
|
const addSynapseLinkDialogProps: DialogProps = {
|
||||||
linkProps: {
|
linkProps: {
|
||||||
@@ -410,17 +577,22 @@ export default class Explorer {
|
|||||||
this.isSynapseLinkUpdating(true);
|
this.isSynapseLinkUpdating(true);
|
||||||
useDialog.getState().closeDialog();
|
useDialog.getState().closeDialog();
|
||||||
|
|
||||||
|
const resourceProviderClient = new ResourceProviderClientFactory().getOrCreate(userContext.databaseAccount.id);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await update(userContext.subscriptionId, userContext.resourceGroup, userContext.databaseAccount.name, {
|
const databaseAccount: DataModels.DatabaseAccount = await resourceProviderClient.patchAsync(
|
||||||
|
userContext.databaseAccount.id,
|
||||||
|
"2019-12-12",
|
||||||
|
{
|
||||||
properties: {
|
properties: {
|
||||||
enableAnalyticalStorage: true,
|
enableAnalyticalStorage: true,
|
||||||
},
|
},
|
||||||
});
|
}
|
||||||
|
);
|
||||||
clearInProgressMessage();
|
clearInProgressMessage();
|
||||||
logConsoleInfo("Enabled Azure Synapse Link for this account");
|
logConsoleInfo("Enabled Azure Synapse Link for this account");
|
||||||
TelemetryProcessor.traceSuccess(Action.EnableAzureSynapseLink, {}, startTime);
|
TelemetryProcessor.traceSuccess(Action.EnableAzureSynapseLink, {}, startTime);
|
||||||
userContext.databaseAccount.properties.enableAnalyticalStorage = true;
|
updateUserContext({ databaseAccount });
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
clearInProgressMessage();
|
clearInProgressMessage();
|
||||||
logConsoleError(`Enabling Azure Synapse Link for this account failed. ${getErrorMessage(error)}`);
|
logConsoleError(`Enabling Azure Synapse Link for this account failed. ${getErrorMessage(error)}`);
|
||||||
@@ -465,6 +637,22 @@ export default class Explorer {
|
|||||||
this.setInProgressConsoleDataIdToBeDeleted(id);
|
this.setInProgressConsoleDataIdToBeDeleted(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public expandConsole(): void {
|
||||||
|
this.setIsNotificationConsoleExpanded(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public toggleLeftPaneExpanded() {
|
||||||
|
this.isLeftPaneExpanded(!this.isLeftPaneExpanded());
|
||||||
|
|
||||||
|
if (this.isLeftPaneExpanded()) {
|
||||||
|
document.getElementById("expandToggleLeftPaneButton").focus();
|
||||||
|
this.splitter.expandLeft();
|
||||||
|
} else {
|
||||||
|
document.getElementById("collapseToggleLeftPaneButton").focus();
|
||||||
|
this.splitter.collapseLeft();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public refreshDatabaseForResourceToken(): Q.Promise<any> {
|
public refreshDatabaseForResourceToken(): Q.Promise<any> {
|
||||||
const databaseId = this.resourceTokenDatabaseId();
|
const databaseId = this.resourceTokenDatabaseId();
|
||||||
const collectionId = this.resourceTokenCollectionId();
|
const collectionId = this.resourceTokenCollectionId();
|
||||||
@@ -581,11 +769,65 @@ export default class Explorer {
|
|||||||
this.refreshNotebookList();
|
this.refreshNotebookList();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
public toggleLeftPaneExpandedKeyPress = (source: any, event: KeyboardEvent): boolean => {
|
||||||
|
if (event.keyCode === Constants.KeyCodes.Space || event.keyCode === Constants.KeyCodes.Enter) {
|
||||||
|
this.toggleLeftPaneExpanded();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
|
||||||
// Facade
|
// Facade
|
||||||
public provideFeedbackEmail = () => {
|
public provideFeedbackEmail = () => {
|
||||||
window.open(Constants.Urls.feedbackEmail, "_blank");
|
window.open(Constants.Urls.feedbackEmail, "_blank");
|
||||||
};
|
};
|
||||||
|
|
||||||
|
public async getArcadiaToken(): Promise<string> {
|
||||||
|
return new Promise<string>((resolve: (token: string) => void, reject: (error: any) => void) => {
|
||||||
|
sendCachedDataMessage<string>(MessageTypes.GetArcadiaToken, undefined /** params **/).then(
|
||||||
|
(token: string) => {
|
||||||
|
resolve(token);
|
||||||
|
},
|
||||||
|
(error: any) => {
|
||||||
|
Logger.logError(getErrorMessage(error), "Explorer/getArcadiaToken");
|
||||||
|
resolve(undefined);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private async _getArcadiaWorkspaces(): Promise<ArcadiaWorkspaceItem[]> {
|
||||||
|
try {
|
||||||
|
const workspaces = await this._arcadiaManager.listWorkspacesAsync([userContext.subscriptionId]);
|
||||||
|
let workspaceItems: ArcadiaWorkspaceItem[] = new Array(workspaces.length);
|
||||||
|
const sparkPromises: Promise<void>[] = [];
|
||||||
|
workspaces.forEach((workspace, i) => {
|
||||||
|
let promise = this._arcadiaManager.listSparkPoolsAsync(workspaces[i].id).then(
|
||||||
|
(sparkpools) => {
|
||||||
|
workspaceItems[i] = { ...workspace, sparkPools: sparkpools };
|
||||||
|
},
|
||||||
|
(error) => {
|
||||||
|
Logger.logError(getErrorMessage(error), "Explorer/this._arcadiaManager.listSparkPoolsAsync");
|
||||||
|
}
|
||||||
|
);
|
||||||
|
sparkPromises.push(promise);
|
||||||
|
});
|
||||||
|
|
||||||
|
return Promise.all(sparkPromises).then(() => workspaceItems);
|
||||||
|
} catch (error) {
|
||||||
|
handleError(error, "Explorer/this._arcadiaManager.listWorkspacesAsync", "Get Arcadia workspaces failed");
|
||||||
|
return Promise.resolve([]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public async createWorkspace(): Promise<string> {
|
||||||
|
return sendCachedDataMessage(MessageTypes.CreateWorkspace, undefined /** params **/);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async createSparkPool(workspaceId: string): Promise<string> {
|
||||||
|
return sendCachedDataMessage(MessageTypes.CreateSparkPool, [workspaceId]);
|
||||||
|
}
|
||||||
|
|
||||||
public async initNotebooks(databaseAccount: DataModels.DatabaseAccount): Promise<void> {
|
public async initNotebooks(databaseAccount: DataModels.DatabaseAccount): Promise<void> {
|
||||||
if (!databaseAccount) {
|
if (!databaseAccount) {
|
||||||
throw new Error("No database account specified");
|
throw new Error("No database account specified");
|
||||||
@@ -762,6 +1004,9 @@ export default class Explorer {
|
|||||||
if (process.env.NODE_ENV === "development") {
|
if (process.env.NODE_ENV === "development") {
|
||||||
sessionStorage.setItem("portalDataExplorerInitMessage", JSON.stringify(inputs));
|
sessionStorage.setItem("portalDataExplorerInitMessage", JSON.stringify(inputs));
|
||||||
}
|
}
|
||||||
|
if (inputs.defaultCollectionThroughput) {
|
||||||
|
this.collectionCreationDefaults = inputs.defaultCollectionThroughput;
|
||||||
|
}
|
||||||
this.isAccountReady(true);
|
this.isAccountReady(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -780,6 +1025,10 @@ export default class Explorer {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public onUpdateTabsButtons(buttons: CommandButtonComponentProps[]): void {
|
||||||
|
this.commandBarComponentAdapter.onUpdateTabsButtons(buttons);
|
||||||
|
}
|
||||||
|
|
||||||
private refreshAndExpandNewDatabases(newDatabases: ViewModels.Database[]): Q.Promise<void> {
|
private refreshAndExpandNewDatabases(newDatabases: ViewModels.Database[]): Q.Promise<void> {
|
||||||
// we reload collections for all databases so the resource tree reflects any collection-level changes
|
// we reload collections for all databases so the resource tree reflects any collection-level changes
|
||||||
// i.e addition of stored procedures, etc.
|
// i.e addition of stored procedures, etc.
|
||||||
@@ -978,6 +1227,7 @@ export default class Explorer {
|
|||||||
onTakeSnapshot,
|
onTakeSnapshot,
|
||||||
onClosePanel
|
onClosePanel
|
||||||
);
|
);
|
||||||
|
this.isPublishNotebookPaneEnabled(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1071,6 +1321,7 @@ export default class Explorer {
|
|||||||
hashLocation: "notebooks",
|
hashLocation: "notebooks",
|
||||||
isTabsContentExpanded: ko.observable(true),
|
isTabsContentExpanded: ko.observable(true),
|
||||||
onLoadStartKey: null,
|
onLoadStartKey: null,
|
||||||
|
onUpdateTabsButtons: this.onUpdateTabsButtons,
|
||||||
container: this,
|
container: this,
|
||||||
notebookContentItem,
|
notebookContentItem,
|
||||||
};
|
};
|
||||||
@@ -1105,12 +1356,12 @@ export default class Explorer {
|
|||||||
if (openedNotebookTabs.length > 0) {
|
if (openedNotebookTabs.length > 0) {
|
||||||
this.showOkModalDialog("Unable to rename file", "This file is being edited. Please close the tab and try again.");
|
this.showOkModalDialog("Unable to rename file", "This file is being edited. Please close the tab and try again.");
|
||||||
} else {
|
} else {
|
||||||
useSidePanel.getState().openSidePanel(
|
this.openSidePanel(
|
||||||
"Rename Notebook",
|
"Rename Notebook",
|
||||||
<StringInputPane
|
<StringInputPane
|
||||||
explorer={this}
|
explorer={this}
|
||||||
closePanel={() => {
|
closePanel={() => {
|
||||||
useSidePanel.getState().closeSidePanel();
|
this.closeSidePanel();
|
||||||
this.resourceTree.triggerRender();
|
this.resourceTree.triggerRender();
|
||||||
}}
|
}}
|
||||||
inputLabel="Enter new notebook name"
|
inputLabel="Enter new notebook name"
|
||||||
@@ -1136,12 +1387,12 @@ export default class Explorer {
|
|||||||
throw new Error(error);
|
throw new Error(error);
|
||||||
}
|
}
|
||||||
|
|
||||||
useSidePanel.getState().openSidePanel(
|
this.openSidePanel(
|
||||||
"Create new directory",
|
"Create new directory",
|
||||||
<StringInputPane
|
<StringInputPane
|
||||||
explorer={this}
|
explorer={this}
|
||||||
closePanel={() => {
|
closePanel={() => {
|
||||||
useSidePanel.getState().closeSidePanel();
|
this.closeSidePanel();
|
||||||
this.resourceTree.triggerRender();
|
this.resourceTree.triggerRender();
|
||||||
}}
|
}}
|
||||||
errorMessage="Could not create directory "
|
errorMessage="Could not create directory "
|
||||||
@@ -1255,6 +1506,57 @@ export default class Explorer {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public _refreshSparkEnabledStateForAccount = async (): Promise<void> => {
|
||||||
|
const { subscriptionId, authType } = userContext;
|
||||||
|
const armEndpoint = configContext.ARM_ENDPOINT;
|
||||||
|
if (!subscriptionId || !armEndpoint || authType === AuthType.EncryptedToken) {
|
||||||
|
// explorer is not aware of the database account yet
|
||||||
|
this.isSparkEnabledForAccount(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const featureUri = `subscriptions/${subscriptionId}/providers/Microsoft.Features/providers/Microsoft.DocumentDb/features/${Constants.AfecFeatures.Spark}`;
|
||||||
|
const resourceProviderClient = new ResourceProviderClientFactory().getOrCreate(featureUri);
|
||||||
|
try {
|
||||||
|
const sparkNotebooksFeature: DataModels.AfecFeature = await resourceProviderClient.getAsync(
|
||||||
|
featureUri,
|
||||||
|
Constants.ArmApiVersions.armFeatures
|
||||||
|
);
|
||||||
|
const isEnabled =
|
||||||
|
(sparkNotebooksFeature &&
|
||||||
|
sparkNotebooksFeature.properties &&
|
||||||
|
sparkNotebooksFeature.properties.state === "Registered") ||
|
||||||
|
false;
|
||||||
|
this.isSparkEnabledForAccount(isEnabled);
|
||||||
|
} catch (error) {
|
||||||
|
Logger.logError(getErrorMessage(error), "Explorer/isSparkEnabledForAccount");
|
||||||
|
this.isSparkEnabledForAccount(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
public _isAfecFeatureRegistered = async (featureName: string): Promise<boolean> => {
|
||||||
|
const { subscriptionId, authType } = userContext;
|
||||||
|
const armEndpoint = configContext.ARM_ENDPOINT;
|
||||||
|
if (!featureName || !subscriptionId || !armEndpoint || authType === AuthType.EncryptedToken) {
|
||||||
|
// explorer is not aware of the database account yet
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
const featureUri = `subscriptions/${subscriptionId}/providers/Microsoft.Features/providers/Microsoft.DocumentDb/features/${featureName}`;
|
||||||
|
const resourceProviderClient = new ResourceProviderClientFactory().getOrCreate(featureUri);
|
||||||
|
try {
|
||||||
|
const featureStatus: DataModels.AfecFeature = await resourceProviderClient.getAsync(
|
||||||
|
featureUri,
|
||||||
|
Constants.ArmApiVersions.armFeatures
|
||||||
|
);
|
||||||
|
const isEnabled =
|
||||||
|
(featureStatus && featureStatus.properties && featureStatus.properties.state === "Registered") || false;
|
||||||
|
return isEnabled;
|
||||||
|
} catch (error) {
|
||||||
|
Logger.logError(getErrorMessage(error), "Explorer/isSparkEnabledForAccount");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
private refreshNotebookList = async (): Promise<void> => {
|
private refreshNotebookList = async (): Promise<void> => {
|
||||||
if (!this.isNotebookEnabled() || !this.notebookManager?.notebookContentClient) {
|
if (!this.isNotebookEnabled() || !this.notebookManager?.notebookContentClient) {
|
||||||
return;
|
return;
|
||||||
@@ -1405,6 +1707,7 @@ export default class Explorer {
|
|||||||
hashLocation: `${hashLocation} ${index}`,
|
hashLocation: `${hashLocation} ${index}`,
|
||||||
isTabsContentExpanded: ko.observable(true),
|
isTabsContentExpanded: ko.observable(true),
|
||||||
onLoadStartKey: null,
|
onLoadStartKey: null,
|
||||||
|
onUpdateTabsButtons: this.onUpdateTabsButtons,
|
||||||
container: this,
|
container: this,
|
||||||
kind: kind,
|
kind: kind,
|
||||||
});
|
});
|
||||||
@@ -1435,6 +1738,7 @@ export default class Explorer {
|
|||||||
title: title,
|
title: title,
|
||||||
tabPath: title,
|
tabPath: title,
|
||||||
hashLocation: hashLocation,
|
hashLocation: hashLocation,
|
||||||
|
onUpdateTabsButtons: this.onUpdateTabsButtons,
|
||||||
onLoadStartKey: null,
|
onLoadStartKey: null,
|
||||||
isTabsContentExpanded: ko.observable(true),
|
isTabsContentExpanded: ko.observable(true),
|
||||||
},
|
},
|
||||||
@@ -1465,7 +1769,31 @@ export default class Explorer {
|
|||||||
if (activeTab) {
|
if (activeTab) {
|
||||||
activeTab.onActivate(); // TODO only update tabs buttons?
|
activeTab.onActivate(); // TODO only update tabs buttons?
|
||||||
} else {
|
} else {
|
||||||
useCommandBar.getState().setContextButtons([]);
|
this.onUpdateTabsButtons([]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private getTokenRefreshInterval(token: string): number {
|
||||||
|
let tokenRefreshInterval = Constants.ClientDefaults.arcadiaTokenRefreshInterval;
|
||||||
|
if (!token) {
|
||||||
|
return tokenRefreshInterval;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const tokenPayload = decryptJWTToken(this.arcadiaToken());
|
||||||
|
if (tokenPayload && tokenPayload.hasOwnProperty("exp")) {
|
||||||
|
const expirationTime = tokenPayload.exp as number; // seconds since unix epoch
|
||||||
|
const now = new Date().getTime() / 1000;
|
||||||
|
const tokenExpirationIntervalInMs = (expirationTime - now) * 1000;
|
||||||
|
if (tokenExpirationIntervalInMs < tokenRefreshInterval) {
|
||||||
|
tokenRefreshInterval =
|
||||||
|
tokenExpirationIntervalInMs - Constants.ClientDefaults.arcadiaTokenRefreshIntervalPaddingMs;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return tokenRefreshInterval;
|
||||||
|
} catch (error) {
|
||||||
|
Logger.logError(getErrorMessage(error), "Explorer/getTokenRefreshInterval");
|
||||||
|
return tokenRefreshInterval;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1500,6 +1828,11 @@ export default class Explorer {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async loadSelectedDatabaseOffer(): Promise<void> {
|
||||||
|
const database = this.findSelectedDatabase();
|
||||||
|
await database?.loadOffer();
|
||||||
|
}
|
||||||
|
|
||||||
public async loadDatabaseOffers(): Promise<void> {
|
public async loadDatabaseOffers(): Promise<void> {
|
||||||
await Promise.all(
|
await Promise.all(
|
||||||
this.databases()?.map(async (database: ViewModels.Database) => {
|
this.databases()?.map(async (database: ViewModels.Database) => {
|
||||||
@@ -1528,85 +1861,124 @@ export default class Explorer {
|
|||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public openDeleteCollectionConfirmationPane(): void {
|
public openDeleteCollectionConfirmationPane(): void {
|
||||||
useSidePanel
|
this.openSidePanel(
|
||||||
.getState()
|
"Delete " + getCollectionName(),
|
||||||
.openSidePanel("Delete " + getCollectionName(), <DeleteCollectionConfirmationPane explorer={this} />);
|
<DeleteCollectionConfirmationPane explorer={this} closePanel={this.closeSidePanel} />
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public openDeleteDatabaseConfirmationPane(): void {
|
public openDeleteDatabaseConfirmationPane(): void {
|
||||||
useSidePanel
|
this.openSidePanel(
|
||||||
.getState()
|
|
||||||
.openSidePanel(
|
|
||||||
"Delete " + getDatabaseName(),
|
"Delete " + getDatabaseName(),
|
||||||
<DeleteDatabaseConfirmationPanel explorer={this} selectedDatabase={this.findSelectedDatabase()} />
|
<DeleteDatabaseConfirmationPanel
|
||||||
|
explorer={this}
|
||||||
|
openNotificationConsole={() => this.expandConsole()}
|
||||||
|
closePanel={this.closeSidePanel}
|
||||||
|
selectedDatabase={this.findSelectedDatabase()}
|
||||||
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public openUploadItemsPanePane(): void {
|
public openUploadItemsPanePane(): void {
|
||||||
useSidePanel.getState().openSidePanel("Upload " + getUploadName(), <UploadItemsPane explorer={this} />);
|
this.openSidePanel("Upload " + getUploadName(), <UploadItemsPane explorer={this} />);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public openSettingPane(): void {
|
||||||
|
this.openSidePanel(
|
||||||
|
"Setting",
|
||||||
|
<SettingsPane expandConsole={() => this.expandConsole()} closePanel={this.closeSidePanel} />
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
public openExecuteSprocParamsPanel(storedProcedure: StoredProcedure): void {
|
public openExecuteSprocParamsPanel(storedProcedure: StoredProcedure): void {
|
||||||
useSidePanel
|
this.openSidePanel(
|
||||||
.getState()
|
"Input parameters",
|
||||||
.openSidePanel("Input parameters", <ExecuteSprocParamsPane storedProcedure={storedProcedure} />);
|
<ExecuteSprocParamsPane
|
||||||
|
storedProcedure={storedProcedure}
|
||||||
|
expandConsole={() => this.expandConsole()}
|
||||||
|
closePanel={() => this.closeSidePanel()}
|
||||||
|
/>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async openAddCollectionPanel(databaseId?: string): Promise<void> {
|
public async openAddCollectionPanel(databaseId?: string): Promise<void> {
|
||||||
await this.loadDatabaseOffers();
|
await this.loadDatabaseOffers();
|
||||||
useSidePanel
|
this.openSidePanel(
|
||||||
.getState()
|
"New " + getCollectionName(),
|
||||||
.openSidePanel("New " + getCollectionName(), <AddCollectionPanel explorer={this} databaseId={databaseId} />);
|
<AddCollectionPanel
|
||||||
|
explorer={this}
|
||||||
|
closePanel={() => this.closeSidePanel()}
|
||||||
|
openNotificationConsole={() => this.expandConsole()}
|
||||||
|
databaseId={databaseId}
|
||||||
|
/>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
public openAddDatabasePane(): void {
|
public openAddDatabasePane(): void {
|
||||||
useSidePanel.getState().openSidePanel("New " + getDatabaseName(), <AddDatabasePanel explorer={this} />);
|
this.openSidePanel(
|
||||||
|
"New " + getDatabaseName(),
|
||||||
|
<AddDatabasePanel
|
||||||
|
explorer={this}
|
||||||
|
openNotificationConsole={() => this.expandConsole()}
|
||||||
|
closePanel={this.closeSidePanel}
|
||||||
|
/>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public openBrowseQueriesPanel(): void {
|
public openBrowseQueriesPanel(): void {
|
||||||
useSidePanel.getState().openSidePanel("Open Saved Queries", <BrowseQueriesPane explorer={this} />);
|
this.openSidePanel("Open Saved Queries", <BrowseQueriesPane explorer={this} closePanel={this.closeSidePanel} />);
|
||||||
|
}
|
||||||
|
|
||||||
|
public openLoadQueryPanel(): void {
|
||||||
|
this.openSidePanel("Load Query", <LoadQueryPane explorer={this} closePanel={() => this.closeSidePanel()} />);
|
||||||
}
|
}
|
||||||
|
|
||||||
public openSaveQueryPanel(): void {
|
public openSaveQueryPanel(): void {
|
||||||
useSidePanel.getState().openSidePanel("Save Query", <SaveQueryPane explorer={this} />);
|
this.openSidePanel("Save Query", <SaveQueryPane explorer={this} closePanel={() => this.closeSidePanel()} />);
|
||||||
}
|
}
|
||||||
|
|
||||||
public openUploadFilePanel(parent?: NotebookContentItem): void {
|
public openUploadFilePanel(parent?: NotebookContentItem): void {
|
||||||
parent = parent || this.resourceTree.myNotebooksContentRoot;
|
parent = parent || this.resourceTree.myNotebooksContentRoot;
|
||||||
useSidePanel
|
this.openSidePanel(
|
||||||
.getState()
|
|
||||||
.openSidePanel(
|
|
||||||
"Upload file to notebook server",
|
"Upload file to notebook server",
|
||||||
<UploadFilePane uploadFile={(name: string, content: string) => this.uploadFile(name, content, parent)} />
|
<UploadFilePane
|
||||||
|
expandConsole={() => this.expandConsole()}
|
||||||
|
closePanel={this.closeSidePanel}
|
||||||
|
uploadFile={(name: string, content: string) => this.uploadFile(name, content, parent)}
|
||||||
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public openCassandraAddCollectionPane(): void {
|
public openCassandraAddCollectionPane(): void {
|
||||||
useSidePanel
|
this.openSidePanel(
|
||||||
.getState()
|
|
||||||
.openSidePanel(
|
|
||||||
"Add Table",
|
"Add Table",
|
||||||
<CassandraAddCollectionPane explorer={this} cassandraApiClient={new CassandraAPIDataClient()} />
|
<CassandraAddCollectionPane
|
||||||
|
explorer={this}
|
||||||
|
closePanel={() => this.closeSidePanel()}
|
||||||
|
cassandraApiClient={new CassandraAPIDataClient()}
|
||||||
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
public openGitHubReposPanel(header: string, junoClient?: JunoClient): void {
|
public openGitHubReposPanel(header: string, junoClient?: JunoClient): void {
|
||||||
useSidePanel
|
this.openSidePanel(
|
||||||
.getState()
|
|
||||||
.openSidePanel(
|
|
||||||
header,
|
header,
|
||||||
<GitHubReposPanel
|
<GitHubReposPanel
|
||||||
explorer={this}
|
explorer={this}
|
||||||
|
closePanel={this.closeSidePanel}
|
||||||
gitHubClientProp={this.notebookManager.gitHubClient}
|
gitHubClientProp={this.notebookManager.gitHubClient}
|
||||||
junoClientProp={junoClient}
|
junoClientProp={junoClient}
|
||||||
|
openNotificationConsole={() => this.expandConsole()}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public openAddTableEntityPanel(queryTablesTab: QueryTablesTab, tableEntityListViewModel: TableListViewModal): void {
|
public openAddTableEntityPanel(queryTablesTab: QueryTablesTab, tableEntityListViewModel: TableListViewModal): void {
|
||||||
useSidePanel
|
this.openSidePanel(
|
||||||
.getState()
|
|
||||||
.openSidePanel(
|
|
||||||
"Add Table Entity",
|
"Add Table Entity",
|
||||||
<AddTableEntityPanel
|
<AddTableEntityPanel
|
||||||
tableDataClient={this.tableDataClient}
|
explorer={this}
|
||||||
|
closePanel={this.closeSidePanel}
|
||||||
queryTablesTab={queryTablesTab}
|
queryTablesTab={queryTablesTab}
|
||||||
tableEntityListViewModel={tableEntityListViewModel}
|
tableEntityListViewModel={tableEntityListViewModel}
|
||||||
cassandraApiClient={new CassandraAPIDataClient()}
|
cassandraApiClient={new CassandraAPIDataClient()}
|
||||||
@@ -1614,18 +1986,24 @@ export default class Explorer {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
public openSetupNotebooksPanel(title: string, description: string): void {
|
public openSetupNotebooksPanel(title: string, description: string): void {
|
||||||
useSidePanel
|
this.openSidePanel(
|
||||||
.getState()
|
title,
|
||||||
.openSidePanel(title, <SetupNoteBooksPanel explorer={this} panelTitle={title} panelDescription={description} />);
|
<SetupNoteBooksPanel
|
||||||
|
explorer={this}
|
||||||
|
closePanel={this.closeSidePanel}
|
||||||
|
openNotificationConsole={() => this.expandConsole()}
|
||||||
|
panelTitle={title}
|
||||||
|
panelDescription={description}
|
||||||
|
/>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public openEditTableEntityPanel(queryTablesTab: QueryTablesTab, tableEntityListViewModel: TableListViewModal): void {
|
public openEditTableEntityPanel(queryTablesTab: QueryTablesTab, tableEntityListViewModel: TableListViewModal): void {
|
||||||
useSidePanel
|
this.openSidePanel(
|
||||||
.getState()
|
|
||||||
.openSidePanel(
|
|
||||||
"Edit Table Entity",
|
"Edit Table Entity",
|
||||||
<EditTableEntityPanel
|
<EditTableEntityPanel
|
||||||
tableDataClient={this.tableDataClient}
|
explorer={this}
|
||||||
|
closePanel={this.closeSidePanel}
|
||||||
queryTablesTab={queryTablesTab}
|
queryTablesTab={queryTablesTab}
|
||||||
tableEntityListViewModel={tableEntityListViewModel}
|
tableEntityListViewModel={tableEntityListViewModel}
|
||||||
cassandraApiClient={new CassandraAPIDataClient()}
|
cassandraApiClient={new CassandraAPIDataClient()}
|
||||||
@@ -1634,9 +2012,9 @@ export default class Explorer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public openTableSelectQueryPanel(queryViewModal: QueryViewModel): void {
|
public openTableSelectQueryPanel(queryViewModal: QueryViewModel): void {
|
||||||
useSidePanel.getState().openSidePanel("Select Column", <TableQuerySelectPanel queryViewModel={queryViewModal} />);
|
this.openSidePanel(
|
||||||
}
|
"Select Column",
|
||||||
public openSettingPane(): void {
|
<TableQuerySelectPanel explorer={this} closePanel={this.closeSidePanel} queryViewModel={queryViewModal} />
|
||||||
useSidePanel.getState().openSidePanel("Settings", <SettingsPane />);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ export interface GremlinSimpleClientParameters {
|
|||||||
password: string;
|
password: string;
|
||||||
successCallback: (result: Result) => void;
|
successCallback: (result: Result) => void;
|
||||||
progressCallback: (result: Result) => void;
|
progressCallback: (result: Result) => void;
|
||||||
failureCallback: (result: Result, error: string) => void;
|
failureCallback: (result: Result | null, error: string) => void;
|
||||||
infoCallback: (msg: string) => void;
|
infoCallback: (msg: string) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -62,7 +62,6 @@ export class GremlinSimpleClient {
|
|||||||
private static readonly requestChargeHeader = "x-ms-request-charge";
|
private static readonly requestChargeHeader = "x-ms-request-charge";
|
||||||
|
|
||||||
public params: GremlinSimpleClientParameters;
|
public params: GremlinSimpleClientParameters;
|
||||||
private protocols: string | string[];
|
|
||||||
private ws: WebSocket;
|
private ws: WebSocket;
|
||||||
|
|
||||||
public requestsToSend: { [requestId: string]: GremlinRequestMessage };
|
public requestsToSend: { [requestId: string]: GremlinRequestMessage };
|
||||||
@@ -72,6 +71,7 @@ export class GremlinSimpleClient {
|
|||||||
this.params = params;
|
this.params = params;
|
||||||
this.pendingRequests = {};
|
this.pendingRequests = {};
|
||||||
this.requestsToSend = {};
|
this.requestsToSend = {};
|
||||||
|
this.ws = GremlinSimpleClient.createWebSocket(this.params.endpoint);
|
||||||
}
|
}
|
||||||
|
|
||||||
public connect() {
|
public connect() {
|
||||||
@@ -117,7 +117,7 @@ export class GremlinSimpleClient {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public decodeMessage(msg: MessageEvent): GremlinResponseMessage {
|
public decodeMessage(msg: MessageEvent): GremlinResponseMessage | null {
|
||||||
if (msg.data === null) {
|
if (msg.data === null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@@ -280,7 +280,7 @@ export class GremlinSimpleClient {
|
|||||||
|
|
||||||
public static utf8ToB64(utf8Str: string) {
|
public static utf8ToB64(utf8Str: string) {
|
||||||
return btoa(
|
return btoa(
|
||||||
encodeURIComponent(utf8Str).replace(/%([0-9A-F]{2})/g, function (match, p1) {
|
encodeURIComponent(utf8Str).replace(/%([0-9A-F]{2})/g, function (_match, p1) {
|
||||||
return String.fromCharCode(parseInt(p1, 16));
|
return String.fromCharCode(parseInt(p1, 16));
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
@@ -305,7 +305,7 @@ export class GremlinSimpleClient {
|
|||||||
return binaryMessage;
|
return binaryMessage;
|
||||||
}
|
}
|
||||||
|
|
||||||
private onOpen(event: any) {
|
private onOpen(_event: any) {
|
||||||
this.executeRequestsToSend();
|
this.executeRequestsToSend();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,44 +3,67 @@
|
|||||||
* If the component signals a change through the callback passed in the properties, it must render the React component when appropriate
|
* If the component signals a change through the callback passed in the properties, it must render the React component when appropriate
|
||||||
* and update any knockout observables passed from the parent.
|
* and update any knockout observables passed from the parent.
|
||||||
*/
|
*/
|
||||||
import { CommandBar as FluentCommandBar, ICommandBarItemProps } from "@fluentui/react";
|
import { CommandBar, ICommandBarItemProps } from "@fluentui/react";
|
||||||
|
import * as ko from "knockout";
|
||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import create, { UseStore } from "zustand";
|
import { ReactAdapter } from "../../../Bindings/ReactBindingHandler";
|
||||||
import { StyleConstants } from "../../../Common/Constants";
|
import { StyleConstants } from "../../../Common/Constants";
|
||||||
import * as ViewModels from "../../../Contracts/ViewModels";
|
import * as ViewModels from "../../../Contracts/ViewModels";
|
||||||
import { useObservable } from "../../../hooks/useObservable";
|
import { userContext } from "../../../UserContext";
|
||||||
import { CommandButtonComponentProps } from "../../Controls/CommandButton/CommandButtonComponent";
|
import { CommandButtonComponentProps } from "../../Controls/CommandButton/CommandButtonComponent";
|
||||||
import Explorer from "../../Explorer";
|
import Explorer from "../../Explorer";
|
||||||
import * as CommandBarComponentButtonFactory from "./CommandBarComponentButtonFactory";
|
import * as CommandBarComponentButtonFactory from "./CommandBarComponentButtonFactory";
|
||||||
import * as CommandBarUtil from "./CommandBarUtil";
|
import * as CommandBarUtil from "./CommandBarUtil";
|
||||||
|
|
||||||
interface Props {
|
export class CommandBarComponentAdapter implements ReactAdapter {
|
||||||
container: Explorer;
|
public parameters: ko.Observable<number>;
|
||||||
}
|
public container: Explorer;
|
||||||
|
private tabsButtons: CommandButtonComponentProps[];
|
||||||
|
private isNotebookTabActive: ko.Computed<boolean>;
|
||||||
|
|
||||||
export interface CommandBarStore {
|
constructor(container: Explorer) {
|
||||||
contextButtons: CommandButtonComponentProps[];
|
this.container = container;
|
||||||
setContextButtons: (contextButtons: CommandButtonComponentProps[]) => void;
|
this.tabsButtons = [];
|
||||||
}
|
this.isNotebookTabActive = ko.computed(
|
||||||
|
() => container.tabsManager.activeTab()?.tabKind === ViewModels.CollectionTabKind.NotebookV2
|
||||||
|
);
|
||||||
|
|
||||||
export const useCommandBar: UseStore<CommandBarStore> = create((set) => ({
|
// These are the parameters watched by the react binding that will trigger a renderComponent() if one of the ko mutates
|
||||||
contextButtons: [],
|
const toWatch = [
|
||||||
setContextButtons: (contextButtons: CommandButtonComponentProps[]) => set((state) => ({ ...state, contextButtons })),
|
container.deleteCollectionText,
|
||||||
}));
|
container.deleteDatabaseText,
|
||||||
|
container.addCollectionText,
|
||||||
|
container.isDatabaseNodeOrNoneSelected,
|
||||||
|
container.isDatabaseNodeSelected,
|
||||||
|
container.isNoneSelected,
|
||||||
|
container.isResourceTokenCollectionNodeSelected,
|
||||||
|
container.isHostedDataExplorerEnabled,
|
||||||
|
container.isSynapseLinkUpdating,
|
||||||
|
userContext?.databaseAccount,
|
||||||
|
this.isNotebookTabActive,
|
||||||
|
container.isServerlessEnabled,
|
||||||
|
];
|
||||||
|
|
||||||
export const CommandBar: React.FC<Props> = ({ container }: Props) => {
|
ko.computed(() => ko.toJSON(toWatch)).subscribe(() => this.triggerRender());
|
||||||
useObservable(container.selectedNode);
|
this.parameters = ko.observable(Date.now());
|
||||||
const buttons = useCommandBar((state) => state.contextButtons);
|
}
|
||||||
|
|
||||||
|
public onUpdateTabsButtons(buttons: CommandButtonComponentProps[]): void {
|
||||||
|
this.tabsButtons = buttons;
|
||||||
|
this.triggerRender();
|
||||||
|
}
|
||||||
|
|
||||||
|
public renderComponent(): JSX.Element {
|
||||||
const backgroundColor = StyleConstants.BaseLight;
|
const backgroundColor = StyleConstants.BaseLight;
|
||||||
|
|
||||||
const staticButtons = CommandBarComponentButtonFactory.createStaticCommandBarButtons(container);
|
const staticButtons = CommandBarComponentButtonFactory.createStaticCommandBarButtons(this.container);
|
||||||
const contextButtons = (buttons || []).concat(
|
const contextButtons = (this.tabsButtons || []).concat(
|
||||||
CommandBarComponentButtonFactory.createContextCommandBarButtons(container)
|
CommandBarComponentButtonFactory.createContextCommandBarButtons(this.container)
|
||||||
);
|
);
|
||||||
const controlButtons = CommandBarComponentButtonFactory.createControlCommandBarButtons(container);
|
const controlButtons = CommandBarComponentButtonFactory.createControlCommandBarButtons(this.container);
|
||||||
|
|
||||||
const uiFabricStaticButtons = CommandBarUtil.convertButton(staticButtons, backgroundColor);
|
const uiFabricStaticButtons = CommandBarUtil.convertButton(staticButtons, backgroundColor);
|
||||||
if (buttons && buttons.length > 0) {
|
if (this.tabsButtons && this.tabsButtons.length > 0) {
|
||||||
uiFabricStaticButtons.forEach((btn: ICommandBarItemProps) => (btn.iconOnly = true));
|
uiFabricStaticButtons.forEach((btn: ICommandBarItemProps) => (btn.iconOnly = true));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -53,13 +76,16 @@ export const CommandBar: React.FC<Props> = ({ container }: Props) => {
|
|||||||
const uiFabricControlButtons = CommandBarUtil.convertButton(controlButtons, backgroundColor);
|
const uiFabricControlButtons = CommandBarUtil.convertButton(controlButtons, backgroundColor);
|
||||||
uiFabricControlButtons.forEach((btn: ICommandBarItemProps) => (btn.iconOnly = true));
|
uiFabricControlButtons.forEach((btn: ICommandBarItemProps) => (btn.iconOnly = true));
|
||||||
|
|
||||||
if (container.tabsManager.activeTab()?.tabKind === ViewModels.CollectionTabKind.NotebookV2) {
|
if (this.isNotebookTabActive()) {
|
||||||
uiFabricControlButtons.unshift(CommandBarUtil.createMemoryTracker("memoryTracker", container.memoryUsageInfo));
|
uiFabricControlButtons.unshift(
|
||||||
|
CommandBarUtil.createMemoryTracker("memoryTracker", this.container.memoryUsageInfo)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<React.Fragment>
|
||||||
<div className="commandBarContainer">
|
<div className="commandBarContainer">
|
||||||
<FluentCommandBar
|
<CommandBar
|
||||||
ariaLabel="Use left and right arrow keys to navigate between commands"
|
ariaLabel="Use left and right arrow keys to navigate between commands"
|
||||||
items={uiFabricStaticButtons.concat(uiFabricTabsButtons)}
|
items={uiFabricStaticButtons.concat(uiFabricTabsButtons)}
|
||||||
farItems={uiFabricControlButtons}
|
farItems={uiFabricControlButtons}
|
||||||
@@ -69,5 +95,11 @@ export const CommandBar: React.FC<Props> = ({ container }: Props) => {
|
|||||||
overflowButtonProps={{ ariaLabel: "More commands" }}
|
overflowButtonProps={{ ariaLabel: "More commands" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
</React.Fragment>
|
||||||
);
|
);
|
||||||
};
|
}
|
||||||
|
|
||||||
|
private triggerRender() {
|
||||||
|
window.requestAnimationFrame(() => this.parameters(Date.now()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ describe("CommandBarComponentButtonFactory tests", () => {
|
|||||||
|
|
||||||
beforeAll(() => {
|
beforeAll(() => {
|
||||||
mockExplorer = {} as Explorer;
|
mockExplorer = {} as Explorer;
|
||||||
|
mockExplorer.addCollectionText = ko.observable("mockText");
|
||||||
updateUserContext({
|
updateUserContext({
|
||||||
databaseAccount: {
|
databaseAccount: {
|
||||||
properties: {
|
properties: {
|
||||||
@@ -22,6 +23,7 @@ describe("CommandBarComponentButtonFactory tests", () => {
|
|||||||
},
|
},
|
||||||
} as DatabaseAccount,
|
} as DatabaseAccount,
|
||||||
});
|
});
|
||||||
|
mockExplorer.isSparkEnabled = ko.observable(true);
|
||||||
mockExplorer.isSynapseLinkUpdating = ko.observable(false);
|
mockExplorer.isSynapseLinkUpdating = ko.observable(false);
|
||||||
|
|
||||||
mockExplorer.isDatabaseNodeOrNoneSelected = () => true;
|
mockExplorer.isDatabaseNodeOrNoneSelected = () => true;
|
||||||
@@ -56,6 +58,7 @@ describe("CommandBarComponentButtonFactory tests", () => {
|
|||||||
|
|
||||||
beforeAll(() => {
|
beforeAll(() => {
|
||||||
mockExplorer = {} as Explorer;
|
mockExplorer = {} as Explorer;
|
||||||
|
mockExplorer.addCollectionText = ko.observable("mockText");
|
||||||
updateUserContext({
|
updateUserContext({
|
||||||
databaseAccount: {
|
databaseAccount: {
|
||||||
properties: {
|
properties: {
|
||||||
@@ -64,6 +67,7 @@ describe("CommandBarComponentButtonFactory tests", () => {
|
|||||||
} as DatabaseAccount,
|
} as DatabaseAccount,
|
||||||
});
|
});
|
||||||
mockExplorer.isSynapseLinkUpdating = ko.observable(false);
|
mockExplorer.isSynapseLinkUpdating = ko.observable(false);
|
||||||
|
mockExplorer.isSparkEnabled = ko.observable(true);
|
||||||
mockExplorer.isSynapseLinkUpdating = ko.observable(false);
|
mockExplorer.isSynapseLinkUpdating = ko.observable(false);
|
||||||
|
|
||||||
mockExplorer.isDatabaseNodeOrNoneSelected = () => true;
|
mockExplorer.isDatabaseNodeOrNoneSelected = () => true;
|
||||||
@@ -122,6 +126,7 @@ describe("CommandBarComponentButtonFactory tests", () => {
|
|||||||
|
|
||||||
beforeAll(() => {
|
beforeAll(() => {
|
||||||
mockExplorer = {} as Explorer;
|
mockExplorer = {} as Explorer;
|
||||||
|
mockExplorer.addCollectionText = ko.observable("mockText");
|
||||||
updateUserContext({
|
updateUserContext({
|
||||||
databaseAccount: {
|
databaseAccount: {
|
||||||
properties: {
|
properties: {
|
||||||
@@ -129,6 +134,7 @@ describe("CommandBarComponentButtonFactory tests", () => {
|
|||||||
},
|
},
|
||||||
} as DatabaseAccount,
|
} as DatabaseAccount,
|
||||||
});
|
});
|
||||||
|
mockExplorer.isSparkEnabled = ko.observable(true);
|
||||||
mockExplorer.isSynapseLinkUpdating = ko.observable(false);
|
mockExplorer.isSynapseLinkUpdating = ko.observable(false);
|
||||||
|
|
||||||
mockExplorer.isDatabaseNodeOrNoneSelected = () => true;
|
mockExplorer.isDatabaseNodeOrNoneSelected = () => true;
|
||||||
@@ -220,6 +226,7 @@ describe("CommandBarComponentButtonFactory tests", () => {
|
|||||||
|
|
||||||
beforeAll(() => {
|
beforeAll(() => {
|
||||||
mockExplorer = {} as Explorer;
|
mockExplorer = {} as Explorer;
|
||||||
|
mockExplorer.addCollectionText = ko.observable("mockText");
|
||||||
updateUserContext({
|
updateUserContext({
|
||||||
databaseAccount: {
|
databaseAccount: {
|
||||||
properties: {
|
properties: {
|
||||||
@@ -228,6 +235,7 @@ describe("CommandBarComponentButtonFactory tests", () => {
|
|||||||
} as DatabaseAccount,
|
} as DatabaseAccount,
|
||||||
});
|
});
|
||||||
mockExplorer.isSynapseLinkUpdating = ko.observable(false);
|
mockExplorer.isSynapseLinkUpdating = ko.observable(false);
|
||||||
|
mockExplorer.isSparkEnabled = ko.observable(true);
|
||||||
|
|
||||||
mockExplorer.isDatabaseNodeOrNoneSelected = () => true;
|
mockExplorer.isDatabaseNodeOrNoneSelected = () => true;
|
||||||
mockExplorer.isServerlessEnabled = ko.computed<boolean>(() => false);
|
mockExplorer.isServerlessEnabled = ko.computed<boolean>(() => false);
|
||||||
@@ -310,6 +318,7 @@ describe("CommandBarComponentButtonFactory tests", () => {
|
|||||||
|
|
||||||
beforeAll(() => {
|
beforeAll(() => {
|
||||||
mockExplorer = {} as Explorer;
|
mockExplorer = {} as Explorer;
|
||||||
|
mockExplorer.addCollectionText = ko.observable("mockText");
|
||||||
updateUserContext({
|
updateUserContext({
|
||||||
databaseAccount: {
|
databaseAccount: {
|
||||||
properties: {
|
properties: {
|
||||||
@@ -319,6 +328,7 @@ describe("CommandBarComponentButtonFactory tests", () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
mockExplorer.isSynapseLinkUpdating = ko.observable(false);
|
mockExplorer.isSynapseLinkUpdating = ko.observable(false);
|
||||||
|
mockExplorer.isSparkEnabled = ko.observable(true);
|
||||||
mockExplorer.isDatabaseNodeOrNoneSelected = () => true;
|
mockExplorer.isDatabaseNodeOrNoneSelected = () => true;
|
||||||
mockExplorer.isNotebooksEnabledForAccount = ko.observable(false);
|
mockExplorer.isNotebooksEnabledForAccount = ko.observable(false);
|
||||||
mockExplorer.isRunningOnNationalCloud = ko.observable(false);
|
mockExplorer.isRunningOnNationalCloud = ko.observable(false);
|
||||||
@@ -370,6 +380,7 @@ describe("CommandBarComponentButtonFactory tests", () => {
|
|||||||
describe("Resource token", () => {
|
describe("Resource token", () => {
|
||||||
beforeAll(() => {
|
beforeAll(() => {
|
||||||
mockExplorer = {} as Explorer;
|
mockExplorer = {} as Explorer;
|
||||||
|
mockExplorer.addCollectionText = ko.observable("mockText");
|
||||||
mockExplorer.isDatabaseNodeOrNoneSelected = () => true;
|
mockExplorer.isDatabaseNodeOrNoneSelected = () => true;
|
||||||
mockExplorer.isResourceTokenCollectionNodeSelected = ko.computed(() => true);
|
mockExplorer.isResourceTokenCollectionNodeSelected = ko.computed(() => true);
|
||||||
mockExplorer.isServerlessEnabled = ko.computed<boolean>(() => false);
|
mockExplorer.isServerlessEnabled = ko.computed<boolean>(() => false);
|
||||||
|
|||||||
@@ -21,13 +21,11 @@ import { AuthType } from "../../../AuthType";
|
|||||||
import * as Constants from "../../../Common/Constants";
|
import * as Constants from "../../../Common/Constants";
|
||||||
import { configContext, Platform } from "../../../ConfigContext";
|
import { configContext, Platform } from "../../../ConfigContext";
|
||||||
import * as ViewModels from "../../../Contracts/ViewModels";
|
import * as ViewModels from "../../../Contracts/ViewModels";
|
||||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
|
||||||
import { userContext } from "../../../UserContext";
|
import { userContext } from "../../../UserContext";
|
||||||
import { getCollectionName, getDatabaseName } from "../../../Utils/APITypeUtils";
|
import { getDatabaseName } from "../../../Utils/APITypeUtils";
|
||||||
import { CommandButtonComponentProps } from "../../Controls/CommandButton/CommandButtonComponent";
|
import { CommandButtonComponentProps } from "../../Controls/CommandButton/CommandButtonComponent";
|
||||||
import Explorer from "../../Explorer";
|
import Explorer from "../../Explorer";
|
||||||
import { OpenFullScreen } from "../../OpenFullScreen";
|
import { OpenFullScreen } from "../../OpenFullScreen";
|
||||||
import { LoadQueryPane } from "../../Panes/LoadQueryPane/LoadQueryPane";
|
|
||||||
|
|
||||||
let counter = 0;
|
let counter = 0;
|
||||||
|
|
||||||
@@ -154,7 +152,7 @@ export function createControlCommandBarButtons(container: Explorer): CommandButt
|
|||||||
{
|
{
|
||||||
iconSrc: SettingsIcon,
|
iconSrc: SettingsIcon,
|
||||||
iconAlt: "Settings",
|
iconAlt: "Settings",
|
||||||
onCommandClick: container.openSettingPane,
|
onCommandClick: () => container.openSettingPane(),
|
||||||
commandButtonLabel: undefined,
|
commandButtonLabel: undefined,
|
||||||
ariaLabel: "Settings",
|
ariaLabel: "Settings",
|
||||||
tooltipText: "Settings",
|
tooltipText: "Settings",
|
||||||
@@ -169,7 +167,7 @@ export function createControlCommandBarButtons(container: Explorer): CommandButt
|
|||||||
iconSrc: OpenInTabIcon,
|
iconSrc: OpenInTabIcon,
|
||||||
iconAlt: label,
|
iconAlt: label,
|
||||||
onCommandClick: () => {
|
onCommandClick: () => {
|
||||||
useSidePanel.getState().openSidePanel("Open Full Screen", <OpenFullScreen />);
|
container.openSidePanel("Open Full Screen", <OpenFullScreen />);
|
||||||
},
|
},
|
||||||
commandButtonLabel: undefined,
|
commandButtonLabel: undefined,
|
||||||
ariaLabel: label,
|
ariaLabel: label,
|
||||||
@@ -217,7 +215,7 @@ function areScriptsSupported(): boolean {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function createNewCollectionGroup(container: Explorer): CommandButtonComponentProps {
|
function createNewCollectionGroup(container: Explorer): CommandButtonComponentProps {
|
||||||
const label = `New ${getCollectionName()}`;
|
const label = container.addCollectionText();
|
||||||
return {
|
return {
|
||||||
iconSrc: AddCollectionIcon,
|
iconSrc: AddCollectionIcon,
|
||||||
iconAlt: label,
|
iconAlt: label,
|
||||||
@@ -410,7 +408,7 @@ function createOpenQueryFromDiskButton(container: Explorer): CommandButtonCompon
|
|||||||
return {
|
return {
|
||||||
iconSrc: OpenQueryFromDiskIcon,
|
iconSrc: OpenQueryFromDiskIcon,
|
||||||
iconAlt: label,
|
iconAlt: label,
|
||||||
onCommandClick: () => useSidePanel.getState().openSidePanel("Load Query", <LoadQueryPane explorer={container} />),
|
onCommandClick: () => container.openLoadQueryPanel(),
|
||||||
commandButtonLabel: label,
|
commandButtonLabel: label,
|
||||||
ariaLabel: label,
|
ariaLabel: label,
|
||||||
hasPopup: true,
|
hasPopup: true,
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ import { StyleConstants } from "../../../Common/Constants";
|
|||||||
import { MemoryUsageInfo } from "../../../Contracts/DataModels";
|
import { MemoryUsageInfo } from "../../../Contracts/DataModels";
|
||||||
import { Action, ActionModifiers } from "../../../Shared/Telemetry/TelemetryConstants";
|
import { Action, ActionModifiers } from "../../../Shared/Telemetry/TelemetryConstants";
|
||||||
import * as TelemetryProcessor from "../../../Shared/Telemetry/TelemetryProcessor";
|
import * as TelemetryProcessor from "../../../Shared/Telemetry/TelemetryProcessor";
|
||||||
|
import { ArcadiaMenuPicker } from "../../Controls/Arcadia/ArcadiaMenuPicker";
|
||||||
import { CommandButtonComponentProps } from "../../Controls/CommandButton/CommandButtonComponent";
|
import { CommandButtonComponentProps } from "../../Controls/CommandButton/CommandButtonComponent";
|
||||||
import { MemoryTrackerComponent } from "./MemoryTrackerComponent";
|
import { MemoryTrackerComponent } from "./MemoryTrackerComponent";
|
||||||
|
|
||||||
@@ -167,6 +168,10 @@ export const convertButton = (btns: CommandButtonComponentProps[], backgroundCol
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (btn.isArcadiaPicker && btn.arcadiaProps) {
|
||||||
|
result.commandBarButtonAs = () => <ArcadiaMenuPicker {...btn.arcadiaProps} />;
|
||||||
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -15,7 +15,6 @@ import LoadingIcon from "../../../../images/loading.svg";
|
|||||||
import ChevronDownIcon from "../../../../images/QueryBuilder/CollapseChevronDown_16x.png";
|
import ChevronDownIcon from "../../../../images/QueryBuilder/CollapseChevronDown_16x.png";
|
||||||
import ChevronUpIcon from "../../../../images/QueryBuilder/CollapseChevronUp_16x.png";
|
import ChevronUpIcon from "../../../../images/QueryBuilder/CollapseChevronUp_16x.png";
|
||||||
import { ClientDefaults, KeyCodes } from "../../../Common/Constants";
|
import { ClientDefaults, KeyCodes } from "../../../Common/Constants";
|
||||||
import { useNotificationConsole } from "../../../hooks/useNotificationConsole";
|
|
||||||
import { userContext } from "../../../UserContext";
|
import { userContext } from "../../../UserContext";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -322,23 +321,3 @@ const PrPreview = (props: { pr: string }) => {
|
|||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export const NotificationConsole: React.FC<
|
|
||||||
Pick<NotificationConsoleComponentProps, "consoleData" | "inProgressConsoleDataIdToBeDeleted">
|
|
||||||
> = ({
|
|
||||||
consoleData,
|
|
||||||
inProgressConsoleDataIdToBeDeleted,
|
|
||||||
}: Pick<NotificationConsoleComponentProps, "consoleData" | "inProgressConsoleDataIdToBeDeleted">) => {
|
|
||||||
const setIsExpanded = useNotificationConsole((state) => state.setIsExpanded);
|
|
||||||
const isExpanded = useNotificationConsole((state) => state.isExpanded);
|
|
||||||
// TODO Refactor NotificationConsoleComponent into a functional component and remove this wrapper
|
|
||||||
// This component only exists so we can use hooks and pass them down to a non-functional component
|
|
||||||
return (
|
|
||||||
<NotificationConsoleComponent
|
|
||||||
consoleData={consoleData}
|
|
||||||
inProgressConsoleDataIdToBeDeleted={inProgressConsoleDataIdToBeDeleted}
|
|
||||||
isConsoleExpanded={isExpanded}
|
|
||||||
setIsConsoleExpanded={setIsExpanded}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|||||||
@@ -36,6 +36,7 @@ import * as Constants from "../../../Common/Constants";
|
|||||||
import { Areas } from "../../../Common/Constants";
|
import { Areas } from "../../../Common/Constants";
|
||||||
import { Action as TelemetryAction, ActionModifiers } from "../../../Shared/Telemetry/TelemetryConstants";
|
import { Action as TelemetryAction, ActionModifiers } from "../../../Shared/Telemetry/TelemetryConstants";
|
||||||
import * as TelemetryProcessor from "../../../Shared/Telemetry/TelemetryProcessor";
|
import * as TelemetryProcessor from "../../../Shared/Telemetry/TelemetryProcessor";
|
||||||
|
import { decryptJWTToken } from "../../../Utils/AuthorizationUtils";
|
||||||
import { logConsoleError, logConsoleInfo } from "../../../Utils/NotificationConsoleUtils";
|
import { logConsoleError, logConsoleInfo } from "../../../Utils/NotificationConsoleUtils";
|
||||||
import * as FileSystemUtil from "../FileSystemUtil";
|
import * as FileSystemUtil from "../FileSystemUtil";
|
||||||
import * as cdbActions from "../NotebookComponent/actions";
|
import * as cdbActions from "../NotebookComponent/actions";
|
||||||
@@ -104,6 +105,11 @@ const formWebSocketURL = (serverConfig: NotebookServiceConfig, kernelId: string,
|
|||||||
params.append("session_id", sessionId);
|
params.append("session_id", sessionId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const userId = getUserPuid();
|
||||||
|
if (userId) {
|
||||||
|
params.append("user_id", userId);
|
||||||
|
}
|
||||||
|
|
||||||
const q = params.toString();
|
const q = params.toString();
|
||||||
const suffix = q !== "" ? `?${q}` : "";
|
const suffix = q !== "" ? `?${q}` : "";
|
||||||
|
|
||||||
@@ -283,6 +289,7 @@ export const launchWebSocketKernelEpic = (
|
|||||||
return EMPTY;
|
return EMPTY;
|
||||||
}
|
}
|
||||||
const serverConfig: NotebookServiceConfig = selectors.serverConfig(host);
|
const serverConfig: NotebookServiceConfig = selectors.serverConfig(host);
|
||||||
|
serverConfig.userPuid = getUserPuid();
|
||||||
|
|
||||||
const {
|
const {
|
||||||
payload: { kernelSpecName, cwd, kernelRef, contentRef },
|
payload: { kernelSpecName, cwd, kernelRef, contentRef },
|
||||||
@@ -759,6 +766,25 @@ const executeFocusedCellAndFocusNextEpic = (
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function getUserPuid(): string {
|
||||||
|
const arcadiaToken = window.dataExplorer && window.dataExplorer.arcadiaToken();
|
||||||
|
if (!arcadiaToken) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
let userPuid;
|
||||||
|
try {
|
||||||
|
const tokenPayload = decryptJWTToken(arcadiaToken);
|
||||||
|
if (tokenPayload && tokenPayload.hasOwnProperty("puid")) {
|
||||||
|
userPuid = tokenPayload.puid;
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
|
||||||
|
return userPuid;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Close tab if mimetype not supported
|
* Close tab if mimetype not supported
|
||||||
* @param action$
|
* @param action$
|
||||||
|
|||||||
@@ -14,13 +14,13 @@ import { MemoryUsageInfo } from "../../Contracts/DataModels";
|
|||||||
import { GitHubClient } from "../../GitHub/GitHubClient";
|
import { GitHubClient } from "../../GitHub/GitHubClient";
|
||||||
import { GitHubContentProvider } from "../../GitHub/GitHubContentProvider";
|
import { GitHubContentProvider } from "../../GitHub/GitHubContentProvider";
|
||||||
import { GitHubOAuthService } from "../../GitHub/GitHubOAuthService";
|
import { GitHubOAuthService } from "../../GitHub/GitHubOAuthService";
|
||||||
import { useSidePanel } from "../../hooks/useSidePanel";
|
|
||||||
import { JunoClient } from "../../Juno/JunoClient";
|
import { JunoClient } from "../../Juno/JunoClient";
|
||||||
import { Action, ActionModifiers } from "../../Shared/Telemetry/TelemetryConstants";
|
import { Action, ActionModifiers } from "../../Shared/Telemetry/TelemetryConstants";
|
||||||
import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor";
|
import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor";
|
||||||
import { userContext } from "../../UserContext";
|
import { userContext } from "../../UserContext";
|
||||||
import { getFullName } from "../../Utils/UserUtils";
|
import { getFullName } from "../../Utils/UserUtils";
|
||||||
import Explorer from "../Explorer";
|
import Explorer from "../Explorer";
|
||||||
|
import { ContextualPaneBase } from "../Panes/ContextualPaneBase";
|
||||||
import { CopyNotebookPane } from "../Panes/CopyNotebookPane/CopyNotebookPane";
|
import { CopyNotebookPane } from "../Panes/CopyNotebookPane/CopyNotebookPane";
|
||||||
import { PublishNotebookPane } from "../Panes/PublishNotebookPane/PublishNotebookPane";
|
import { PublishNotebookPane } from "../Panes/PublishNotebookPane/PublishNotebookPane";
|
||||||
import { ResourceTreeAdapter } from "../Tree/ResourceTreeAdapter";
|
import { ResourceTreeAdapter } from "../Tree/ResourceTreeAdapter";
|
||||||
@@ -56,6 +56,8 @@ export default class NotebookManager {
|
|||||||
public gitHubOAuthService: GitHubOAuthService;
|
public gitHubOAuthService: GitHubOAuthService;
|
||||||
public gitHubClient: GitHubClient;
|
public gitHubClient: GitHubClient;
|
||||||
|
|
||||||
|
public gitHubReposPane: ContextualPaneBase;
|
||||||
|
|
||||||
public initialize(params: NotebookManagerOptions): void {
|
public initialize(params: NotebookManagerOptions): void {
|
||||||
this.params = params;
|
this.params = params;
|
||||||
this.junoClient = new JunoClient();
|
this.junoClient = new JunoClient();
|
||||||
@@ -96,7 +98,7 @@ export default class NotebookManager {
|
|||||||
this.gitHubOAuthService.getTokenObservable().subscribe((token) => {
|
this.gitHubOAuthService.getTokenObservable().subscribe((token) => {
|
||||||
this.gitHubClient.setToken(token?.access_token);
|
this.gitHubClient.setToken(token?.access_token);
|
||||||
if (this?.gitHubOAuthService.isLoggedIn()) {
|
if (this?.gitHubOAuthService.isLoggedIn()) {
|
||||||
useSidePanel.getState().closeSidePanel();
|
this.params.container.closeSidePanel();
|
||||||
this.params.container.openGitHubReposPanel("Manager GitHub settings", this.junoClient);
|
this.params.container.openGitHubReposPanel("Manager GitHub settings", this.junoClient);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -125,13 +127,14 @@ export default class NotebookManager {
|
|||||||
onTakeSnapshot: (request: SnapshotRequest) => void,
|
onTakeSnapshot: (request: SnapshotRequest) => void,
|
||||||
onClosePanel: () => void
|
onClosePanel: () => void
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
useSidePanel
|
const explorer = this.params.container;
|
||||||
.getState()
|
explorer.openSidePanel(
|
||||||
.openSidePanel(
|
|
||||||
"Publish Notebook",
|
"Publish Notebook",
|
||||||
<PublishNotebookPane
|
<PublishNotebookPane
|
||||||
explorer={this.params.container}
|
explorer={this.params.container}
|
||||||
junoClient={this.junoClient}
|
junoClient={this.junoClient}
|
||||||
|
closePanel={this.params.container.closeSidePanel}
|
||||||
|
openNotificationConsole={this.params.container.expandConsole}
|
||||||
name={name}
|
name={name}
|
||||||
author={getFullName()}
|
author={getFullName()}
|
||||||
notebookContent={content}
|
notebookContent={content}
|
||||||
@@ -144,12 +147,11 @@ export default class NotebookManager {
|
|||||||
|
|
||||||
public openCopyNotebookPane(name: string, content: string): void {
|
public openCopyNotebookPane(name: string, content: string): void {
|
||||||
const { container } = this.params;
|
const { container } = this.params;
|
||||||
useSidePanel
|
container.openSidePanel(
|
||||||
.getState()
|
|
||||||
.openSidePanel(
|
|
||||||
"Copy Notebook",
|
"Copy Notebook",
|
||||||
<CopyNotebookPane
|
<CopyNotebookPane
|
||||||
container={container}
|
container={container}
|
||||||
|
closePanel={container.closeSidePanel}
|
||||||
junoClient={this.junoClient}
|
junoClient={this.junoClient}
|
||||||
gitHubOAuthService={this.gitHubOAuthService}
|
gitHubOAuthService={this.gitHubOAuthService}
|
||||||
name={name}
|
name={name}
|
||||||
|
|||||||
@@ -20,7 +20,6 @@ import { getErrorMessage, getErrorStack } from "../../Common/ErrorHandlingUtils"
|
|||||||
import { configContext, Platform } from "../../ConfigContext";
|
import { configContext, Platform } from "../../ConfigContext";
|
||||||
import * as DataModels from "../../Contracts/DataModels";
|
import * as DataModels from "../../Contracts/DataModels";
|
||||||
import { SubscriptionType } from "../../Contracts/SubscriptionType";
|
import { SubscriptionType } from "../../Contracts/SubscriptionType";
|
||||||
import { useSidePanel } from "../../hooks/useSidePanel";
|
|
||||||
import { CollectionCreation } from "../../Shared/Constants";
|
import { CollectionCreation } from "../../Shared/Constants";
|
||||||
import { Action } from "../../Shared/Telemetry/TelemetryConstants";
|
import { Action } from "../../Shared/Telemetry/TelemetryConstants";
|
||||||
import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor";
|
import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor";
|
||||||
@@ -37,6 +36,8 @@ import { PanelLoadingScreen } from "./PanelLoadingScreen";
|
|||||||
|
|
||||||
export interface AddCollectionPanelProps {
|
export interface AddCollectionPanelProps {
|
||||||
explorer: Explorer;
|
explorer: Explorer;
|
||||||
|
closePanel: () => void;
|
||||||
|
openNotificationConsole: () => void;
|
||||||
databaseId?: string;
|
databaseId?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -132,6 +133,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
|||||||
message={this.state.errorMessage}
|
message={this.state.errorMessage}
|
||||||
messageType="error"
|
messageType="error"
|
||||||
showErrorDetails={this.state.showErrorDetails}
|
showErrorDetails={this.state.showErrorDetails}
|
||||||
|
openNotificationConsole={this.props.openNotificationConsole}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
@@ -140,6 +142,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
|||||||
message={getUpsellMessage(userContext.portalEnv, true, this.props.explorer.isFirstResourceCreated(), true)}
|
message={getUpsellMessage(userContext.portalEnv, true, this.props.explorer.isFirstResourceCreated(), true)}
|
||||||
messageType="info"
|
messageType="info"
|
||||||
showErrorDetails={false}
|
showErrorDetails={false}
|
||||||
|
openNotificationConsole={this.props.openNotificationConsole}
|
||||||
link={Constants.Urls.freeTierInformation}
|
link={Constants.Urls.freeTierInformation}
|
||||||
linkText="Learn more"
|
linkText="Learn more"
|
||||||
/>
|
/>
|
||||||
@@ -859,6 +862,8 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
|||||||
case "SQL":
|
case "SQL":
|
||||||
case "Mongo":
|
case "Mongo":
|
||||||
return true;
|
return true;
|
||||||
|
case "Cassandra":
|
||||||
|
return this.props.explorer.hasStorageAnalyticsAfecFeature();
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -1059,7 +1064,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
|||||||
this.setState({ isExecuting: false });
|
this.setState({ isExecuting: false });
|
||||||
this.props.explorer.refreshAllDatabases();
|
this.props.explorer.refreshAllDatabases();
|
||||||
TelemetryProcessor.traceSuccess(Action.CreateCollection, telemetryData, startKey);
|
TelemetryProcessor.traceSuccess(Action.CreateCollection, telemetryData, startKey);
|
||||||
useSidePanel.getState().closeSidePanel();
|
this.props.closePanel();
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
const errorMessage: string = getErrorMessage(error);
|
const errorMessage: string = getErrorMessage(error);
|
||||||
this.setState({ isExecuting: false, errorMessage, showErrorDetails: true });
|
this.setState({ isExecuting: false, errorMessage, showErrorDetails: true });
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ import { getErrorMessage, getErrorStack } from "../../../Common/ErrorHandlingUti
|
|||||||
import { InfoTooltip } from "../../../Common/Tooltip/InfoTooltip";
|
import { InfoTooltip } from "../../../Common/Tooltip/InfoTooltip";
|
||||||
import * as DataModels from "../../../Contracts/DataModels";
|
import * as DataModels from "../../../Contracts/DataModels";
|
||||||
import { SubscriptionType } from "../../../Contracts/SubscriptionType";
|
import { SubscriptionType } from "../../../Contracts/SubscriptionType";
|
||||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
|
||||||
import * as SharedConstants from "../../../Shared/Constants";
|
import * as SharedConstants from "../../../Shared/Constants";
|
||||||
import { Action, ActionModifiers } from "../../../Shared/Telemetry/TelemetryConstants";
|
import { Action, ActionModifiers } from "../../../Shared/Telemetry/TelemetryConstants";
|
||||||
import * as TelemetryProcessor from "../../../Shared/Telemetry/TelemetryProcessor";
|
import * as TelemetryProcessor from "../../../Shared/Telemetry/TelemetryProcessor";
|
||||||
@@ -21,12 +20,15 @@ import { RightPaneForm, RightPaneFormProps } from "../RightPaneForm/RightPaneFor
|
|||||||
|
|
||||||
export interface AddDatabasePaneProps {
|
export interface AddDatabasePaneProps {
|
||||||
explorer: Explorer;
|
explorer: Explorer;
|
||||||
|
closePanel: () => void;
|
||||||
|
openNotificationConsole: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const AddDatabasePanel: FunctionComponent<AddDatabasePaneProps> = ({
|
export const AddDatabasePanel: FunctionComponent<AddDatabasePaneProps> = ({
|
||||||
explorer: container,
|
explorer: container,
|
||||||
|
closePanel,
|
||||||
|
openNotificationConsole,
|
||||||
}: AddDatabasePaneProps) => {
|
}: AddDatabasePaneProps) => {
|
||||||
const closeSidePanel = useSidePanel((state) => state.closeSidePanel);
|
|
||||||
let throughput: number;
|
let throughput: number;
|
||||||
let isAutoscaleSelected: boolean;
|
let isAutoscaleSelected: boolean;
|
||||||
let isCostAcknowledged: boolean;
|
let isCostAcknowledged: boolean;
|
||||||
@@ -112,7 +114,7 @@ export const AddDatabasePanel: FunctionComponent<AddDatabasePaneProps> = ({
|
|||||||
|
|
||||||
const _onCreateDatabaseSuccess = (offerThroughput: number, startKey: number): void => {
|
const _onCreateDatabaseSuccess = (offerThroughput: number, startKey: number): void => {
|
||||||
setIsExecuting(false);
|
setIsExecuting(false);
|
||||||
closeSidePanel();
|
closePanel();
|
||||||
container.refreshAllDatabases();
|
container.refreshAllDatabases();
|
||||||
const addDatabasePaneSuccessMessage = {
|
const addDatabasePaneSuccessMessage = {
|
||||||
...addDatabasePaneMessage,
|
...addDatabasePaneMessage,
|
||||||
@@ -161,6 +163,7 @@ export const AddDatabasePanel: FunctionComponent<AddDatabasePaneProps> = ({
|
|||||||
);
|
);
|
||||||
|
|
||||||
const props: RightPaneFormProps = {
|
const props: RightPaneFormProps = {
|
||||||
|
expandConsole: openNotificationConsole,
|
||||||
formError: formErrors,
|
formError: formErrors,
|
||||||
isExecuting,
|
isExecuting,
|
||||||
submitButtonText: "OK",
|
submitButtonText: "OK",
|
||||||
@@ -174,6 +177,7 @@ export const AddDatabasePanel: FunctionComponent<AddDatabasePaneProps> = ({
|
|||||||
message={getUpsellMessage(userContext.portalEnv, true, container.isFirstResourceCreated(), true)}
|
message={getUpsellMessage(userContext.portalEnv, true, container.isFirstResourceCreated(), true)}
|
||||||
messageType="info"
|
messageType="info"
|
||||||
showErrorDetails={false}
|
showErrorDetails={false}
|
||||||
|
openNotificationConsole={openNotificationConsole}
|
||||||
link={Constants.Urls.freeTierInformation}
|
link={Constants.Urls.freeTierInformation}
|
||||||
linkText="Learn more"
|
linkText="Learn more"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
exports[`AddDatabasePane Pane should render Default properly 1`] = `
|
exports[`AddDatabasePane Pane should render Default properly 1`] = `
|
||||||
<RightPaneForm
|
<RightPaneForm
|
||||||
|
expandConsole={[Function]}
|
||||||
formError=""
|
formError=""
|
||||||
isExecuting={false}
|
isExecuting={false}
|
||||||
onSubmit={[Function]}
|
onSubmit={[Function]}
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ import { Areas } from "../../../Common/Constants";
|
|||||||
import { logError } from "../../../Common/Logger";
|
import { logError } from "../../../Common/Logger";
|
||||||
import { Query } from "../../../Contracts/DataModels";
|
import { Query } from "../../../Contracts/DataModels";
|
||||||
import { Collection } from "../../../Contracts/ViewModels";
|
import { Collection } from "../../../Contracts/ViewModels";
|
||||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
|
||||||
import { Action, ActionModifiers } from "../../../Shared/Telemetry/TelemetryConstants";
|
import { Action, ActionModifiers } from "../../../Shared/Telemetry/TelemetryConstants";
|
||||||
import { trace } from "../../../Shared/Telemetry/TelemetryProcessor";
|
import { trace } from "../../../Shared/Telemetry/TelemetryProcessor";
|
||||||
import { userContext } from "../../../UserContext";
|
import { userContext } from "../../../UserContext";
|
||||||
@@ -16,12 +15,13 @@ import QueryTab from "../../Tabs/QueryTab";
|
|||||||
|
|
||||||
interface BrowseQueriesPaneProps {
|
interface BrowseQueriesPaneProps {
|
||||||
explorer: Explorer;
|
explorer: Explorer;
|
||||||
|
closePanel: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const BrowseQueriesPane: FunctionComponent<BrowseQueriesPaneProps> = ({
|
export const BrowseQueriesPane: FunctionComponent<BrowseQueriesPaneProps> = ({
|
||||||
explorer,
|
explorer,
|
||||||
|
closePanel,
|
||||||
}: BrowseQueriesPaneProps): JSX.Element => {
|
}: BrowseQueriesPaneProps): JSX.Element => {
|
||||||
const closeSidePanel = useSidePanel((state) => state.closeSidePanel);
|
|
||||||
const loadSavedQuery = (savedQuery: Query): void => {
|
const loadSavedQuery = (savedQuery: Query): void => {
|
||||||
const selectedCollection: Collection = explorer && explorer.findSelectedCollection();
|
const selectedCollection: Collection = explorer && explorer.findSelectedCollection();
|
||||||
if (!selectedCollection) {
|
if (!selectedCollection) {
|
||||||
@@ -43,7 +43,7 @@ export const BrowseQueriesPane: FunctionComponent<BrowseQueriesPaneProps> = ({
|
|||||||
queryName: savedQuery.queryName,
|
queryName: savedQuery.queryName,
|
||||||
paneTitle: "Open Saved Queries",
|
paneTitle: "Open Saved Queries",
|
||||||
});
|
});
|
||||||
closeSidePanel();
|
closePanel();
|
||||||
};
|
};
|
||||||
|
|
||||||
const props: QueriesGridComponentProps = {
|
const props: QueriesGridComponentProps = {
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ import { getErrorMessage, getErrorStack } from "../../../Common/ErrorHandlingUti
|
|||||||
import { InfoTooltip } from "../../../Common/Tooltip/InfoTooltip";
|
import { InfoTooltip } from "../../../Common/Tooltip/InfoTooltip";
|
||||||
import * as DataModels from "../../../Contracts/DataModels";
|
import * as DataModels from "../../../Contracts/DataModels";
|
||||||
import * as ViewModels from "../../../Contracts/ViewModels";
|
import * as ViewModels from "../../../Contracts/ViewModels";
|
||||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
|
||||||
import * as AddCollectionUtility from "../../../Shared/AddCollectionUtility";
|
import * as AddCollectionUtility from "../../../Shared/AddCollectionUtility";
|
||||||
import * as SharedConstants from "../../../Shared/Constants";
|
import * as SharedConstants from "../../../Shared/Constants";
|
||||||
import { Action, ActionModifiers } from "../../../Shared/Telemetry/TelemetryConstants";
|
import { Action, ActionModifiers } from "../../../Shared/Telemetry/TelemetryConstants";
|
||||||
@@ -20,20 +19,21 @@ import { RightPaneForm, RightPaneFormProps } from "../RightPaneForm/RightPaneFor
|
|||||||
|
|
||||||
export interface CassandraAddCollectionPaneProps {
|
export interface CassandraAddCollectionPaneProps {
|
||||||
explorer: Explorer;
|
explorer: Explorer;
|
||||||
|
closePanel: () => void;
|
||||||
cassandraApiClient: CassandraAPIDataClient;
|
cassandraApiClient: CassandraAPIDataClient;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const CassandraAddCollectionPane: FunctionComponent<CassandraAddCollectionPaneProps> = ({
|
export const CassandraAddCollectionPane: FunctionComponent<CassandraAddCollectionPaneProps> = ({
|
||||||
explorer: container,
|
explorer: container,
|
||||||
|
closePanel,
|
||||||
cassandraApiClient,
|
cassandraApiClient,
|
||||||
}: CassandraAddCollectionPaneProps) => {
|
}: CassandraAddCollectionPaneProps) => {
|
||||||
const closeSidePanel = useSidePanel((state) => state.closeSidePanel);
|
const throughputDefaults = container.collectionCreationDefaults.throughput;
|
||||||
const throughputDefaults = userContext.collectionCreationDefaults.throughput;
|
|
||||||
const [createTableQuery, setCreateTableQuery] = useState<string>("CREATE TABLE ");
|
const [createTableQuery, setCreateTableQuery] = useState<string>("CREATE TABLE ");
|
||||||
const [keyspaceId, setKeyspaceId] = useState<string>("");
|
const [keyspaceId, setKeyspaceId] = useState<string>("");
|
||||||
const [tableId, setTableId] = useState<string>("");
|
const [tableId, setTableId] = useState<string>("");
|
||||||
const [throughput, setThroughput] = useState<number>(
|
const [throughput, setThroughput] = useState<number>(
|
||||||
AddCollectionUtility.getMaxThroughput(userContext.collectionCreationDefaults, container)
|
AddCollectionUtility.getMaxThroughput(container.collectionCreationDefaults, container)
|
||||||
);
|
);
|
||||||
|
|
||||||
const [isAutoPilotSelected, setIsAutoPilotSelected] = useState<boolean>(userContext.features.autoscaleDefault);
|
const [isAutoPilotSelected, setIsAutoPilotSelected] = useState<boolean>(userContext.features.autoscaleDefault);
|
||||||
@@ -241,7 +241,7 @@ export const CassandraAddCollectionPane: FunctionComponent<CassandraAddCollectio
|
|||||||
}
|
}
|
||||||
container.refreshAllDatabases();
|
container.refreshAllDatabases();
|
||||||
setIsExecuting(false);
|
setIsExecuting(false);
|
||||||
closeSidePanel();
|
closePanel();
|
||||||
|
|
||||||
TelemetryProcessor.traceSuccess(Action.CreateCollection, addCollectionPaneStartMessage, startKey);
|
TelemetryProcessor.traceSuccess(Action.CreateCollection, addCollectionPaneStartMessage, startKey);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
@@ -261,6 +261,7 @@ export const CassandraAddCollectionPane: FunctionComponent<CassandraAddCollectio
|
|||||||
};
|
};
|
||||||
|
|
||||||
const props: RightPaneFormProps = {
|
const props: RightPaneFormProps = {
|
||||||
|
expandConsole: () => container.expandConsole(),
|
||||||
formError: formErrors,
|
formError: formErrors,
|
||||||
isExecuting,
|
isExecuting,
|
||||||
submitButtonText: "Apply",
|
submitButtonText: "Apply",
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
exports[`CassandraAddCollectionPane Pane should render Default properly 1`] = `
|
exports[`CassandraAddCollectionPane Pane should render Default properly 1`] = `
|
||||||
<RightPaneForm
|
<RightPaneForm
|
||||||
|
expandConsole={[Function]}
|
||||||
formError=""
|
formError=""
|
||||||
onSubmit={[Function]}
|
onSubmit={[Function]}
|
||||||
submitButtonText="Apply"
|
submitButtonText="Apply"
|
||||||
|
|||||||
126
src/Explorer/Panes/ContextualPaneBase.ts
Normal file
126
src/Explorer/Panes/ContextualPaneBase.ts
Normal file
@@ -0,0 +1,126 @@
|
|||||||
|
import * as ko from "knockout";
|
||||||
|
import * as ViewModels from "../../Contracts/ViewModels";
|
||||||
|
import * as Constants from "../../Common/Constants";
|
||||||
|
import { Action, ActionModifiers } from "../../Shared/Telemetry/TelemetryConstants";
|
||||||
|
import { KeyCodes } from "../../Common/Constants";
|
||||||
|
import { WaitsForTemplateViewModel } from "../WaitsForTemplateViewModel";
|
||||||
|
import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor";
|
||||||
|
import Explorer from "../Explorer";
|
||||||
|
|
||||||
|
// TODO: Use specific actions for logging telemetry data
|
||||||
|
export abstract class ContextualPaneBase extends WaitsForTemplateViewModel {
|
||||||
|
private initalFocusedElement: HTMLElement | undefined;
|
||||||
|
public id: string;
|
||||||
|
public container: Explorer;
|
||||||
|
public firstFieldHasFocus: ko.Observable<boolean>;
|
||||||
|
public formErrorsDetails: ko.Observable<string>;
|
||||||
|
public formErrors: ko.Observable<string>;
|
||||||
|
public title: ko.Observable<string>;
|
||||||
|
public visible: ko.Observable<boolean>;
|
||||||
|
public isExecuting: ko.Observable<boolean>;
|
||||||
|
|
||||||
|
constructor(options: ViewModels.PaneOptions) {
|
||||||
|
super();
|
||||||
|
this.id = options.id;
|
||||||
|
this.container = options.container;
|
||||||
|
this.visible = options.visible || ko.observable(false);
|
||||||
|
this.firstFieldHasFocus = ko.observable<boolean>(false);
|
||||||
|
this.formErrors = ko.observable<string>();
|
||||||
|
this.title = ko.observable<string>();
|
||||||
|
this.formErrorsDetails = ko.observable<string>();
|
||||||
|
this.isExecuting = ko.observable<boolean>(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
public cancel() {
|
||||||
|
this.close();
|
||||||
|
this.container.isAccountReady() &&
|
||||||
|
TelemetryProcessor.trace(Action.ContextualPane, ActionModifiers.Close, {
|
||||||
|
dataExplorerArea: Constants.Areas.ContextualPane,
|
||||||
|
paneTitle: this.title(),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public close() {
|
||||||
|
this.visible(false);
|
||||||
|
this.isExecuting(false);
|
||||||
|
this.resetData();
|
||||||
|
this.resetFocus();
|
||||||
|
}
|
||||||
|
|
||||||
|
public open() {
|
||||||
|
this.initalFocusedElement = document.activeElement as HTMLElement;
|
||||||
|
this.visible(true);
|
||||||
|
this.firstFieldHasFocus(true);
|
||||||
|
this.resizePane();
|
||||||
|
this.container.isAccountReady() &&
|
||||||
|
TelemetryProcessor.trace(Action.ContextualPane, ActionModifiers.Open, {
|
||||||
|
dataExplorerArea: Constants.Areas.ContextualPane,
|
||||||
|
paneTitle: this.title(),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public resetData() {
|
||||||
|
this.firstFieldHasFocus(false);
|
||||||
|
this.formErrors(null);
|
||||||
|
this.formErrorsDetails(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
public showErrorDetails() {
|
||||||
|
this.container.expandConsole();
|
||||||
|
}
|
||||||
|
|
||||||
|
public submit() {
|
||||||
|
this.close();
|
||||||
|
event.stopPropagation();
|
||||||
|
this.container.isAccountReady() &&
|
||||||
|
TelemetryProcessor.trace(Action.ContextualPane, ActionModifiers.Submit, {
|
||||||
|
dataExplorerArea: Constants.Areas.ContextualPane,
|
||||||
|
paneTitle: this.title(),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public onCloseKeyPress(source: any, event: KeyboardEvent): boolean {
|
||||||
|
if (event.keyCode === KeyCodes.Enter || event.keyCode === KeyCodes.Space) {
|
||||||
|
this.close();
|
||||||
|
event.stopPropagation();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public onPaneKeyDown(source: any, event: KeyboardEvent): boolean {
|
||||||
|
if (event.keyCode === KeyCodes.Escape) {
|
||||||
|
this.close();
|
||||||
|
event.stopPropagation();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public onSubmitKeyPress(source: any, event: KeyboardEvent): boolean {
|
||||||
|
if (event.keyCode === KeyCodes.Enter || event.keyCode === KeyCodes.Space) {
|
||||||
|
this.submit();
|
||||||
|
event.stopPropagation();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
private resizePane(): void {
|
||||||
|
const paneElement: HTMLElement = document.getElementById(this.id);
|
||||||
|
const notificationConsoleElement: HTMLElement = document.getElementById("explorerNotificationConsole");
|
||||||
|
const newPaneElementHeight = window.innerHeight - $(notificationConsoleElement).height();
|
||||||
|
|
||||||
|
$(paneElement).height(newPaneElementHeight);
|
||||||
|
}
|
||||||
|
|
||||||
|
private resetFocus(): void {
|
||||||
|
if (this.initalFocusedElement) {
|
||||||
|
this.initalFocusedElement.focus();
|
||||||
|
this.initalFocusedElement = undefined;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,7 +3,6 @@ import React, { FormEvent, FunctionComponent, useEffect, useState } from "react"
|
|||||||
import { HttpStatusCodes } from "../../../Common/Constants";
|
import { HttpStatusCodes } from "../../../Common/Constants";
|
||||||
import { getErrorMessage, handleError } from "../../../Common/ErrorHandlingUtils";
|
import { getErrorMessage, handleError } from "../../../Common/ErrorHandlingUtils";
|
||||||
import { GitHubOAuthService } from "../../../GitHub/GitHubOAuthService";
|
import { GitHubOAuthService } from "../../../GitHub/GitHubOAuthService";
|
||||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
|
||||||
import { IPinnedRepo, JunoClient } from "../../../Juno/JunoClient";
|
import { IPinnedRepo, JunoClient } from "../../../Juno/JunoClient";
|
||||||
import * as GitHubUtils from "../../../Utils/GitHubUtils";
|
import * as GitHubUtils from "../../../Utils/GitHubUtils";
|
||||||
import * as NotificationConsoleUtils from "../../../Utils/NotificationConsoleUtils";
|
import * as NotificationConsoleUtils from "../../../Utils/NotificationConsoleUtils";
|
||||||
@@ -27,6 +26,7 @@ export interface CopyNotebookPanelProps {
|
|||||||
container: Explorer;
|
container: Explorer;
|
||||||
junoClient: JunoClient;
|
junoClient: JunoClient;
|
||||||
gitHubOAuthService: GitHubOAuthService;
|
gitHubOAuthService: GitHubOAuthService;
|
||||||
|
closePanel: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const CopyNotebookPane: FunctionComponent<CopyNotebookPanelProps> = ({
|
export const CopyNotebookPane: FunctionComponent<CopyNotebookPanelProps> = ({
|
||||||
@@ -35,8 +35,8 @@ export const CopyNotebookPane: FunctionComponent<CopyNotebookPanelProps> = ({
|
|||||||
container,
|
container,
|
||||||
junoClient,
|
junoClient,
|
||||||
gitHubOAuthService,
|
gitHubOAuthService,
|
||||||
|
closePanel,
|
||||||
}: CopyNotebookPanelProps) => {
|
}: CopyNotebookPanelProps) => {
|
||||||
const closeSidePanel = useSidePanel((state) => state.closeSidePanel);
|
|
||||||
const [isExecuting, setIsExecuting] = useState<boolean>();
|
const [isExecuting, setIsExecuting] = useState<boolean>();
|
||||||
const [formError, setFormError] = useState<string>("");
|
const [formError, setFormError] = useState<string>("");
|
||||||
const [pinnedRepos, setPinnedRepos] = useState<IPinnedRepo[]>();
|
const [pinnedRepos, setPinnedRepos] = useState<IPinnedRepo[]>();
|
||||||
@@ -84,7 +84,7 @@ export const CopyNotebookPane: FunctionComponent<CopyNotebookPanelProps> = ({
|
|||||||
}
|
}
|
||||||
|
|
||||||
NotificationConsoleUtils.logConsoleInfo(`Successfully copied ${name} to ${destination}`);
|
NotificationConsoleUtils.logConsoleInfo(`Successfully copied ${name} to ${destination}`);
|
||||||
closeSidePanel();
|
closePanel();
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
const errorMessage = getErrorMessage(error);
|
const errorMessage = getErrorMessage(error);
|
||||||
setFormError(`Failed to copy ${name} to ${destination}`);
|
setFormError(`Failed to copy ${name} to ${destination}`);
|
||||||
@@ -130,6 +130,7 @@ export const CopyNotebookPane: FunctionComponent<CopyNotebookPanelProps> = ({
|
|||||||
isExecuting: isExecuting,
|
isExecuting: isExecuting,
|
||||||
submitButtonText: "OK",
|
submitButtonText: "OK",
|
||||||
onSubmit: () => submit(),
|
onSubmit: () => submit(),
|
||||||
|
expandConsole: () => container.expandConsole(),
|
||||||
};
|
};
|
||||||
|
|
||||||
const copyNotebookPaneProps: CopyNotebookPaneProps = {
|
const copyNotebookPaneProps: CopyNotebookPaneProps = {
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ import { deleteCollection } from "../../../Common/dataAccess/deleteCollection";
|
|||||||
import DeleteFeedback from "../../../Common/DeleteFeedback";
|
import DeleteFeedback from "../../../Common/DeleteFeedback";
|
||||||
import { getErrorMessage, getErrorStack } from "../../../Common/ErrorHandlingUtils";
|
import { getErrorMessage, getErrorStack } from "../../../Common/ErrorHandlingUtils";
|
||||||
import { Collection } from "../../../Contracts/ViewModels";
|
import { Collection } from "../../../Contracts/ViewModels";
|
||||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
|
||||||
import { DefaultExperienceUtility } from "../../../Shared/DefaultExperienceUtility";
|
import { DefaultExperienceUtility } from "../../../Shared/DefaultExperienceUtility";
|
||||||
import { Action, ActionModifiers } from "../../../Shared/Telemetry/TelemetryConstants";
|
import { Action, ActionModifiers } from "../../../Shared/Telemetry/TelemetryConstants";
|
||||||
import * as TelemetryProcessor from "../../../Shared/Telemetry/TelemetryProcessor";
|
import * as TelemetryProcessor from "../../../Shared/Telemetry/TelemetryProcessor";
|
||||||
@@ -16,12 +15,13 @@ import Explorer from "../../Explorer";
|
|||||||
import { RightPaneForm, RightPaneFormProps } from "../RightPaneForm/RightPaneForm";
|
import { RightPaneForm, RightPaneFormProps } from "../RightPaneForm/RightPaneForm";
|
||||||
export interface DeleteCollectionConfirmationPaneProps {
|
export interface DeleteCollectionConfirmationPaneProps {
|
||||||
explorer: Explorer;
|
explorer: Explorer;
|
||||||
|
closePanel: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const DeleteCollectionConfirmationPane: FunctionComponent<DeleteCollectionConfirmationPaneProps> = ({
|
export const DeleteCollectionConfirmationPane: FunctionComponent<DeleteCollectionConfirmationPaneProps> = ({
|
||||||
explorer,
|
explorer,
|
||||||
|
closePanel,
|
||||||
}: DeleteCollectionConfirmationPaneProps) => {
|
}: DeleteCollectionConfirmationPaneProps) => {
|
||||||
const closeSidePanel = useSidePanel((state) => state.closeSidePanel);
|
|
||||||
const [deleteCollectionFeedback, setDeleteCollectionFeedback] = useState<string>("");
|
const [deleteCollectionFeedback, setDeleteCollectionFeedback] = useState<string>("");
|
||||||
const [inputCollectionName, setInputCollectionName] = useState<string>("");
|
const [inputCollectionName, setInputCollectionName] = useState<string>("");
|
||||||
const [formError, setFormError] = useState<string>("");
|
const [formError, setFormError] = useState<string>("");
|
||||||
@@ -79,7 +79,7 @@ export const DeleteCollectionConfirmationPane: FunctionComponent<DeleteCollectio
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
closeSidePanel();
|
closePanel();
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
const errorMessage = getErrorMessage(error);
|
const errorMessage = getErrorMessage(error);
|
||||||
|
|
||||||
@@ -102,6 +102,7 @@ export const DeleteCollectionConfirmationPane: FunctionComponent<DeleteCollectio
|
|||||||
isExecuting,
|
isExecuting,
|
||||||
submitButtonText: "OK",
|
submitButtonText: "OK",
|
||||||
onSubmit,
|
onSubmit,
|
||||||
|
expandConsole: () => explorer.expandConsole(),
|
||||||
};
|
};
|
||||||
return (
|
return (
|
||||||
<RightPaneForm {...props}>
|
<RightPaneForm {...props}>
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ exports[`Delete Collection Confirmation Pane submit() should call delete collect
|
|||||||
}
|
}
|
||||||
>
|
>
|
||||||
<RightPaneForm
|
<RightPaneForm
|
||||||
|
expandConsole={[Function]}
|
||||||
formError=""
|
formError=""
|
||||||
isExecuting={false}
|
isExecuting={false}
|
||||||
onSubmit={[Function]}
|
onSubmit={[Function]}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ import { deleteDatabase } from "../../Common/dataAccess/deleteDatabase";
|
|||||||
import DeleteFeedback from "../../Common/DeleteFeedback";
|
import DeleteFeedback from "../../Common/DeleteFeedback";
|
||||||
import { getErrorMessage, getErrorStack } from "../../Common/ErrorHandlingUtils";
|
import { getErrorMessage, getErrorStack } from "../../Common/ErrorHandlingUtils";
|
||||||
import { Collection, Database } from "../../Contracts/ViewModels";
|
import { Collection, Database } from "../../Contracts/ViewModels";
|
||||||
import { useSidePanel } from "../../hooks/useSidePanel";
|
|
||||||
import { DefaultExperienceUtility } from "../../Shared/DefaultExperienceUtility";
|
import { DefaultExperienceUtility } from "../../Shared/DefaultExperienceUtility";
|
||||||
import { Action, ActionModifiers } from "../../Shared/Telemetry/TelemetryConstants";
|
import { Action, ActionModifiers } from "../../Shared/Telemetry/TelemetryConstants";
|
||||||
import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor";
|
import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor";
|
||||||
@@ -18,14 +17,17 @@ import { RightPaneForm, RightPaneFormProps } from "./RightPaneForm/RightPaneForm
|
|||||||
|
|
||||||
interface DeleteDatabaseConfirmationPanelProps {
|
interface DeleteDatabaseConfirmationPanelProps {
|
||||||
explorer: Explorer;
|
explorer: Explorer;
|
||||||
|
closePanel: () => void;
|
||||||
|
openNotificationConsole: () => void;
|
||||||
selectedDatabase: Database;
|
selectedDatabase: Database;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const DeleteDatabaseConfirmationPanel: FunctionComponent<DeleteDatabaseConfirmationPanelProps> = ({
|
export const DeleteDatabaseConfirmationPanel: FunctionComponent<DeleteDatabaseConfirmationPanelProps> = ({
|
||||||
explorer,
|
explorer,
|
||||||
|
openNotificationConsole,
|
||||||
|
closePanel,
|
||||||
selectedDatabase,
|
selectedDatabase,
|
||||||
}: DeleteDatabaseConfirmationPanelProps): JSX.Element => {
|
}: DeleteDatabaseConfirmationPanelProps): JSX.Element => {
|
||||||
const closeSidePanel = useSidePanel((state) => state.closeSidePanel);
|
|
||||||
const [isLoading, { setTrue: setLoadingTrue, setFalse: setLoadingFalse }] = useBoolean(false);
|
const [isLoading, { setTrue: setLoadingTrue, setFalse: setLoadingFalse }] = useBoolean(false);
|
||||||
|
|
||||||
const [formError, setFormError] = useState<string>("");
|
const [formError, setFormError] = useState<string>("");
|
||||||
@@ -49,7 +51,7 @@ export const DeleteDatabaseConfirmationPanel: FunctionComponent<DeleteDatabaseCo
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
await deleteDatabase(selectedDatabase.id());
|
await deleteDatabase(selectedDatabase.id());
|
||||||
closeSidePanel();
|
closePanel();
|
||||||
explorer.refreshAllDatabases();
|
explorer.refreshAllDatabases();
|
||||||
explorer.tabsManager.closeTabsByComparator((tab) => tab.node?.id() === selectedDatabase.id());
|
explorer.tabsManager.closeTabsByComparator((tab) => tab.node?.id() === selectedDatabase.id());
|
||||||
explorer.selectedNode(undefined);
|
explorer.selectedNode(undefined);
|
||||||
@@ -109,6 +111,7 @@ export const DeleteDatabaseConfirmationPanel: FunctionComponent<DeleteDatabaseCo
|
|||||||
isExecuting: isLoading,
|
isExecuting: isLoading,
|
||||||
submitButtonText: "OK",
|
submitButtonText: "OK",
|
||||||
onSubmit: () => submit(),
|
onSubmit: () => submit(),
|
||||||
|
expandConsole: openNotificationConsole,
|
||||||
};
|
};
|
||||||
|
|
||||||
const errorProps: PanelInfoErrorProps = {
|
const errorProps: PanelInfoErrorProps = {
|
||||||
|
|||||||
@@ -2,14 +2,15 @@ import { IDropdownOption, IImageProps, Image, Stack, Text } from "@fluentui/reac
|
|||||||
import { useBoolean } from "@fluentui/react-hooks";
|
import { useBoolean } from "@fluentui/react-hooks";
|
||||||
import React, { FunctionComponent, useState } from "react";
|
import React, { FunctionComponent, useState } from "react";
|
||||||
import AddPropertyIcon from "../../../../images/Add-property.svg";
|
import AddPropertyIcon from "../../../../images/Add-property.svg";
|
||||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
|
||||||
import { logConsoleError } from "../../../Utils/NotificationConsoleUtils";
|
import { logConsoleError } from "../../../Utils/NotificationConsoleUtils";
|
||||||
import StoredProcedure from "../../Tree/StoredProcedure";
|
import StoredProcedure from "../../Tree/StoredProcedure";
|
||||||
import { RightPaneForm, RightPaneFormProps } from "../RightPaneForm/RightPaneForm";
|
import { RightPaneForm, RightPaneFormProps } from "../RightPaneForm/RightPaneForm";
|
||||||
import { InputParameter } from "./InputParameter";
|
import { InputParameter } from "./InputParameter";
|
||||||
|
|
||||||
interface ExecuteSprocParamsPaneProps {
|
interface ExecuteSprocParamsPaneProps {
|
||||||
|
expandConsole: () => void;
|
||||||
storedProcedure: StoredProcedure;
|
storedProcedure: StoredProcedure;
|
||||||
|
closePanel: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
const imageProps: IImageProps = {
|
const imageProps: IImageProps = {
|
||||||
@@ -23,9 +24,10 @@ interface UnwrappedExecuteSprocParam {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const ExecuteSprocParamsPane: FunctionComponent<ExecuteSprocParamsPaneProps> = ({
|
export const ExecuteSprocParamsPane: FunctionComponent<ExecuteSprocParamsPaneProps> = ({
|
||||||
|
expandConsole,
|
||||||
storedProcedure,
|
storedProcedure,
|
||||||
|
closePanel,
|
||||||
}: ExecuteSprocParamsPaneProps): JSX.Element => {
|
}: ExecuteSprocParamsPaneProps): JSX.Element => {
|
||||||
const closeSidePanel = useSidePanel((state) => state.closeSidePanel);
|
|
||||||
const [isLoading, { setTrue: setLoadingTrue, setFalse: setLoadingFalse }] = useBoolean(false);
|
const [isLoading, { setTrue: setLoadingTrue, setFalse: setLoadingFalse }] = useBoolean(false);
|
||||||
const [paramKeyValues, setParamKeyValues] = useState<UnwrappedExecuteSprocParam[]>([{ key: "string", text: "" }]);
|
const [paramKeyValues, setParamKeyValues] = useState<UnwrappedExecuteSprocParam[]>([{ key: "string", text: "" }]);
|
||||||
const [partitionValue, setPartitionValue] = useState<string>(); // Defaulting to undefined here is important. It is not the same partition key as ""
|
const [partitionValue, setPartitionValue] = useState<string>(); // Defaulting to undefined here is important. It is not the same partition key as ""
|
||||||
@@ -74,7 +76,7 @@ export const ExecuteSprocParamsPane: FunctionComponent<ExecuteSprocParamsPanePro
|
|||||||
});
|
});
|
||||||
storedProcedure.execute(sprocParams, partitionKey === "custom" ? JSON.parse(partitionValue) : partitionValue);
|
storedProcedure.execute(sprocParams, partitionKey === "custom" ? JSON.parse(partitionValue) : partitionValue);
|
||||||
setLoadingFalse();
|
setLoadingFalse();
|
||||||
closeSidePanel();
|
closePanel();
|
||||||
};
|
};
|
||||||
|
|
||||||
const deleteParamAtIndex = (indexToRemove: number): void => {
|
const deleteParamAtIndex = (indexToRemove: number): void => {
|
||||||
@@ -112,6 +114,7 @@ export const ExecuteSprocParamsPane: FunctionComponent<ExecuteSprocParamsPanePro
|
|||||||
};
|
};
|
||||||
|
|
||||||
const props: RightPaneFormProps = {
|
const props: RightPaneFormProps = {
|
||||||
|
expandConsole,
|
||||||
formError: formError,
|
formError: formError,
|
||||||
isExecuting: isLoading,
|
isExecuting: isLoading,
|
||||||
submitButtonText: "Execute",
|
submitButtonText: "Execute",
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ exports[`Excute Sproc Param Pane should render Default properly 1`] = `
|
|||||||
storedProcedure={Object {}}
|
storedProcedure={Object {}}
|
||||||
>
|
>
|
||||||
<RightPaneForm
|
<RightPaneForm
|
||||||
|
expandConsole={[Function]}
|
||||||
formError=""
|
formError=""
|
||||||
isExecuting={false}
|
isExecuting={false}
|
||||||
onSubmit={[Function]}
|
onSubmit={[Function]}
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ import React from "react";
|
|||||||
import { Areas, HttpStatusCodes } from "../../../Common/Constants";
|
import { Areas, HttpStatusCodes } from "../../../Common/Constants";
|
||||||
import { handleError } from "../../../Common/ErrorHandlingUtils";
|
import { handleError } from "../../../Common/ErrorHandlingUtils";
|
||||||
import { GitHubClient, IGitHubPageInfo, IGitHubRepo } from "../../../GitHub/GitHubClient";
|
import { GitHubClient, IGitHubPageInfo, IGitHubRepo } from "../../../GitHub/GitHubClient";
|
||||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
|
||||||
import { IPinnedRepo, JunoClient } from "../../../Juno/JunoClient";
|
import { IPinnedRepo, JunoClient } from "../../../Juno/JunoClient";
|
||||||
import { Action, ActionModifiers } from "../../../Shared/Telemetry/TelemetryConstants";
|
import { Action, ActionModifiers } from "../../../Shared/Telemetry/TelemetryConstants";
|
||||||
import * as TelemetryProcessor from "../../../Shared/Telemetry/TelemetryProcessor";
|
import * as TelemetryProcessor from "../../../Shared/Telemetry/TelemetryProcessor";
|
||||||
@@ -22,8 +21,10 @@ import { PanelLoadingScreen } from "../PanelLoadingScreen";
|
|||||||
|
|
||||||
interface IGitHubReposPanelProps {
|
interface IGitHubReposPanelProps {
|
||||||
explorer: Explorer;
|
explorer: Explorer;
|
||||||
|
closePanel: () => void;
|
||||||
gitHubClientProp: GitHubClient;
|
gitHubClientProp: GitHubClient;
|
||||||
junoClientProp: JunoClient;
|
junoClientProp: JunoClient;
|
||||||
|
openNotificationConsole: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface IGitHubReposPanelState {
|
interface IGitHubReposPanelState {
|
||||||
@@ -90,7 +91,7 @@ export class GitHubReposPanel extends React.Component<IGitHubReposPanelProps, IG
|
|||||||
},
|
},
|
||||||
resetConnection: (): void => this.setup(true),
|
resetConnection: (): void => this.setup(true),
|
||||||
onOkClick: (): Promise<void> => this.submit(),
|
onOkClick: (): Promise<void> => this.submit(),
|
||||||
onCancelClick: (): void => useSidePanel.getState().closeSidePanel(),
|
onCancelClick: (): void => this.props.closePanel(),
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
this.gitHubClient = this.props.gitHubClientProp;
|
this.gitHubClient = this.props.gitHubClientProp;
|
||||||
@@ -438,6 +439,7 @@ export class GitHubReposPanel extends React.Component<IGitHubReposPanelProps, IG
|
|||||||
message={this.state.errorMessage}
|
message={this.state.errorMessage}
|
||||||
messageType="error"
|
messageType="error"
|
||||||
showErrorDetails={this.state.showErrorDetails}
|
showErrorDetails={this.state.showErrorDetails}
|
||||||
|
openNotificationConsole={this.props.openNotificationConsole}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
<div className="panelMainContent" style={ContentMainStyle}>
|
<div className="panelMainContent" style={ContentMainStyle}>
|
||||||
|
|||||||
@@ -17,32 +17,837 @@ exports[`GitHub Repos Panel should render Default properly 1`] = `
|
|||||||
addRepoProps={
|
addRepoProps={
|
||||||
Object {
|
Object {
|
||||||
"container": Explorer {
|
"container": Explorer {
|
||||||
|
"_isAfecFeatureRegistered": [Function],
|
||||||
"_isInitializingNotebooks": false,
|
"_isInitializingNotebooks": false,
|
||||||
|
"_refreshSparkEnabledStateForAccount": [Function],
|
||||||
"_resetNotebookWorkspace": [Function],
|
"_resetNotebookWorkspace": [Function],
|
||||||
|
"addCollectionText": [Function],
|
||||||
|
"arcadiaToken": [Function],
|
||||||
|
"canExceedMaximumValue": [Function],
|
||||||
"canSaveQueries": [Function],
|
"canSaveQueries": [Function],
|
||||||
|
"closeSidePanel": undefined,
|
||||||
"collapsedResourceTreeWidth": 36,
|
"collapsedResourceTreeWidth": 36,
|
||||||
|
"collectionCreationDefaults": Object {
|
||||||
|
"storage": "100",
|
||||||
|
"throughput": Object {
|
||||||
|
"fixed": 400,
|
||||||
|
"shared": 400,
|
||||||
|
"unlimited": 400,
|
||||||
|
"unlimitedmax": 1000000,
|
||||||
|
"unlimitedmin": 400,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"collectionTitle": [Function],
|
||||||
|
"collectionTreeNodeAltText": [Function],
|
||||||
|
"commandBarComponentAdapter": CommandBarComponentAdapter {
|
||||||
|
"container": [Circular],
|
||||||
|
"isNotebookTabActive": [Function],
|
||||||
|
"parameters": [Function],
|
||||||
|
"tabsButtons": Array [],
|
||||||
|
},
|
||||||
"databases": [Function],
|
"databases": [Function],
|
||||||
|
"deleteCollectionText": [Function],
|
||||||
|
"deleteDatabaseText": [Function],
|
||||||
|
"gitHubClient": GitHubClient {
|
||||||
|
"errorCallback": [Function],
|
||||||
|
"ocktokit": OctokitWithDefaults {
|
||||||
|
"actions": Object {
|
||||||
|
"addSelectedRepoToOrgSecret": [Function],
|
||||||
|
"cancelWorkflowRun": [Function],
|
||||||
|
"createOrUpdateOrgSecret": [Function],
|
||||||
|
"createOrUpdateRepoSecret": [Function],
|
||||||
|
"createOrUpdateSecretForRepo": [Function],
|
||||||
|
"createRegistrationToken": [Function],
|
||||||
|
"createRegistrationTokenForOrg": [Function],
|
||||||
|
"createRegistrationTokenForRepo": [Function],
|
||||||
|
"createRemoveToken": [Function],
|
||||||
|
"createRemoveTokenForOrg": [Function],
|
||||||
|
"createRemoveTokenForRepo": [Function],
|
||||||
|
"deleteArtifact": [Function],
|
||||||
|
"deleteOrgSecret": [Function],
|
||||||
|
"deleteRepoSecret": [Function],
|
||||||
|
"deleteSecretFromRepo": [Function],
|
||||||
|
"deleteSelfHostedRunnerFromOrg": [Function],
|
||||||
|
"deleteSelfHostedRunnerFromRepo": [Function],
|
||||||
|
"deleteWorkflowRunLogs": [Function],
|
||||||
|
"downloadArtifact": [Function],
|
||||||
|
"downloadJobLogsForWorkflowRun": [Function],
|
||||||
|
"downloadWorkflowJobLogs": [Function],
|
||||||
|
"downloadWorkflowRunLogs": [Function],
|
||||||
|
"getArtifact": [Function],
|
||||||
|
"getJobForWorkflowRun": [Function],
|
||||||
|
"getOrgPublicKey": [Function],
|
||||||
|
"getOrgSecret": [Function],
|
||||||
|
"getPublicKey": [Function],
|
||||||
|
"getRepoPublicKey": [Function],
|
||||||
|
"getRepoSecret": [Function],
|
||||||
|
"getSecret": [Function],
|
||||||
|
"getSelfHostedRunner": [Function],
|
||||||
|
"getSelfHostedRunnerForOrg": [Function],
|
||||||
|
"getSelfHostedRunnerForRepo": [Function],
|
||||||
|
"getWorkflow": [Function],
|
||||||
|
"getWorkflowJob": [Function],
|
||||||
|
"getWorkflowRun": [Function],
|
||||||
|
"getWorkflowRunUsage": [Function],
|
||||||
|
"getWorkflowUsage": [Function],
|
||||||
|
"listArtifactsForRepo": [Function],
|
||||||
|
"listDownloadsForSelfHostedRunnerApplication": [Function],
|
||||||
|
"listJobsForWorkflowRun": [Function],
|
||||||
|
"listOrgSecrets": [Function],
|
||||||
|
"listRepoSecrets": [Function],
|
||||||
|
"listRepoWorkflowRuns": [Function],
|
||||||
|
"listRepoWorkflows": [Function],
|
||||||
|
"listRunnerApplicationsForOrg": [Function],
|
||||||
|
"listRunnerApplicationsForRepo": [Function],
|
||||||
|
"listSecretsForRepo": [Function],
|
||||||
|
"listSelectedReposForOrgSecret": [Function],
|
||||||
|
"listSelfHostedRunnersForOrg": [Function],
|
||||||
|
"listSelfHostedRunnersForRepo": [Function],
|
||||||
|
"listWorkflowJobLogs": [Function],
|
||||||
|
"listWorkflowRunArtifacts": [Function],
|
||||||
|
"listWorkflowRunLogs": [Function],
|
||||||
|
"listWorkflowRuns": [Function],
|
||||||
|
"listWorkflowRunsForRepo": [Function],
|
||||||
|
"reRunWorkflow": [Function],
|
||||||
|
"removeSelectedRepoFromOrgSecret": [Function],
|
||||||
|
"removeSelfHostedRunner": [Function],
|
||||||
|
"setSelectedReposForOrgSecret": [Function],
|
||||||
|
},
|
||||||
|
"activity": Object {
|
||||||
|
"checkRepoIsStarredByAuthenticatedUser": [Function],
|
||||||
|
"checkStarringRepo": [Function],
|
||||||
|
"deleteRepoSubscription": [Function],
|
||||||
|
"deleteThreadSubscription": [Function],
|
||||||
|
"getFeeds": [Function],
|
||||||
|
"getRepoSubscription": [Function],
|
||||||
|
"getThread": [Function],
|
||||||
|
"getThreadSubscription": [Function],
|
||||||
|
"getThreadSubscriptionForAuthenticatedUser": [Function],
|
||||||
|
"listEventsForAuthenticatedUser": [Function],
|
||||||
|
"listEventsForOrg": [Function],
|
||||||
|
"listEventsForUser": [Function],
|
||||||
|
"listFeeds": [Function],
|
||||||
|
"listNotifications": [Function],
|
||||||
|
"listNotificationsForAuthenticatedUser": [Function],
|
||||||
|
"listNotificationsForRepo": [Function],
|
||||||
|
"listOrgEventsForAuthenticatedUser": [Function],
|
||||||
|
"listPublicEvents": [Function],
|
||||||
|
"listPublicEventsForOrg": [Function],
|
||||||
|
"listPublicEventsForRepoNetwork": [Function],
|
||||||
|
"listPublicEventsForUser": [Function],
|
||||||
|
"listPublicOrgEvents": [Function],
|
||||||
|
"listReceivedEventsForUser": [Function],
|
||||||
|
"listReceivedPublicEventsForUser": [Function],
|
||||||
|
"listRepoEvents": [Function],
|
||||||
|
"listRepoNotificationsForAuthenticatedUser": [Function],
|
||||||
|
"listReposStarredByAuthenticatedUser": [Function],
|
||||||
|
"listReposStarredByUser": [Function],
|
||||||
|
"listReposWatchedByUser": [Function],
|
||||||
|
"listStargazersForRepo": [Function],
|
||||||
|
"listWatchedReposForAuthenticatedUser": [Function],
|
||||||
|
"listWatchersForRepo": [Function],
|
||||||
|
"markAsRead": [Function],
|
||||||
|
"markNotificationsAsRead": [Function],
|
||||||
|
"markNotificationsAsReadForRepo": [Function],
|
||||||
|
"markRepoNotificationsAsRead": [Function],
|
||||||
|
"markThreadAsRead": [Function],
|
||||||
|
"setRepoSubscription": [Function],
|
||||||
|
"setThreadSubscription": [Function],
|
||||||
|
"starRepo": [Function],
|
||||||
|
"starRepoForAuthenticatedUser": [Function],
|
||||||
|
"unstarRepo": [Function],
|
||||||
|
"unstarRepoForAuthenticatedUser": [Function],
|
||||||
|
},
|
||||||
|
"apps": Object {
|
||||||
|
"addRepoToInstallation": [Function],
|
||||||
|
"checkAccountIsAssociatedWithAny": [Function],
|
||||||
|
"checkAccountIsAssociatedWithAnyStubbed": [Function],
|
||||||
|
"checkToken": [Function],
|
||||||
|
"createContentAttachment": [Function],
|
||||||
|
"createFromManifest": [Function],
|
||||||
|
"createInstallationAccessToken": [Function],
|
||||||
|
"createInstallationToken": [Function],
|
||||||
|
"deleteAuthorization": [Function],
|
||||||
|
"deleteInstallation": [Function],
|
||||||
|
"deleteToken": [Function],
|
||||||
|
"getAuthenticated": [Function],
|
||||||
|
"getBySlug": [Function],
|
||||||
|
"getInstallation": [Function],
|
||||||
|
"getOrgInstallation": [Function],
|
||||||
|
"getRepoInstallation": [Function],
|
||||||
|
"getSubscriptionPlanForAccount": [Function],
|
||||||
|
"getSubscriptionPlanForAccountStubbed": [Function],
|
||||||
|
"getUserInstallation": [Function],
|
||||||
|
"listAccountsForPlan": [Function],
|
||||||
|
"listAccountsForPlanStubbed": [Function],
|
||||||
|
"listAccountsUserOrOrgOnPlan": [Function],
|
||||||
|
"listAccountsUserOrOrgOnPlanStubbed": [Function],
|
||||||
|
"listInstallationReposForAuthenticatedUser": [Function],
|
||||||
|
"listInstallations": [Function],
|
||||||
|
"listInstallationsForAuthenticatedUser": [Function],
|
||||||
|
"listMarketplacePurchasesForAuthenticatedUser": [Function],
|
||||||
|
"listMarketplacePurchasesForAuthenticatedUserStubbed": [Function],
|
||||||
|
"listPlans": [Function],
|
||||||
|
"listPlansStubbed": [Function],
|
||||||
|
"listRepos": [Function],
|
||||||
|
"listReposAccessibleToInstallation": [Function],
|
||||||
|
"listSubscriptionsForAuthenticatedUser": [Function],
|
||||||
|
"listSubscriptionsForAuthenticatedUserStubbed": [Function],
|
||||||
|
"removeRepoFromInstallation": [Function],
|
||||||
|
"resetToken": [Function],
|
||||||
|
"revokeInstallationAccessToken": [Function],
|
||||||
|
"revokeInstallationToken": [Function],
|
||||||
|
"suspendInstallation": [Function],
|
||||||
|
"unsuspendInstallation": [Function],
|
||||||
|
},
|
||||||
|
"auth": [Function],
|
||||||
|
"checks": Object {
|
||||||
|
"create": [Function],
|
||||||
|
"createSuite": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getSuite": [Function],
|
||||||
|
"listAnnotations": [Function],
|
||||||
|
"listForRef": [Function],
|
||||||
|
"listForSuite": [Function],
|
||||||
|
"listSuitesForRef": [Function],
|
||||||
|
"rerequestSuite": [Function],
|
||||||
|
"setSuitesPreferences": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
},
|
||||||
|
"codeScanning": Object {
|
||||||
|
"getAlert": [Function],
|
||||||
|
"listAlertsForRepo": [Function],
|
||||||
|
},
|
||||||
|
"codesOfConduct": Object {
|
||||||
|
"getAllCodesOfConduct": [Function],
|
||||||
|
"getConductCode": [Function],
|
||||||
|
"getForRepo": [Function],
|
||||||
|
"listConductCodes": [Function],
|
||||||
|
},
|
||||||
|
"emojis": Object {
|
||||||
|
"get": [Function],
|
||||||
|
},
|
||||||
|
"gists": Object {
|
||||||
|
"checkIsStarred": [Function],
|
||||||
|
"create": [Function],
|
||||||
|
"createComment": [Function],
|
||||||
|
"delete": [Function],
|
||||||
|
"deleteComment": [Function],
|
||||||
|
"fork": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getComment": [Function],
|
||||||
|
"getRevision": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listComments": [Function],
|
||||||
|
"listCommits": [Function],
|
||||||
|
"listForUser": [Function],
|
||||||
|
"listForks": [Function],
|
||||||
|
"listPublic": [Function],
|
||||||
|
"listPublicForUser": [Function],
|
||||||
|
"listStarred": [Function],
|
||||||
|
"star": [Function],
|
||||||
|
"unstar": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
"updateComment": [Function],
|
||||||
|
},
|
||||||
|
"git": Object {
|
||||||
|
"createBlob": [Function],
|
||||||
|
"createCommit": [Function],
|
||||||
|
"createRef": [Function],
|
||||||
|
"createTag": [Function],
|
||||||
|
"createTree": [Function],
|
||||||
|
"deleteRef": [Function],
|
||||||
|
"getBlob": [Function],
|
||||||
|
"getCommit": [Function],
|
||||||
|
"getRef": [Function],
|
||||||
|
"getTag": [Function],
|
||||||
|
"getTree": [Function],
|
||||||
|
"listMatchingRefs": [Function],
|
||||||
|
"updateRef": [Function],
|
||||||
|
},
|
||||||
|
"gitignore": Object {
|
||||||
|
"getAllTemplates": [Function],
|
||||||
|
"getTemplate": [Function],
|
||||||
|
"listTemplates": [Function],
|
||||||
|
},
|
||||||
|
"graphql": [Function],
|
||||||
|
"hook": [Function],
|
||||||
|
"interactions": Object {
|
||||||
|
"addOrUpdateRestrictionsForOrg": [Function],
|
||||||
|
"addOrUpdateRestrictionsForRepo": [Function],
|
||||||
|
"getRestrictionsForOrg": [Function],
|
||||||
|
"getRestrictionsForRepo": [Function],
|
||||||
|
"removeRestrictionsForOrg": [Function],
|
||||||
|
"removeRestrictionsForRepo": [Function],
|
||||||
|
"setRestrictionsForOrg": [Function],
|
||||||
|
"setRestrictionsForRepo": [Function],
|
||||||
|
},
|
||||||
|
"issues": Object {
|
||||||
|
"addAssignees": [Function],
|
||||||
|
"addLabels": [Function],
|
||||||
|
"checkAssignee": [Function],
|
||||||
|
"checkUserCanBeAssigned": [Function],
|
||||||
|
"create": [Function],
|
||||||
|
"createComment": [Function],
|
||||||
|
"createLabel": [Function],
|
||||||
|
"createMilestone": [Function],
|
||||||
|
"deleteComment": [Function],
|
||||||
|
"deleteLabel": [Function],
|
||||||
|
"deleteMilestone": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getComment": [Function],
|
||||||
|
"getEvent": [Function],
|
||||||
|
"getLabel": [Function],
|
||||||
|
"getMilestone": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listAssignees": [Function],
|
||||||
|
"listComments": [Function],
|
||||||
|
"listCommentsForRepo": [Function],
|
||||||
|
"listEvents": [Function],
|
||||||
|
"listEventsForRepo": [Function],
|
||||||
|
"listEventsForTimeline": [Function],
|
||||||
|
"listForAuthenticatedUser": [Function],
|
||||||
|
"listForOrg": [Function],
|
||||||
|
"listForRepo": [Function],
|
||||||
|
"listLabelsForMilestone": [Function],
|
||||||
|
"listLabelsForRepo": [Function],
|
||||||
|
"listLabelsOnIssue": [Function],
|
||||||
|
"listMilestones": [Function],
|
||||||
|
"listMilestonesForRepo": [Function],
|
||||||
|
"lock": [Function],
|
||||||
|
"removeAllLabels": [Function],
|
||||||
|
"removeAssignees": [Function],
|
||||||
|
"removeLabel": [Function],
|
||||||
|
"removeLabels": [Function],
|
||||||
|
"replaceAllLabels": [Function],
|
||||||
|
"replaceLabels": [Function],
|
||||||
|
"setLabels": [Function],
|
||||||
|
"unlock": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
"updateComment": [Function],
|
||||||
|
"updateLabel": [Function],
|
||||||
|
"updateMilestone": [Function],
|
||||||
|
},
|
||||||
|
"licenses": Object {
|
||||||
|
"get": [Function],
|
||||||
|
"getAllCommonlyUsed": [Function],
|
||||||
|
"getForRepo": [Function],
|
||||||
|
"listCommonlyUsed": [Function],
|
||||||
|
},
|
||||||
|
"log": Object {
|
||||||
|
"debug": [Function],
|
||||||
|
"error": [Function],
|
||||||
|
"info": [Function],
|
||||||
|
"warn": [Function],
|
||||||
|
},
|
||||||
|
"markdown": Object {
|
||||||
|
"render": [Function],
|
||||||
|
"renderRaw": [Function],
|
||||||
|
},
|
||||||
|
"meta": Object {
|
||||||
|
"get": [Function],
|
||||||
|
},
|
||||||
|
"migrations": Object {
|
||||||
|
"cancelImport": [Function],
|
||||||
|
"deleteArchiveForAuthenticatedUser": [Function],
|
||||||
|
"deleteArchiveForOrg": [Function],
|
||||||
|
"downloadArchiveForOrg": [Function],
|
||||||
|
"getArchiveForAuthenticatedUser": [Function],
|
||||||
|
"getCommitAuthors": [Function],
|
||||||
|
"getImportProgress": [Function],
|
||||||
|
"getImportStatus": [Function],
|
||||||
|
"getLargeFiles": [Function],
|
||||||
|
"getStatusForAuthenticatedUser": [Function],
|
||||||
|
"getStatusForOrg": [Function],
|
||||||
|
"listForAuthenticatedUser": [Function],
|
||||||
|
"listForOrg": [Function],
|
||||||
|
"listReposForOrg": [Function],
|
||||||
|
"listReposForUser": [Function],
|
||||||
|
"mapCommitAuthor": [Function],
|
||||||
|
"setLfsPreference": [Function],
|
||||||
|
"startForAuthenticatedUser": [Function],
|
||||||
|
"startForOrg": [Function],
|
||||||
|
"startImport": [Function],
|
||||||
|
"unlockRepoForAuthenticatedUser": [Function],
|
||||||
|
"unlockRepoForOrg": [Function],
|
||||||
|
"updateImport": [Function],
|
||||||
|
},
|
||||||
|
"orgs": Object {
|
||||||
|
"addOrUpdateMembership": [Function],
|
||||||
|
"blockUser": [Function],
|
||||||
|
"checkBlockedUser": [Function],
|
||||||
|
"checkMembership": [Function],
|
||||||
|
"checkMembershipForUser": [Function],
|
||||||
|
"checkPublicMembership": [Function],
|
||||||
|
"checkPublicMembershipForUser": [Function],
|
||||||
|
"concealMembership": [Function],
|
||||||
|
"convertMemberToOutsideCollaborator": [Function],
|
||||||
|
"createHook": [Function],
|
||||||
|
"createInvitation": [Function],
|
||||||
|
"createWebhook": [Function],
|
||||||
|
"deleteHook": [Function],
|
||||||
|
"deleteWebhook": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getHook": [Function],
|
||||||
|
"getMembership": [Function],
|
||||||
|
"getMembershipForAuthenticatedUser": [Function],
|
||||||
|
"getMembershipForUser": [Function],
|
||||||
|
"getWebhook": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listAppInstallations": [Function],
|
||||||
|
"listBlockedUsers": [Function],
|
||||||
|
"listForAuthenticatedUser": [Function],
|
||||||
|
"listForUser": [Function],
|
||||||
|
"listHooks": [Function],
|
||||||
|
"listInstallations": [Function],
|
||||||
|
"listInvitationTeams": [Function],
|
||||||
|
"listMembers": [Function],
|
||||||
|
"listMemberships": [Function],
|
||||||
|
"listMembershipsForAuthenticatedUser": [Function],
|
||||||
|
"listOutsideCollaborators": [Function],
|
||||||
|
"listPendingInvitations": [Function],
|
||||||
|
"listPublicMembers": [Function],
|
||||||
|
"listWebhooks": [Function],
|
||||||
|
"pingHook": [Function],
|
||||||
|
"pingWebhook": [Function],
|
||||||
|
"publicizeMembership": [Function],
|
||||||
|
"removeMember": [Function],
|
||||||
|
"removeMembership": [Function],
|
||||||
|
"removeMembershipForUser": [Function],
|
||||||
|
"removeOutsideCollaborator": [Function],
|
||||||
|
"removePublicMembershipForAuthenticatedUser": [Function],
|
||||||
|
"setMembershipForUser": [Function],
|
||||||
|
"setPublicMembershipForAuthenticatedUser": [Function],
|
||||||
|
"unblockUser": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
"updateHook": [Function],
|
||||||
|
"updateMembership": [Function],
|
||||||
|
"updateMembershipForAuthenticatedUser": [Function],
|
||||||
|
"updateWebhook": [Function],
|
||||||
|
},
|
||||||
|
"paginate": [Function],
|
||||||
|
"projects": Object {
|
||||||
|
"addCollaborator": [Function],
|
||||||
|
"createCard": [Function],
|
||||||
|
"createColumn": [Function],
|
||||||
|
"createForAuthenticatedUser": [Function],
|
||||||
|
"createForOrg": [Function],
|
||||||
|
"createForRepo": [Function],
|
||||||
|
"delete": [Function],
|
||||||
|
"deleteCard": [Function],
|
||||||
|
"deleteColumn": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getCard": [Function],
|
||||||
|
"getColumn": [Function],
|
||||||
|
"getPermissionForUser": [Function],
|
||||||
|
"listCards": [Function],
|
||||||
|
"listCollaborators": [Function],
|
||||||
|
"listColumns": [Function],
|
||||||
|
"listForOrg": [Function],
|
||||||
|
"listForRepo": [Function],
|
||||||
|
"listForUser": [Function],
|
||||||
|
"moveCard": [Function],
|
||||||
|
"moveColumn": [Function],
|
||||||
|
"removeCollaborator": [Function],
|
||||||
|
"reviewUserPermissionLevel": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
"updateCard": [Function],
|
||||||
|
"updateColumn": [Function],
|
||||||
|
},
|
||||||
|
"pulls": Object {
|
||||||
|
"checkIfMerged": [Function],
|
||||||
|
"create": [Function],
|
||||||
|
"createComment": [Function],
|
||||||
|
"createReplyForReviewComment": [Function],
|
||||||
|
"createReview": [Function],
|
||||||
|
"createReviewComment": [Function],
|
||||||
|
"createReviewCommentReply": [Function],
|
||||||
|
"createReviewRequest": [Function],
|
||||||
|
"deleteComment": [Function],
|
||||||
|
"deletePendingReview": [Function],
|
||||||
|
"deleteReviewComment": [Function],
|
||||||
|
"deleteReviewRequest": [Function],
|
||||||
|
"dismissReview": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getComment": [Function],
|
||||||
|
"getCommentsForReview": [Function],
|
||||||
|
"getReview": [Function],
|
||||||
|
"getReviewComment": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listComments": [Function],
|
||||||
|
"listCommentsForRepo": [Function],
|
||||||
|
"listCommentsForReview": [Function],
|
||||||
|
"listCommits": [Function],
|
||||||
|
"listFiles": [Function],
|
||||||
|
"listRequestedReviewers": [Function],
|
||||||
|
"listReviewComments": [Function],
|
||||||
|
"listReviewCommentsForRepo": [Function],
|
||||||
|
"listReviewRequests": [Function],
|
||||||
|
"listReviews": [Function],
|
||||||
|
"merge": [Function],
|
||||||
|
"removeRequestedReviewers": [Function],
|
||||||
|
"requestReviewers": [Function],
|
||||||
|
"submitReview": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
"updateBranch": [Function],
|
||||||
|
"updateComment": [Function],
|
||||||
|
"updateReview": [Function],
|
||||||
|
"updateReviewComment": [Function],
|
||||||
|
},
|
||||||
|
"rateLimit": Object {
|
||||||
|
"get": [Function],
|
||||||
|
},
|
||||||
|
"reactions": Object {
|
||||||
|
"createForCommitComment": [Function],
|
||||||
|
"createForIssue": [Function],
|
||||||
|
"createForIssueComment": [Function],
|
||||||
|
"createForPullRequestReviewComment": [Function],
|
||||||
|
"createForTeamDiscussionCommentInOrg": [Function],
|
||||||
|
"createForTeamDiscussionInOrg": [Function],
|
||||||
|
"delete": [Function],
|
||||||
|
"deleteForCommitComment": [Function],
|
||||||
|
"deleteForIssue": [Function],
|
||||||
|
"deleteForIssueComment": [Function],
|
||||||
|
"deleteForPullRequestComment": [Function],
|
||||||
|
"deleteForTeamDiscussion": [Function],
|
||||||
|
"deleteForTeamDiscussionComment": [Function],
|
||||||
|
"deleteLegacy": [Function],
|
||||||
|
"listForCommitComment": [Function],
|
||||||
|
"listForIssue": [Function],
|
||||||
|
"listForIssueComment": [Function],
|
||||||
|
"listForPullRequestReviewComment": [Function],
|
||||||
|
"listForTeamDiscussionCommentInOrg": [Function],
|
||||||
|
"listForTeamDiscussionInOrg": [Function],
|
||||||
|
},
|
||||||
|
"repos": Object {
|
||||||
|
"acceptInvitation": [Function],
|
||||||
|
"addAppAccessRestrictions": [Function],
|
||||||
|
"addCollaborator": [Function],
|
||||||
|
"addDeployKey": [Function],
|
||||||
|
"addProtectedBranchAdminEnforcement": [Function],
|
||||||
|
"addProtectedBranchAppRestrictions": [Function],
|
||||||
|
"addProtectedBranchRequiredSignatures": [Function],
|
||||||
|
"addProtectedBranchRequiredStatusChecksContexts": [Function],
|
||||||
|
"addProtectedBranchTeamRestrictions": [Function],
|
||||||
|
"addProtectedBranchUserRestrictions": [Function],
|
||||||
|
"addStatusCheckContexts": [Function],
|
||||||
|
"addTeamAccessRestrictions": [Function],
|
||||||
|
"addUserAccessRestrictions": [Function],
|
||||||
|
"checkCollaborator": [Function],
|
||||||
|
"checkVulnerabilityAlerts": [Function],
|
||||||
|
"compareCommits": [Function],
|
||||||
|
"createCommitComment": [Function],
|
||||||
|
"createCommitSignatureProtection": [Function],
|
||||||
|
"createCommitStatus": [Function],
|
||||||
|
"createDeployKey": [Function],
|
||||||
|
"createDeployment": [Function],
|
||||||
|
"createDeploymentStatus": [Function],
|
||||||
|
"createDispatchEvent": [Function],
|
||||||
|
"createForAuthenticatedUser": [Function],
|
||||||
|
"createFork": [Function],
|
||||||
|
"createHook": [Function],
|
||||||
|
"createInOrg": [Function],
|
||||||
|
"createOrUpdateFile": [Function],
|
||||||
|
"createOrUpdateFileContents": [Function],
|
||||||
|
"createPagesSite": [Function],
|
||||||
|
"createRelease": [Function],
|
||||||
|
"createStatus": [Function],
|
||||||
|
"createUsingTemplate": [Function],
|
||||||
|
"createWebhook": [Function],
|
||||||
|
"declineInvitation": [Function],
|
||||||
|
"delete": [Function],
|
||||||
|
"deleteAccessRestrictions": [Function],
|
||||||
|
"deleteAdminBranchProtection": [Function],
|
||||||
|
"deleteBranchProtection": [Function],
|
||||||
|
"deleteCommitComment": [Function],
|
||||||
|
"deleteCommitSignatureProtection": [Function],
|
||||||
|
"deleteDeployKey": [Function],
|
||||||
|
"deleteDeployment": [Function],
|
||||||
|
"deleteDownload": [Function],
|
||||||
|
"deleteFile": [Function],
|
||||||
|
"deleteHook": [Function],
|
||||||
|
"deleteInvitation": [Function],
|
||||||
|
"deletePagesSite": [Function],
|
||||||
|
"deletePullRequestReviewProtection": [Function],
|
||||||
|
"deleteRelease": [Function],
|
||||||
|
"deleteReleaseAsset": [Function],
|
||||||
|
"deleteWebhook": [Function],
|
||||||
|
"disableAutomatedSecurityFixes": [Function],
|
||||||
|
"disablePagesSite": [Function],
|
||||||
|
"disableVulnerabilityAlerts": [Function],
|
||||||
|
"downloadArchive": [Function],
|
||||||
|
"enableAutomatedSecurityFixes": [Function],
|
||||||
|
"enablePagesSite": [Function],
|
||||||
|
"enableVulnerabilityAlerts": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getAccessRestrictions": [Function],
|
||||||
|
"getAdminBranchProtection": [Function],
|
||||||
|
"getAllStatusCheckContexts": [Function],
|
||||||
|
"getAllTopics": [Function],
|
||||||
|
"getAppsWithAccessToProtectedBranch": [Function],
|
||||||
|
"getArchiveLink": [Function],
|
||||||
|
"getBranch": [Function],
|
||||||
|
"getBranchProtection": [Function],
|
||||||
|
"getClones": [Function],
|
||||||
|
"getCodeFrequencyStats": [Function],
|
||||||
|
"getCollaboratorPermissionLevel": [Function],
|
||||||
|
"getCombinedStatusForRef": [Function],
|
||||||
|
"getCommit": [Function],
|
||||||
|
"getCommitActivityStats": [Function],
|
||||||
|
"getCommitComment": [Function],
|
||||||
|
"getCommitSignatureProtection": [Function],
|
||||||
|
"getCommunityProfileMetrics": [Function],
|
||||||
|
"getContent": [Function],
|
||||||
|
"getContents": [Function],
|
||||||
|
"getContributorsStats": [Function],
|
||||||
|
"getDeployKey": [Function],
|
||||||
|
"getDeployment": [Function],
|
||||||
|
"getDeploymentStatus": [Function],
|
||||||
|
"getDownload": [Function],
|
||||||
|
"getHook": [Function],
|
||||||
|
"getLatestPagesBuild": [Function],
|
||||||
|
"getLatestRelease": [Function],
|
||||||
|
"getPages": [Function],
|
||||||
|
"getPagesBuild": [Function],
|
||||||
|
"getParticipationStats": [Function],
|
||||||
|
"getProtectedBranchAdminEnforcement": [Function],
|
||||||
|
"getProtectedBranchPullRequestReviewEnforcement": [Function],
|
||||||
|
"getProtectedBranchRequiredSignatures": [Function],
|
||||||
|
"getProtectedBranchRequiredStatusChecks": [Function],
|
||||||
|
"getProtectedBranchRestrictions": [Function],
|
||||||
|
"getPullRequestReviewProtection": [Function],
|
||||||
|
"getPunchCardStats": [Function],
|
||||||
|
"getReadme": [Function],
|
||||||
|
"getRelease": [Function],
|
||||||
|
"getReleaseAsset": [Function],
|
||||||
|
"getReleaseByTag": [Function],
|
||||||
|
"getStatusChecksProtection": [Function],
|
||||||
|
"getTeamsWithAccessToProtectedBranch": [Function],
|
||||||
|
"getTopPaths": [Function],
|
||||||
|
"getTopReferrers": [Function],
|
||||||
|
"getUsersWithAccessToProtectedBranch": [Function],
|
||||||
|
"getViews": [Function],
|
||||||
|
"getWebhook": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listAssetsForRelease": [Function],
|
||||||
|
"listBranches": [Function],
|
||||||
|
"listBranchesForHeadCommit": [Function],
|
||||||
|
"listCollaborators": [Function],
|
||||||
|
"listCommentsForCommit": [Function],
|
||||||
|
"listCommitComments": [Function],
|
||||||
|
"listCommitCommentsForRepo": [Function],
|
||||||
|
"listCommitStatusesForRef": [Function],
|
||||||
|
"listCommits": [Function],
|
||||||
|
"listContributors": [Function],
|
||||||
|
"listDeployKeys": [Function],
|
||||||
|
"listDeploymentStatuses": [Function],
|
||||||
|
"listDeployments": [Function],
|
||||||
|
"listDownloads": [Function],
|
||||||
|
"listForAuthenticatedUser": [Function],
|
||||||
|
"listForOrg": [Function],
|
||||||
|
"listForUser": [Function],
|
||||||
|
"listForks": [Function],
|
||||||
|
"listHooks": [Function],
|
||||||
|
"listInvitations": [Function],
|
||||||
|
"listInvitationsForAuthenticatedUser": [Function],
|
||||||
|
"listLanguages": [Function],
|
||||||
|
"listPagesBuilds": [Function],
|
||||||
|
"listProtectedBranchRequiredStatusChecksContexts": [Function],
|
||||||
|
"listPublic": [Function],
|
||||||
|
"listPullRequestsAssociatedWithCommit": [Function],
|
||||||
|
"listReleaseAssets": [Function],
|
||||||
|
"listReleases": [Function],
|
||||||
|
"listStatusesForRef": [Function],
|
||||||
|
"listTags": [Function],
|
||||||
|
"listTeams": [Function],
|
||||||
|
"listTopics": [Function],
|
||||||
|
"listWebhooks": [Function],
|
||||||
|
"merge": [Function],
|
||||||
|
"pingHook": [Function],
|
||||||
|
"pingWebhook": [Function],
|
||||||
|
"removeAppAccessRestrictions": [Function],
|
||||||
|
"removeBranchProtection": [Function],
|
||||||
|
"removeCollaborator": [Function],
|
||||||
|
"removeDeployKey": [Function],
|
||||||
|
"removeProtectedBranchAdminEnforcement": [Function],
|
||||||
|
"removeProtectedBranchAppRestrictions": [Function],
|
||||||
|
"removeProtectedBranchPullRequestReviewEnforcement": [Function],
|
||||||
|
"removeProtectedBranchRequiredSignatures": [Function],
|
||||||
|
"removeProtectedBranchRequiredStatusChecks": [Function],
|
||||||
|
"removeProtectedBranchRequiredStatusChecksContexts": [Function],
|
||||||
|
"removeProtectedBranchRestrictions": [Function],
|
||||||
|
"removeProtectedBranchTeamRestrictions": [Function],
|
||||||
|
"removeProtectedBranchUserRestrictions": [Function],
|
||||||
|
"removeStatusCheckContexts": [Function],
|
||||||
|
"removeStatusCheckProtection": [Function],
|
||||||
|
"removeTeamAccessRestrictions": [Function],
|
||||||
|
"removeUserAccessRestrictions": [Function],
|
||||||
|
"replaceAllTopics": [Function],
|
||||||
|
"replaceProtectedBranchAppRestrictions": [Function],
|
||||||
|
"replaceProtectedBranchRequiredStatusChecksContexts": [Function],
|
||||||
|
"replaceProtectedBranchTeamRestrictions": [Function],
|
||||||
|
"replaceProtectedBranchUserRestrictions": [Function],
|
||||||
|
"replaceTopics": [Function],
|
||||||
|
"requestPageBuild": [Function],
|
||||||
|
"requestPagesBuild": [Function],
|
||||||
|
"retrieveCommunityProfileMetrics": [Function],
|
||||||
|
"setAdminBranchProtection": [Function],
|
||||||
|
"setAppAccessRestrictions": [Function],
|
||||||
|
"setStatusCheckContexts": [Function],
|
||||||
|
"setTeamAccessRestrictions": [Function],
|
||||||
|
"setUserAccessRestrictions": [Function],
|
||||||
|
"testPushHook": [Function],
|
||||||
|
"testPushWebhook": [Function],
|
||||||
|
"transfer": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
"updateBranchProtection": [Function],
|
||||||
|
"updateCommitComment": [Function],
|
||||||
|
"updateHook": [Function],
|
||||||
|
"updateInformationAboutPagesSite": [Function],
|
||||||
|
"updateInvitation": [Function],
|
||||||
|
"updateProtectedBranchPullRequestReviewEnforcement": [Function],
|
||||||
|
"updateProtectedBranchRequiredStatusChecks": [Function],
|
||||||
|
"updatePullRequestReviewProtection": [Function],
|
||||||
|
"updateRelease": [Function],
|
||||||
|
"updateReleaseAsset": [Function],
|
||||||
|
"updateStatusCheckPotection": [Function],
|
||||||
|
"updateWebhook": [Function],
|
||||||
|
"uploadReleaseAsset": [Function],
|
||||||
|
},
|
||||||
|
"request": [Function],
|
||||||
|
"search": Object {
|
||||||
|
"code": [Function],
|
||||||
|
"commits": [Function],
|
||||||
|
"issuesAndPullRequests": [Function],
|
||||||
|
"labels": [Function],
|
||||||
|
"repos": [Function],
|
||||||
|
"topics": [Function],
|
||||||
|
"users": [Function],
|
||||||
|
},
|
||||||
|
"teams": Object {
|
||||||
|
"addOrUpdateMembershipForUserInOrg": [Function],
|
||||||
|
"addOrUpdateMembershipInOrg": [Function],
|
||||||
|
"addOrUpdateProjectInOrg": [Function],
|
||||||
|
"addOrUpdateProjectPermissionsInOrg": [Function],
|
||||||
|
"addOrUpdateRepoInOrg": [Function],
|
||||||
|
"addOrUpdateRepoPermissionsInOrg": [Function],
|
||||||
|
"checkManagesRepoInOrg": [Function],
|
||||||
|
"checkPermissionsForProjectInOrg": [Function],
|
||||||
|
"checkPermissionsForRepoInOrg": [Function],
|
||||||
|
"create": [Function],
|
||||||
|
"createDiscussionCommentInOrg": [Function],
|
||||||
|
"createDiscussionInOrg": [Function],
|
||||||
|
"deleteDiscussionCommentInOrg": [Function],
|
||||||
|
"deleteDiscussionInOrg": [Function],
|
||||||
|
"deleteInOrg": [Function],
|
||||||
|
"getByName": [Function],
|
||||||
|
"getDiscussionCommentInOrg": [Function],
|
||||||
|
"getDiscussionInOrg": [Function],
|
||||||
|
"getMembershipForUserInOrg": [Function],
|
||||||
|
"getMembershipInOrg": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listChildInOrg": [Function],
|
||||||
|
"listDiscussionCommentsInOrg": [Function],
|
||||||
|
"listDiscussionsInOrg": [Function],
|
||||||
|
"listForAuthenticatedUser": [Function],
|
||||||
|
"listMembersInOrg": [Function],
|
||||||
|
"listPendingInvitationsInOrg": [Function],
|
||||||
|
"listProjectsInOrg": [Function],
|
||||||
|
"listReposInOrg": [Function],
|
||||||
|
"removeMembershipForUserInOrg": [Function],
|
||||||
|
"removeMembershipInOrg": [Function],
|
||||||
|
"removeProjectInOrg": [Function],
|
||||||
|
"removeRepoInOrg": [Function],
|
||||||
|
"reviewProjectInOrg": [Function],
|
||||||
|
"updateDiscussionCommentInOrg": [Function],
|
||||||
|
"updateDiscussionInOrg": [Function],
|
||||||
|
"updateInOrg": [Function],
|
||||||
|
},
|
||||||
|
"users": Object {
|
||||||
|
"addEmailForAuthenticated": [Function],
|
||||||
|
"addEmails": [Function],
|
||||||
|
"block": [Function],
|
||||||
|
"checkBlocked": [Function],
|
||||||
|
"checkFollowing": [Function],
|
||||||
|
"checkFollowingForUser": [Function],
|
||||||
|
"checkPersonIsFollowedByAuthenticated": [Function],
|
||||||
|
"createGpgKey": [Function],
|
||||||
|
"createGpgKeyForAuthenticated": [Function],
|
||||||
|
"createPublicKey": [Function],
|
||||||
|
"createPublicSshKeyForAuthenticated": [Function],
|
||||||
|
"deleteEmailForAuthenticated": [Function],
|
||||||
|
"deleteEmails": [Function],
|
||||||
|
"deleteGpgKey": [Function],
|
||||||
|
"deleteGpgKeyForAuthenticated": [Function],
|
||||||
|
"deletePublicKey": [Function],
|
||||||
|
"deletePublicSshKeyForAuthenticated": [Function],
|
||||||
|
"follow": [Function],
|
||||||
|
"getAuthenticated": [Function],
|
||||||
|
"getByUsername": [Function],
|
||||||
|
"getContextForUser": [Function],
|
||||||
|
"getGpgKey": [Function],
|
||||||
|
"getGpgKeyForAuthenticated": [Function],
|
||||||
|
"getPublicKey": [Function],
|
||||||
|
"getPublicSshKeyForAuthenticated": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listBlocked": [Function],
|
||||||
|
"listBlockedByAuthenticated": [Function],
|
||||||
|
"listEmails": [Function],
|
||||||
|
"listEmailsForAuthenticated": [Function],
|
||||||
|
"listFollowedByAuthenticated": [Function],
|
||||||
|
"listFollowersForAuthenticatedUser": [Function],
|
||||||
|
"listFollowersForUser": [Function],
|
||||||
|
"listFollowingForAuthenticatedUser": [Function],
|
||||||
|
"listFollowingForUser": [Function],
|
||||||
|
"listGpgKeys": [Function],
|
||||||
|
"listGpgKeysForAuthenticated": [Function],
|
||||||
|
"listGpgKeysForUser": [Function],
|
||||||
|
"listPublicEmails": [Function],
|
||||||
|
"listPublicEmailsForAuthenticated": [Function],
|
||||||
|
"listPublicKeys": [Function],
|
||||||
|
"listPublicKeysForUser": [Function],
|
||||||
|
"listPublicSshKeysForAuthenticated": [Function],
|
||||||
|
"setPrimaryEmailVisibilityForAuthenticated": [Function],
|
||||||
|
"togglePrimaryEmailVisibility": [Function],
|
||||||
|
"unblock": [Function],
|
||||||
|
"unfollow": [Function],
|
||||||
|
"updateAuthenticated": [Function],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"hasStorageAnalyticsAfecFeature": [Function],
|
||||||
"isAccountReady": [Function],
|
"isAccountReady": [Function],
|
||||||
"isFixedCollectionWithSharedThroughputSupported": [Function],
|
"isFixedCollectionWithSharedThroughputSupported": [Function],
|
||||||
"isHostedDataExplorerEnabled": [Function],
|
"isHostedDataExplorerEnabled": [Function],
|
||||||
|
"isLeftPaneExpanded": [Function],
|
||||||
|
"isMongoIndexingEnabled": [Function],
|
||||||
"isNotebookEnabled": [Function],
|
"isNotebookEnabled": [Function],
|
||||||
"isNotebooksEnabledForAccount": [Function],
|
"isNotebooksEnabledForAccount": [Function],
|
||||||
|
"isPublishNotebookPaneEnabled": [Function],
|
||||||
"isResourceTokenCollectionNodeSelected": [Function],
|
"isResourceTokenCollectionNodeSelected": [Function],
|
||||||
"isSchemaEnabled": [Function],
|
"isSchemaEnabled": [Function],
|
||||||
"isServerlessEnabled": [Function],
|
"isServerlessEnabled": [Function],
|
||||||
"isShellEnabled": [Function],
|
"isShellEnabled": [Function],
|
||||||
|
"isSparkEnabled": [Function],
|
||||||
|
"isSparkEnabledForAccount": [Function],
|
||||||
"isSynapseLinkUpdating": [Function],
|
"isSynapseLinkUpdating": [Function],
|
||||||
"isTabsContentExpanded": [Function],
|
"isTabsContentExpanded": [Function],
|
||||||
|
"junoClient": JunoClient {
|
||||||
|
"cachedPinnedRepos": [Function],
|
||||||
|
},
|
||||||
"memoryUsageInfo": [Function],
|
"memoryUsageInfo": [Function],
|
||||||
"notebookBasePath": [Function],
|
"notebookBasePath": [Function],
|
||||||
"notebookServerInfo": [Function],
|
"notebookServerInfo": [Function],
|
||||||
|
"onGitHubClientError": [Function],
|
||||||
"onRefreshDatabasesKeyPress": [Function],
|
"onRefreshDatabasesKeyPress": [Function],
|
||||||
"onRefreshResourcesClick": [Function],
|
"onRefreshResourcesClick": [Function],
|
||||||
|
"openSidePanel": undefined,
|
||||||
"provideFeedbackEmail": [Function],
|
"provideFeedbackEmail": [Function],
|
||||||
"queriesClient": QueriesClient {
|
"queriesClient": QueriesClient {
|
||||||
"container": [Circular],
|
"container": [Circular],
|
||||||
},
|
},
|
||||||
"refreshNotebookList": [Function],
|
"refreshNotebookList": [Function],
|
||||||
|
"refreshTreeTitle": [Function],
|
||||||
"resourceTokenCollection": [Function],
|
"resourceTokenCollection": [Function],
|
||||||
"resourceTokenCollectionId": [Function],
|
"resourceTokenCollectionId": [Function],
|
||||||
"resourceTokenDatabaseId": [Function],
|
"resourceTokenDatabaseId": [Function],
|
||||||
@@ -62,6 +867,7 @@ exports[`GitHub Repos Panel should render Default properly 1`] = `
|
|||||||
"selectedDatabaseId": [Function],
|
"selectedDatabaseId": [Function],
|
||||||
"selectedNode": [Function],
|
"selectedNode": [Function],
|
||||||
"setInProgressConsoleDataIdToBeDeleted": undefined,
|
"setInProgressConsoleDataIdToBeDeleted": undefined,
|
||||||
|
"setIsNotificationConsoleExpanded": undefined,
|
||||||
"setNotificationConsoleData": undefined,
|
"setNotificationConsoleData": undefined,
|
||||||
"sparkClusterConnectionInfo": [Function],
|
"sparkClusterConnectionInfo": [Function],
|
||||||
"splitter": Splitter {
|
"splitter": Splitter {
|
||||||
@@ -80,6 +886,7 @@ exports[`GitHub Repos Panel should render Default properly 1`] = `
|
|||||||
"activeTab": [Function],
|
"activeTab": [Function],
|
||||||
"openedTabs": [Function],
|
"openedTabs": [Function],
|
||||||
},
|
},
|
||||||
|
"toggleLeftPaneExpandedKeyPress": [Function],
|
||||||
},
|
},
|
||||||
"getRepo": [Function],
|
"getRepo": [Function],
|
||||||
"pinRepo": [Function],
|
"pinRepo": [Function],
|
||||||
|
|||||||
@@ -1,27 +1,25 @@
|
|||||||
import React, { FunctionComponent } from "react";
|
import React, { FunctionComponent } from "react";
|
||||||
import * as ViewModels from "../../../Contracts/ViewModels";
|
import * as ViewModels from "../../../Contracts/ViewModels";
|
||||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
|
||||||
import { GraphStyleComponent } from "../../Graph/GraphStyleComponent/GraphStyleComponent";
|
import { GraphStyleComponent } from "../../Graph/GraphStyleComponent/GraphStyleComponent";
|
||||||
import { IGraphConfig } from "../../Tabs/GraphTab";
|
import { IGraphConfig } from "../../Tabs/GraphTab";
|
||||||
import { PanelFooterComponent } from "../PanelFooterComponent";
|
import { PanelFooterComponent } from "../PanelFooterComponent";
|
||||||
interface GraphStylingProps {
|
interface GraphStylingProps {
|
||||||
|
closePanel: () => void;
|
||||||
igraphConfigUiData: ViewModels.IGraphConfigUiData;
|
igraphConfigUiData: ViewModels.IGraphConfigUiData;
|
||||||
igraphConfig: IGraphConfig;
|
igraphConfig: IGraphConfig;
|
||||||
getValues: (igraphConfig?: IGraphConfig) => void;
|
getValues: (igraphConfig?: IGraphConfig) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const GraphStylingPanel: FunctionComponent<GraphStylingProps> = ({
|
export const GraphStylingPanel: FunctionComponent<GraphStylingProps> = ({
|
||||||
|
closePanel,
|
||||||
igraphConfigUiData,
|
igraphConfigUiData,
|
||||||
igraphConfig,
|
igraphConfig,
|
||||||
getValues,
|
getValues,
|
||||||
}: GraphStylingProps): JSX.Element => {
|
}: GraphStylingProps): JSX.Element => {
|
||||||
const closeSidePanel = useSidePanel((state) => state.closeSidePanel);
|
|
||||||
|
|
||||||
const buttonLabel = "Ok";
|
const buttonLabel = "Ok";
|
||||||
|
|
||||||
const submit = (event: React.FormEvent<HTMLFormElement>) => {
|
const submit = () => {
|
||||||
event.preventDefault();
|
closePanel();
|
||||||
closeSidePanel();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ import React, { FunctionComponent, useState } from "react";
|
|||||||
import folderIcon from "../../../../images/folder_16x16.svg";
|
import folderIcon from "../../../../images/folder_16x16.svg";
|
||||||
import { logError } from "../../../Common/Logger";
|
import { logError } from "../../../Common/Logger";
|
||||||
import { Collection } from "../../../Contracts/ViewModels";
|
import { Collection } from "../../../Contracts/ViewModels";
|
||||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
|
||||||
import { userContext } from "../../../UserContext";
|
import { userContext } from "../../../UserContext";
|
||||||
import { logConsoleError, logConsoleInfo, logConsoleProgress } from "../../../Utils/NotificationConsoleUtils";
|
import { logConsoleError, logConsoleInfo, logConsoleProgress } from "../../../Utils/NotificationConsoleUtils";
|
||||||
import Explorer from "../../Explorer";
|
import Explorer from "../../Explorer";
|
||||||
@@ -13,10 +12,13 @@ import { RightPaneForm, RightPaneFormProps } from "../RightPaneForm/RightPaneFor
|
|||||||
|
|
||||||
interface LoadQueryPaneProps {
|
interface LoadQueryPaneProps {
|
||||||
explorer: Explorer;
|
explorer: Explorer;
|
||||||
|
closePanel: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const LoadQueryPane: FunctionComponent<LoadQueryPaneProps> = ({ explorer }: LoadQueryPaneProps): JSX.Element => {
|
export const LoadQueryPane: FunctionComponent<LoadQueryPaneProps> = ({
|
||||||
const closeSidePanel = useSidePanel((state) => state.closeSidePanel);
|
explorer,
|
||||||
|
closePanel,
|
||||||
|
}: LoadQueryPaneProps): JSX.Element => {
|
||||||
const [isLoading, { setTrue: setLoadingTrue, setFalse: setLoadingFalse }] = useBoolean(false);
|
const [isLoading, { setTrue: setLoadingTrue, setFalse: setLoadingFalse }] = useBoolean(false);
|
||||||
const [formError, setFormError] = useState<string>("");
|
const [formError, setFormError] = useState<string>("");
|
||||||
const [selectedFileName, setSelectedFileName] = useState<string>("");
|
const [selectedFileName, setSelectedFileName] = useState<string>("");
|
||||||
@@ -49,7 +51,7 @@ export const LoadQueryPane: FunctionComponent<LoadQueryPaneProps> = ({ explorer
|
|||||||
try {
|
try {
|
||||||
await loadQueryFromFile(file);
|
await loadQueryFromFile(file);
|
||||||
logConsoleInfo(`Successfully loaded query from file ${file.name}`);
|
logConsoleInfo(`Successfully loaded query from file ${file.name}`);
|
||||||
closeSidePanel();
|
closePanel();
|
||||||
setLoadingFalse();
|
setLoadingFalse();
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
setLoadingFalse();
|
setLoadingFalse();
|
||||||
@@ -87,6 +89,7 @@ export const LoadQueryPane: FunctionComponent<LoadQueryPaneProps> = ({ explorer
|
|||||||
isExecuting: isLoading,
|
isExecuting: isLoading,
|
||||||
submitButtonText: "Load",
|
submitButtonText: "Load",
|
||||||
onSubmit: () => submit(),
|
onSubmit: () => submit(),
|
||||||
|
expandConsole: () => explorer.expandConsole(),
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
exports[`Load Query Pane should render Default properly 1`] = `
|
exports[`Load Query Pane should render Default properly 1`] = `
|
||||||
<RightPaneForm
|
<RightPaneForm
|
||||||
|
expandConsole={[Function]}
|
||||||
formError=""
|
formError=""
|
||||||
isExecuting={false}
|
isExecuting={false}
|
||||||
onSubmit={[Function]}
|
onSubmit={[Function]}
|
||||||
|
|||||||
@@ -36,7 +36,14 @@ describe("New Vertex Panel", () => {
|
|||||||
it("should call form submit method", () => {
|
it("should call form submit method", () => {
|
||||||
const onSubmitSpy = jest.fn();
|
const onSubmitSpy = jest.fn();
|
||||||
|
|
||||||
const newWrapper = mount(<NewVertexPanel partitionKeyPropertyProp={undefined} onSubmit={onSubmitSpy} />);
|
const newWrapper = mount(
|
||||||
|
<NewVertexPanel
|
||||||
|
explorer={fakeExplorer}
|
||||||
|
partitionKeyPropertyProp={undefined}
|
||||||
|
openNotificationConsole={(): void => undefined}
|
||||||
|
onSubmit={onSubmitSpy}
|
||||||
|
/>
|
||||||
|
);
|
||||||
//eslint-disable-next-line
|
//eslint-disable-next-line
|
||||||
newWrapper.find("form").simulate("submit", { preventDefault: () => {} });
|
newWrapper.find("form").simulate("submit", { preventDefault: () => {} });
|
||||||
|
|
||||||
@@ -54,7 +61,14 @@ describe("New Vertex Panel", () => {
|
|||||||
|
|
||||||
const result = onSubmitSpy(fakeNewVertexData, onErrorSpy, onSuccessSpy);
|
const result = onSubmitSpy(fakeNewVertexData, onErrorSpy, onSuccessSpy);
|
||||||
|
|
||||||
const newWrapper = mount(<NewVertexPanel partitionKeyPropertyProp={undefined} onSubmit={onSubmitSpy} />);
|
const newWrapper = mount(
|
||||||
|
<NewVertexPanel
|
||||||
|
explorer={fakeExplorer}
|
||||||
|
partitionKeyPropertyProp={undefined}
|
||||||
|
openNotificationConsole={(): void => undefined}
|
||||||
|
onSubmit={onSubmitSpy}
|
||||||
|
/>
|
||||||
|
);
|
||||||
//eslint-disable-next-line
|
//eslint-disable-next-line
|
||||||
newWrapper.find("form").simulate("submit", { preventDefault: () => {} });
|
newWrapper.find("form").simulate("submit", { preventDefault: () => {} });
|
||||||
|
|
||||||
|
|||||||
@@ -1,17 +1,21 @@
|
|||||||
import { useBoolean } from "@fluentui/react-hooks";
|
import { useBoolean } from "@fluentui/react-hooks";
|
||||||
import React, { FunctionComponent, useState } from "react";
|
import React, { FunctionComponent, useState } from "react";
|
||||||
import * as ViewModels from "../../../Contracts/ViewModels";
|
import * as ViewModels from "../../../Contracts/ViewModels";
|
||||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
import Explorer from "../../Explorer";
|
||||||
import { NewVertexComponent } from "../../Graph/NewVertexComponent/NewVertexComponent";
|
import { NewVertexComponent } from "../../Graph/NewVertexComponent/NewVertexComponent";
|
||||||
import { RightPaneForm, RightPaneFormProps } from "../RightPaneForm/RightPaneForm";
|
import { RightPaneForm, RightPaneFormProps } from "../RightPaneForm/RightPaneForm";
|
||||||
export interface INewVertexPanelProps {
|
export interface INewVertexPanelProps {
|
||||||
|
explorer: Explorer;
|
||||||
partitionKeyPropertyProp: string;
|
partitionKeyPropertyProp: string;
|
||||||
onSubmit: (result: ViewModels.NewVertexData, onError: (errorMsg: string) => void, onSuccess: () => void) => void;
|
onSubmit: (result: ViewModels.NewVertexData, onError: (errorMsg: string) => void, onSuccess: () => void) => void;
|
||||||
|
openNotificationConsole: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const NewVertexPanel: FunctionComponent<INewVertexPanelProps> = ({
|
export const NewVertexPanel: FunctionComponent<INewVertexPanelProps> = ({
|
||||||
|
explorer,
|
||||||
partitionKeyPropertyProp,
|
partitionKeyPropertyProp,
|
||||||
onSubmit,
|
onSubmit,
|
||||||
|
openNotificationConsole,
|
||||||
}: INewVertexPanelProps): JSX.Element => {
|
}: INewVertexPanelProps): JSX.Element => {
|
||||||
let newVertexDataValue: ViewModels.NewVertexData;
|
let newVertexDataValue: ViewModels.NewVertexData;
|
||||||
const [errorMessage, setErrorMessage] = useState<string>("");
|
const [errorMessage, setErrorMessage] = useState<string>("");
|
||||||
@@ -29,10 +33,10 @@ export const NewVertexPanel: FunctionComponent<INewVertexPanelProps> = ({
|
|||||||
setErrorMessage(errorMsg);
|
setErrorMessage(errorMsg);
|
||||||
setLoadingFalse();
|
setLoadingFalse();
|
||||||
};
|
};
|
||||||
const closeSidePanel = useSidePanel((state) => state.closeSidePanel);
|
|
||||||
const onSuccess = () => {
|
const onSuccess = () => {
|
||||||
setLoadingFalse();
|
setLoadingFalse();
|
||||||
closeSidePanel();
|
explorer.closeSidePanel();
|
||||||
};
|
};
|
||||||
|
|
||||||
const onChange = (newVertexData: ViewModels.NewVertexData) => {
|
const onChange = (newVertexData: ViewModels.NewVertexData) => {
|
||||||
@@ -43,6 +47,7 @@ export const NewVertexPanel: FunctionComponent<INewVertexPanelProps> = ({
|
|||||||
isExecuting: isLoading,
|
isExecuting: isLoading,
|
||||||
submitButtonText: "OK",
|
submitButtonText: "OK",
|
||||||
onSubmit: () => submit(),
|
onSubmit: () => submit(),
|
||||||
|
expandConsole: openNotificationConsole,
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
exports[`New Vertex Panel should render default property 1`] = `
|
exports[`New Vertex Panel should render default property 1`] = `
|
||||||
<RightPaneForm
|
<RightPaneForm
|
||||||
|
expandConsole={[Function]}
|
||||||
formError=""
|
formError=""
|
||||||
isExecuting={false}
|
isExecuting={false}
|
||||||
onSubmit={[Function]}
|
onSubmit={[Function]}
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ describe("PaneContainerComponent test", () => {
|
|||||||
panelContent: <div></div>,
|
panelContent: <div></div>,
|
||||||
isOpen: true,
|
isOpen: true,
|
||||||
isConsoleExpanded: false,
|
isConsoleExpanded: false,
|
||||||
|
closePanel: undefined,
|
||||||
};
|
};
|
||||||
const wrapper = shallow(<PanelContainerComponent {...panelContainerProps} />);
|
const wrapper = shallow(<PanelContainerComponent {...panelContainerProps} />);
|
||||||
expect(wrapper).toMatchSnapshot();
|
expect(wrapper).toMatchSnapshot();
|
||||||
@@ -20,6 +21,7 @@ describe("PaneContainerComponent test", () => {
|
|||||||
panelContent: undefined,
|
panelContent: undefined,
|
||||||
isOpen: true,
|
isOpen: true,
|
||||||
isConsoleExpanded: false,
|
isConsoleExpanded: false,
|
||||||
|
closePanel: undefined,
|
||||||
};
|
};
|
||||||
const wrapper = shallow(<PanelContainerComponent {...panelContainerProps} />);
|
const wrapper = shallow(<PanelContainerComponent {...panelContainerProps} />);
|
||||||
expect(wrapper).toMatchSnapshot();
|
expect(wrapper).toMatchSnapshot();
|
||||||
@@ -31,6 +33,7 @@ describe("PaneContainerComponent test", () => {
|
|||||||
panelContent: <div></div>,
|
panelContent: <div></div>,
|
||||||
isOpen: true,
|
isOpen: true,
|
||||||
isConsoleExpanded: true,
|
isConsoleExpanded: true,
|
||||||
|
closePanel: undefined,
|
||||||
};
|
};
|
||||||
const wrapper = shallow(<PanelContainerComponent {...panelContainerProps} />);
|
const wrapper = shallow(<PanelContainerComponent {...panelContainerProps} />);
|
||||||
expect(wrapper).toMatchSnapshot();
|
expect(wrapper).toMatchSnapshot();
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
import { IPanelProps, IRenderFunction, Panel, PanelType } from "@fluentui/react";
|
import { IPanelProps, IRenderFunction, Panel, PanelType } from "@fluentui/react";
|
||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import { useNotificationConsole } from "../../hooks/useNotificationConsole";
|
|
||||||
import { useSidePanel } from "../../hooks/useSidePanel";
|
|
||||||
|
|
||||||
export interface PanelContainerProps {
|
export interface PanelContainerProps {
|
||||||
headerText: string;
|
headerText: string;
|
||||||
panelContent: JSX.Element;
|
panelContent: JSX.Element;
|
||||||
isConsoleExpanded: boolean;
|
isConsoleExpanded: boolean;
|
||||||
isOpen: boolean;
|
isOpen: boolean;
|
||||||
|
closePanel: () => void;
|
||||||
panelWidth?: string;
|
panelWidth?: string;
|
||||||
onRenderNavigationContent?: IRenderFunction<IPanelProps>;
|
onRenderNavigationContent?: IRenderFunction<IPanelProps>;
|
||||||
}
|
}
|
||||||
@@ -70,7 +69,7 @@ export class PanelContainerComponent extends React.Component<PanelContainerProps
|
|||||||
if ((ev.target as HTMLElement).id === "notificationConsoleHeader") {
|
if ((ev.target as HTMLElement).id === "notificationConsoleHeader") {
|
||||||
ev.preventDefault();
|
ev.preventDefault();
|
||||||
} else {
|
} else {
|
||||||
useSidePanel.getState().closeSidePanel();
|
this.props.closePanel();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -82,24 +81,3 @@ export class PanelContainerComponent extends React.Component<PanelContainerProps
|
|||||||
return panelHeight + "px";
|
return panelHeight + "px";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export const SidePanel: React.FC = () => {
|
|
||||||
const isConsoleExpanded = useNotificationConsole((state) => state.isExpanded);
|
|
||||||
const { isOpen, panelContent, headerText } = useSidePanel((state) => {
|
|
||||||
return {
|
|
||||||
isOpen: state.isOpen,
|
|
||||||
panelContent: state.panelContent,
|
|
||||||
headerText: state.headerText,
|
|
||||||
};
|
|
||||||
});
|
|
||||||
// TODO Refactor PanelContainerComponent into a functional component and remove this wrapper
|
|
||||||
// This component only exists so we can use hooks and pass them down to a non-functional component
|
|
||||||
return (
|
|
||||||
<PanelContainerComponent
|
|
||||||
isOpen={isOpen}
|
|
||||||
panelContent={panelContent}
|
|
||||||
headerText={headerText}
|
|
||||||
isConsoleExpanded={isConsoleExpanded}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
import { Icon, Link, Stack, Text } from "@fluentui/react";
|
import { Icon, Link, Stack, Text } from "@fluentui/react";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { useNotificationConsole } from "../../hooks/useNotificationConsole";
|
|
||||||
|
|
||||||
export interface PanelInfoErrorProps {
|
export interface PanelInfoErrorProps {
|
||||||
message: string;
|
message: string;
|
||||||
@@ -8,6 +7,7 @@ export interface PanelInfoErrorProps {
|
|||||||
showErrorDetails: boolean;
|
showErrorDetails: boolean;
|
||||||
link?: string;
|
link?: string;
|
||||||
linkText?: string;
|
linkText?: string;
|
||||||
|
openNotificationConsole?: () => void;
|
||||||
formError?: boolean;
|
formError?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -17,9 +17,8 @@ export const PanelInfoErrorComponent: React.FunctionComponent<PanelInfoErrorProp
|
|||||||
showErrorDetails,
|
showErrorDetails,
|
||||||
link,
|
link,
|
||||||
linkText,
|
linkText,
|
||||||
|
openNotificationConsole,
|
||||||
}: PanelInfoErrorProps): JSX.Element => {
|
}: PanelInfoErrorProps): JSX.Element => {
|
||||||
const expandConsole = useNotificationConsole((state) => state.expandConsole);
|
|
||||||
|
|
||||||
let icon: JSX.Element = <Icon iconName="InfoSolid" className="panelLargeInfoIcon" aria-label="Infomation" />;
|
let icon: JSX.Element = <Icon iconName="InfoSolid" className="panelLargeInfoIcon" aria-label="Infomation" />;
|
||||||
if (messageType === "error") {
|
if (messageType === "error") {
|
||||||
icon = <Icon iconName="StatusErrorFull" className="panelErrorIcon" aria-label="error" />;
|
icon = <Icon iconName="StatusErrorFull" className="panelErrorIcon" aria-label="error" />;
|
||||||
@@ -42,7 +41,7 @@ export const PanelInfoErrorComponent: React.FunctionComponent<PanelInfoErrorProp
|
|||||||
)}
|
)}
|
||||||
</Text>
|
</Text>
|
||||||
{showErrorDetails && (
|
{showErrorDetails && (
|
||||||
<a className="paneErrorLink" role="link" onClick={expandConsole}>
|
<a className="paneErrorLink" role="link" onClick={openNotificationConsole}>
|
||||||
More details
|
More details
|
||||||
</a>
|
</a>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ import React, { FunctionComponent, useEffect, useState } from "react";
|
|||||||
import { HttpStatusCodes } from "../../../Common/Constants";
|
import { HttpStatusCodes } from "../../../Common/Constants";
|
||||||
import { getErrorMessage, getErrorStack, handleError } from "../../../Common/ErrorHandlingUtils";
|
import { getErrorMessage, getErrorStack, handleError } from "../../../Common/ErrorHandlingUtils";
|
||||||
import { useNotebookSnapshotStore } from "../../../hooks/useNotebookSnapshotStore";
|
import { useNotebookSnapshotStore } from "../../../hooks/useNotebookSnapshotStore";
|
||||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
|
||||||
import { JunoClient } from "../../../Juno/JunoClient";
|
import { JunoClient } from "../../../Juno/JunoClient";
|
||||||
import { Action } from "../../../Shared/Telemetry/TelemetryConstants";
|
import { Action } from "../../../Shared/Telemetry/TelemetryConstants";
|
||||||
import { traceFailure, traceStart, traceSuccess } from "../../../Shared/Telemetry/TelemetryProcessor";
|
import { traceFailure, traceStart, traceSuccess } from "../../../Shared/Telemetry/TelemetryProcessor";
|
||||||
@@ -18,6 +17,8 @@ import { PublishNotebookPaneComponent, PublishNotebookPaneProps } from "./Publis
|
|||||||
|
|
||||||
export interface PublishNotebookPaneAProps {
|
export interface PublishNotebookPaneAProps {
|
||||||
explorer: Explorer;
|
explorer: Explorer;
|
||||||
|
closePanel: () => void;
|
||||||
|
openNotificationConsole: () => void;
|
||||||
junoClient: JunoClient;
|
junoClient: JunoClient;
|
||||||
name: string;
|
name: string;
|
||||||
author: string;
|
author: string;
|
||||||
@@ -28,14 +29,13 @@ export interface PublishNotebookPaneAProps {
|
|||||||
export const PublishNotebookPane: FunctionComponent<PublishNotebookPaneAProps> = ({
|
export const PublishNotebookPane: FunctionComponent<PublishNotebookPaneAProps> = ({
|
||||||
explorer: container,
|
explorer: container,
|
||||||
junoClient,
|
junoClient,
|
||||||
|
closePanel,
|
||||||
name,
|
name,
|
||||||
author,
|
author,
|
||||||
notebookContent,
|
notebookContent,
|
||||||
notebookContentRef,
|
notebookContentRef,
|
||||||
onTakeSnapshot,
|
onTakeSnapshot,
|
||||||
}: PublishNotebookPaneAProps): JSX.Element => {
|
}: PublishNotebookPaneAProps): JSX.Element => {
|
||||||
const closeSidePanel = useSidePanel((state) => state.closeSidePanel);
|
|
||||||
|
|
||||||
const [isCodeOfConductAccepted, setIsCodeOfConductAccepted] = useState<boolean>(false);
|
const [isCodeOfConductAccepted, setIsCodeOfConductAccepted] = useState<boolean>(false);
|
||||||
const [content, setContent] = useState<string>("");
|
const [content, setContent] = useState<string>("");
|
||||||
const [formError, setFormError] = useState<string>("");
|
const [formError, setFormError] = useState<string>("");
|
||||||
@@ -152,7 +152,7 @@ export const PublishNotebookPane: FunctionComponent<PublishNotebookPaneAProps> =
|
|||||||
clearPublishingMessage();
|
clearPublishingMessage();
|
||||||
setIsExecuting(false);
|
setIsExecuting(false);
|
||||||
}
|
}
|
||||||
closeSidePanel();
|
closePanel();
|
||||||
};
|
};
|
||||||
|
|
||||||
const createFormError = (formError: string, formErrorDetail: string, area: string): void => {
|
const createFormError = (formError: string, formErrorDetail: string, area: string): void => {
|
||||||
@@ -171,6 +171,7 @@ export const PublishNotebookPane: FunctionComponent<PublishNotebookPaneAProps> =
|
|||||||
isExecuting: isExecuting,
|
isExecuting: isExecuting,
|
||||||
submitButtonText: "Publish",
|
submitButtonText: "Publish",
|
||||||
onSubmit: () => submit(),
|
onSubmit: () => submit(),
|
||||||
|
expandConsole: () => container.expandConsole(),
|
||||||
isSubmitButtonHidden: !isCodeOfConductAccepted,
|
isSubmitButtonHidden: !isCodeOfConductAccepted,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import { PanelInfoErrorComponent } from "../PanelInfoErrorComponent";
|
|||||||
import { PanelLoadingScreen } from "../PanelLoadingScreen";
|
import { PanelLoadingScreen } from "../PanelLoadingScreen";
|
||||||
|
|
||||||
export interface RightPaneFormProps {
|
export interface RightPaneFormProps {
|
||||||
|
expandConsole: () => void;
|
||||||
formError: string;
|
formError: string;
|
||||||
isExecuting: boolean;
|
isExecuting: boolean;
|
||||||
onSubmit: () => void;
|
onSubmit: () => void;
|
||||||
@@ -13,6 +14,7 @@ export interface RightPaneFormProps {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const RightPaneForm: FunctionComponent<RightPaneFormProps> = ({
|
export const RightPaneForm: FunctionComponent<RightPaneFormProps> = ({
|
||||||
|
expandConsole,
|
||||||
formError,
|
formError,
|
||||||
isExecuting,
|
isExecuting,
|
||||||
onSubmit,
|
onSubmit,
|
||||||
@@ -28,7 +30,14 @@ export const RightPaneForm: FunctionComponent<RightPaneFormProps> = ({
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<form className="panelFormWrapper" onSubmit={handleOnSubmit}>
|
<form className="panelFormWrapper" onSubmit={handleOnSubmit}>
|
||||||
{formError && <PanelInfoErrorComponent messageType="error" message={formError} showErrorDetails={true} />}
|
{formError && (
|
||||||
|
<PanelInfoErrorComponent
|
||||||
|
messageType="error"
|
||||||
|
message={formError}
|
||||||
|
showErrorDetails={true}
|
||||||
|
openNotificationConsole={expandConsole}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
{children}
|
{children}
|
||||||
{!isSubmitButtonHidden && <PanelFooterComponent buttonLabel={submitButtonText} />}
|
{!isSubmitButtonHidden && <PanelFooterComponent buttonLabel={submitButtonText} />}
|
||||||
</form>
|
</form>
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ import React, { FunctionComponent, useState } from "react";
|
|||||||
import { Areas, SavedQueries } from "../../../Common/Constants";
|
import { Areas, SavedQueries } from "../../../Common/Constants";
|
||||||
import { getErrorMessage, getErrorStack } from "../../../Common/ErrorHandlingUtils";
|
import { getErrorMessage, getErrorStack } from "../../../Common/ErrorHandlingUtils";
|
||||||
import { Query } from "../../../Contracts/DataModels";
|
import { Query } from "../../../Contracts/DataModels";
|
||||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
|
||||||
import { Action } from "../../../Shared/Telemetry/TelemetryConstants";
|
import { Action } from "../../../Shared/Telemetry/TelemetryConstants";
|
||||||
import { traceFailure, traceStart, traceSuccess } from "../../../Shared/Telemetry/TelemetryProcessor";
|
import { traceFailure, traceStart, traceSuccess } from "../../../Shared/Telemetry/TelemetryProcessor";
|
||||||
import { logConsoleError } from "../../../Utils/NotificationConsoleUtils";
|
import { logConsoleError } from "../../../Utils/NotificationConsoleUtils";
|
||||||
@@ -14,10 +13,13 @@ import { RightPaneForm, RightPaneFormProps } from "../RightPaneForm/RightPaneFor
|
|||||||
|
|
||||||
interface SaveQueryPaneProps {
|
interface SaveQueryPaneProps {
|
||||||
explorer: Explorer;
|
explorer: Explorer;
|
||||||
|
closePanel: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const SaveQueryPane: FunctionComponent<SaveQueryPaneProps> = ({ explorer }: SaveQueryPaneProps): JSX.Element => {
|
export const SaveQueryPane: FunctionComponent<SaveQueryPaneProps> = ({
|
||||||
const closeSidePanel = useSidePanel((state) => state.closeSidePanel);
|
explorer,
|
||||||
|
closePanel,
|
||||||
|
}: SaveQueryPaneProps): JSX.Element => {
|
||||||
const [isLoading, { setTrue: setLoadingTrue, setFalse: setLoadingFalse }] = useBoolean(false);
|
const [isLoading, { setTrue: setLoadingTrue, setFalse: setLoadingFalse }] = useBoolean(false);
|
||||||
const [formError, setFormError] = useState<string>("");
|
const [formError, setFormError] = useState<string>("");
|
||||||
const [queryName, setQueryName] = useState<string>("");
|
const [queryName, setQueryName] = useState<string>("");
|
||||||
@@ -69,7 +71,7 @@ export const SaveQueryPane: FunctionComponent<SaveQueryPaneProps> = ({ explorer
|
|||||||
},
|
},
|
||||||
startKey
|
startKey
|
||||||
);
|
);
|
||||||
closeSidePanel();
|
closePanel();
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
setLoadingFalse();
|
setLoadingFalse();
|
||||||
const errorMessage = getErrorMessage(error);
|
const errorMessage = getErrorMessage(error);
|
||||||
@@ -126,6 +128,7 @@ export const SaveQueryPane: FunctionComponent<SaveQueryPaneProps> = ({ explorer
|
|||||||
};
|
};
|
||||||
|
|
||||||
const props: RightPaneFormProps = {
|
const props: RightPaneFormProps = {
|
||||||
|
expandConsole: () => explorer.expandConsole(),
|
||||||
formError: formError,
|
formError: formError,
|
||||||
isExecuting: isLoading,
|
isExecuting: isLoading,
|
||||||
submitButtonText: canSaveQueries() ? "Save" : "Complete setup",
|
submitButtonText: canSaveQueries() ? "Save" : "Complete setup",
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
exports[`Save Query Pane should render Default properly 1`] = `
|
exports[`Save Query Pane should render Default properly 1`] = `
|
||||||
<RightPaneForm
|
<RightPaneForm
|
||||||
|
expandConsole={[Function]}
|
||||||
formError=""
|
formError=""
|
||||||
isExecuting={false}
|
isExecuting={false}
|
||||||
onSubmit={[Function]}
|
onSubmit={[Function]}
|
||||||
|
|||||||
@@ -3,10 +3,13 @@ import React from "react";
|
|||||||
import { DatabaseAccount } from "../../../Contracts/DataModels";
|
import { DatabaseAccount } from "../../../Contracts/DataModels";
|
||||||
import { updateUserContext } from "../../../UserContext";
|
import { updateUserContext } from "../../../UserContext";
|
||||||
import { SettingsPane } from "./SettingsPane";
|
import { SettingsPane } from "./SettingsPane";
|
||||||
|
const props = {
|
||||||
|
expandConsole: (): void => undefined,
|
||||||
|
closePanel: (): void => undefined,
|
||||||
|
};
|
||||||
describe("Settings Pane", () => {
|
describe("Settings Pane", () => {
|
||||||
it("should render Default properly", () => {
|
it("should render Default properly", () => {
|
||||||
const wrapper = shallow(<SettingsPane />);
|
const wrapper = shallow(<SettingsPane {...props} />);
|
||||||
expect(wrapper).toMatchSnapshot();
|
expect(wrapper).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -18,7 +21,7 @@ describe("Settings Pane", () => {
|
|||||||
},
|
},
|
||||||
} as DatabaseAccount,
|
} as DatabaseAccount,
|
||||||
});
|
});
|
||||||
const wrapper = shallow(<SettingsPane />);
|
const wrapper = shallow(<SettingsPane {...props} />);
|
||||||
expect(wrapper).toMatchSnapshot();
|
expect(wrapper).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -3,15 +3,21 @@ import React, { FunctionComponent, MouseEvent, useState } from "react";
|
|||||||
import * as Constants from "../../../Common/Constants";
|
import * as Constants from "../../../Common/Constants";
|
||||||
import { InfoTooltip } from "../../../Common/Tooltip/InfoTooltip";
|
import { InfoTooltip } from "../../../Common/Tooltip/InfoTooltip";
|
||||||
import { configContext } from "../../../ConfigContext";
|
import { configContext } from "../../../ConfigContext";
|
||||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
|
||||||
import { LocalStorageUtility, StorageKey } from "../../../Shared/StorageUtility";
|
import { LocalStorageUtility, StorageKey } from "../../../Shared/StorageUtility";
|
||||||
import * as StringUtility from "../../../Shared/StringUtility";
|
import * as StringUtility from "../../../Shared/StringUtility";
|
||||||
import { userContext } from "../../../UserContext";
|
import { userContext } from "../../../UserContext";
|
||||||
import { logConsoleInfo } from "../../../Utils/NotificationConsoleUtils";
|
import { logConsoleInfo } from "../../../Utils/NotificationConsoleUtils";
|
||||||
import { RightPaneForm, RightPaneFormProps } from "../RightPaneForm/RightPaneForm";
|
import { RightPaneForm, RightPaneFormProps } from "../RightPaneForm/RightPaneForm";
|
||||||
|
|
||||||
export const SettingsPane: FunctionComponent = () => {
|
export interface SettingsPaneProps {
|
||||||
const closeSidePanel = useSidePanel((state) => state.closeSidePanel);
|
expandConsole: () => void;
|
||||||
|
closePanel: () => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const SettingsPane: FunctionComponent<SettingsPaneProps> = ({
|
||||||
|
expandConsole,
|
||||||
|
closePanel,
|
||||||
|
}: SettingsPaneProps) => {
|
||||||
const [isExecuting, setIsExecuting] = useState<boolean>(false);
|
const [isExecuting, setIsExecuting] = useState<boolean>(false);
|
||||||
const [pageOption, setPageOption] = useState<string>(
|
const [pageOption, setPageOption] = useState<string>(
|
||||||
LocalStorageUtility.getEntryNumber(StorageKey.ActualItemPerPage) === Constants.Queries.unlimitedItemsPerPage
|
LocalStorageUtility.getEntryNumber(StorageKey.ActualItemPerPage) === Constants.Queries.unlimitedItemsPerPage
|
||||||
@@ -82,7 +88,7 @@ export const SettingsPane: FunctionComponent = () => {
|
|||||||
logConsoleInfo(
|
logConsoleInfo(
|
||||||
`Updated query setting to ${LocalStorageUtility.getEntryString(StorageKey.SetPartitionKeyUndefined)}`
|
`Updated query setting to ${LocalStorageUtility.getEntryString(StorageKey.SetPartitionKeyUndefined)}`
|
||||||
);
|
);
|
||||||
closeSidePanel();
|
closePanel();
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -95,6 +101,7 @@ export const SettingsPane: FunctionComponent = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const genericPaneProps: RightPaneFormProps = {
|
const genericPaneProps: RightPaneFormProps = {
|
||||||
|
expandConsole,
|
||||||
formError: "",
|
formError: "",
|
||||||
isExecuting,
|
isExecuting,
|
||||||
submitButtonText: "Apply",
|
submitButtonText: "Apply",
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
exports[`Settings Pane should render Default properly 1`] = `
|
exports[`Settings Pane should render Default properly 1`] = `
|
||||||
<RightPaneForm
|
<RightPaneForm
|
||||||
|
expandConsole={[Function]}
|
||||||
formError=""
|
formError=""
|
||||||
isExecuting={false}
|
isExecuting={false}
|
||||||
onSubmit={[Function]}
|
onSubmit={[Function]}
|
||||||
@@ -148,6 +149,7 @@ exports[`Settings Pane should render Default properly 1`] = `
|
|||||||
|
|
||||||
exports[`Settings Pane should render Gremlin properly 1`] = `
|
exports[`Settings Pane should render Gremlin properly 1`] = `
|
||||||
<RightPaneForm
|
<RightPaneForm
|
||||||
|
expandConsole={[Function]}
|
||||||
formError=""
|
formError=""
|
||||||
isExecuting={false}
|
isExecuting={false}
|
||||||
onSubmit={[Function]}
|
onSubmit={[Function]}
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ import { useBoolean } from "@fluentui/react-hooks";
|
|||||||
import React, { FunctionComponent, KeyboardEvent, useState } from "react";
|
import React, { FunctionComponent, KeyboardEvent, useState } from "react";
|
||||||
import { Areas, NormalizedEventKey } from "../../../Common/Constants";
|
import { Areas, NormalizedEventKey } from "../../../Common/Constants";
|
||||||
import { getErrorMessage, getErrorStack } from "../../../Common/ErrorHandlingUtils";
|
import { getErrorMessage, getErrorStack } from "../../../Common/ErrorHandlingUtils";
|
||||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
|
||||||
import { Action } from "../../../Shared/Telemetry/TelemetryConstants";
|
import { Action } from "../../../Shared/Telemetry/TelemetryConstants";
|
||||||
import * as TelemetryProcessor from "../../../Shared/Telemetry/TelemetryProcessor";
|
import * as TelemetryProcessor from "../../../Shared/Telemetry/TelemetryProcessor";
|
||||||
import { userContext } from "../../../UserContext";
|
import { userContext } from "../../../UserContext";
|
||||||
@@ -13,17 +12,20 @@ import { PanelInfoErrorComponent } from "../PanelInfoErrorComponent";
|
|||||||
import { PanelLoadingScreen } from "../PanelLoadingScreen";
|
import { PanelLoadingScreen } from "../PanelLoadingScreen";
|
||||||
interface SetupNoteBooksPanelProps {
|
interface SetupNoteBooksPanelProps {
|
||||||
explorer: Explorer;
|
explorer: Explorer;
|
||||||
|
closePanel: () => void;
|
||||||
|
openNotificationConsole: () => void;
|
||||||
panelTitle: string;
|
panelTitle: string;
|
||||||
panelDescription: string;
|
panelDescription: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const SetupNoteBooksPanel: FunctionComponent<SetupNoteBooksPanelProps> = ({
|
export const SetupNoteBooksPanel: FunctionComponent<SetupNoteBooksPanelProps> = ({
|
||||||
explorer,
|
explorer,
|
||||||
|
closePanel,
|
||||||
|
openNotificationConsole,
|
||||||
panelTitle,
|
panelTitle,
|
||||||
panelDescription,
|
panelDescription,
|
||||||
}: SetupNoteBooksPanelProps): JSX.Element => {
|
}: SetupNoteBooksPanelProps): JSX.Element => {
|
||||||
const closeSidePanel = useSidePanel((state) => state.closeSidePanel);
|
const title = panelTitle;
|
||||||
|
|
||||||
const description = panelDescription;
|
const description = panelDescription;
|
||||||
const [isLoading, { setTrue: setLoadingTrue, setFalse: setLoadingFalse }] = useBoolean(false);
|
const [isLoading, { setTrue: setLoadingTrue, setFalse: setLoadingFalse }] = useBoolean(false);
|
||||||
const [errorMessage, setErrorMessage] = useState<string>("");
|
const [errorMessage, setErrorMessage] = useState<string>("");
|
||||||
@@ -49,7 +51,7 @@ export const SetupNoteBooksPanel: FunctionComponent<SetupNoteBooksPanelProps> =
|
|||||||
|
|
||||||
const startKey: number = TelemetryProcessor.traceStart(Action.CreateNotebookWorkspace, {
|
const startKey: number = TelemetryProcessor.traceStart(Action.CreateNotebookWorkspace, {
|
||||||
dataExplorerArea: Areas.ContextualPane,
|
dataExplorerArea: Areas.ContextualPane,
|
||||||
paneTitle: panelTitle,
|
paneTitle: title,
|
||||||
});
|
});
|
||||||
|
|
||||||
const clear = NotificationConsoleUtils.logConsoleProgress("Creating a new default notebook workspace");
|
const clear = NotificationConsoleUtils.logConsoleProgress("Creating a new default notebook workspace");
|
||||||
@@ -62,13 +64,13 @@ export const SetupNoteBooksPanel: FunctionComponent<SetupNoteBooksPanelProps> =
|
|||||||
);
|
);
|
||||||
explorer.isAccountReady.valueHasMutated(); // re-trigger init notebooks
|
explorer.isAccountReady.valueHasMutated(); // re-trigger init notebooks
|
||||||
|
|
||||||
closeSidePanel();
|
closePanel();
|
||||||
|
|
||||||
TelemetryProcessor.traceSuccess(
|
TelemetryProcessor.traceSuccess(
|
||||||
Action.CreateNotebookWorkspace,
|
Action.CreateNotebookWorkspace,
|
||||||
{
|
{
|
||||||
dataExplorerArea: Areas.ContextualPane,
|
dataExplorerArea: Areas.ContextualPane,
|
||||||
paneTitle: panelTitle,
|
paneTitle: title,
|
||||||
},
|
},
|
||||||
startKey
|
startKey
|
||||||
);
|
);
|
||||||
@@ -79,7 +81,7 @@ export const SetupNoteBooksPanel: FunctionComponent<SetupNoteBooksPanelProps> =
|
|||||||
Action.CreateNotebookWorkspace,
|
Action.CreateNotebookWorkspace,
|
||||||
{
|
{
|
||||||
dataExplorerArea: Areas.ContextualPane,
|
dataExplorerArea: Areas.ContextualPane,
|
||||||
paneTitle: panelTitle,
|
paneTitle: title,
|
||||||
error: errorMessage,
|
error: errorMessage,
|
||||||
errorStack: getErrorStack(error),
|
errorStack: getErrorStack(error),
|
||||||
},
|
},
|
||||||
@@ -97,7 +99,12 @@ export const SetupNoteBooksPanel: FunctionComponent<SetupNoteBooksPanelProps> =
|
|||||||
return (
|
return (
|
||||||
<form className="panelFormWrapper">
|
<form className="panelFormWrapper">
|
||||||
{errorMessage && (
|
{errorMessage && (
|
||||||
<PanelInfoErrorComponent message={errorMessage} messageType="error" showErrorDetails={showErrorDetails} />
|
<PanelInfoErrorComponent
|
||||||
|
message={errorMessage}
|
||||||
|
messageType="error"
|
||||||
|
showErrorDetails={showErrorDetails}
|
||||||
|
openNotificationConsole={openNotificationConsole}
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
<div className="panelMainContent">
|
<div className="panelMainContent">
|
||||||
<div className="pkPadding">
|
<div className="pkPadding">
|
||||||
|
|||||||
@@ -89,6 +89,7 @@ export const StringInputPane: FunctionComponent<StringInputPanelProps> = ({
|
|||||||
isExecuting: isExecuting,
|
isExecuting: isExecuting,
|
||||||
submitButtonText: submitButtonLabel,
|
submitButtonText: submitButtonLabel,
|
||||||
onSubmit: submit,
|
onSubmit: submit,
|
||||||
|
expandConsole: () => container.expandConsole(),
|
||||||
};
|
};
|
||||||
return (
|
return (
|
||||||
<RightPaneForm {...props}>
|
<RightPaneForm {...props}>
|
||||||
|
|||||||
@@ -7,32 +7,837 @@ exports[`StringInput Pane should render Create new directory properly 1`] = `
|
|||||||
errorMessage="Could not create directory "
|
errorMessage="Could not create directory "
|
||||||
explorer={
|
explorer={
|
||||||
Explorer {
|
Explorer {
|
||||||
|
"_isAfecFeatureRegistered": [Function],
|
||||||
"_isInitializingNotebooks": false,
|
"_isInitializingNotebooks": false,
|
||||||
|
"_refreshSparkEnabledStateForAccount": [Function],
|
||||||
"_resetNotebookWorkspace": [Function],
|
"_resetNotebookWorkspace": [Function],
|
||||||
|
"addCollectionText": [Function],
|
||||||
|
"arcadiaToken": [Function],
|
||||||
|
"canExceedMaximumValue": [Function],
|
||||||
"canSaveQueries": [Function],
|
"canSaveQueries": [Function],
|
||||||
|
"closeSidePanel": undefined,
|
||||||
"collapsedResourceTreeWidth": 36,
|
"collapsedResourceTreeWidth": 36,
|
||||||
|
"collectionCreationDefaults": Object {
|
||||||
|
"storage": "100",
|
||||||
|
"throughput": Object {
|
||||||
|
"fixed": 400,
|
||||||
|
"shared": 400,
|
||||||
|
"unlimited": 400,
|
||||||
|
"unlimitedmax": 1000000,
|
||||||
|
"unlimitedmin": 400,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"collectionTitle": [Function],
|
||||||
|
"collectionTreeNodeAltText": [Function],
|
||||||
|
"commandBarComponentAdapter": CommandBarComponentAdapter {
|
||||||
|
"container": [Circular],
|
||||||
|
"isNotebookTabActive": [Function],
|
||||||
|
"parameters": [Function],
|
||||||
|
"tabsButtons": Array [],
|
||||||
|
},
|
||||||
"databases": [Function],
|
"databases": [Function],
|
||||||
|
"deleteCollectionText": [Function],
|
||||||
|
"deleteDatabaseText": [Function],
|
||||||
|
"gitHubClient": GitHubClient {
|
||||||
|
"errorCallback": [Function],
|
||||||
|
"ocktokit": OctokitWithDefaults {
|
||||||
|
"actions": Object {
|
||||||
|
"addSelectedRepoToOrgSecret": [Function],
|
||||||
|
"cancelWorkflowRun": [Function],
|
||||||
|
"createOrUpdateOrgSecret": [Function],
|
||||||
|
"createOrUpdateRepoSecret": [Function],
|
||||||
|
"createOrUpdateSecretForRepo": [Function],
|
||||||
|
"createRegistrationToken": [Function],
|
||||||
|
"createRegistrationTokenForOrg": [Function],
|
||||||
|
"createRegistrationTokenForRepo": [Function],
|
||||||
|
"createRemoveToken": [Function],
|
||||||
|
"createRemoveTokenForOrg": [Function],
|
||||||
|
"createRemoveTokenForRepo": [Function],
|
||||||
|
"deleteArtifact": [Function],
|
||||||
|
"deleteOrgSecret": [Function],
|
||||||
|
"deleteRepoSecret": [Function],
|
||||||
|
"deleteSecretFromRepo": [Function],
|
||||||
|
"deleteSelfHostedRunnerFromOrg": [Function],
|
||||||
|
"deleteSelfHostedRunnerFromRepo": [Function],
|
||||||
|
"deleteWorkflowRunLogs": [Function],
|
||||||
|
"downloadArtifact": [Function],
|
||||||
|
"downloadJobLogsForWorkflowRun": [Function],
|
||||||
|
"downloadWorkflowJobLogs": [Function],
|
||||||
|
"downloadWorkflowRunLogs": [Function],
|
||||||
|
"getArtifact": [Function],
|
||||||
|
"getJobForWorkflowRun": [Function],
|
||||||
|
"getOrgPublicKey": [Function],
|
||||||
|
"getOrgSecret": [Function],
|
||||||
|
"getPublicKey": [Function],
|
||||||
|
"getRepoPublicKey": [Function],
|
||||||
|
"getRepoSecret": [Function],
|
||||||
|
"getSecret": [Function],
|
||||||
|
"getSelfHostedRunner": [Function],
|
||||||
|
"getSelfHostedRunnerForOrg": [Function],
|
||||||
|
"getSelfHostedRunnerForRepo": [Function],
|
||||||
|
"getWorkflow": [Function],
|
||||||
|
"getWorkflowJob": [Function],
|
||||||
|
"getWorkflowRun": [Function],
|
||||||
|
"getWorkflowRunUsage": [Function],
|
||||||
|
"getWorkflowUsage": [Function],
|
||||||
|
"listArtifactsForRepo": [Function],
|
||||||
|
"listDownloadsForSelfHostedRunnerApplication": [Function],
|
||||||
|
"listJobsForWorkflowRun": [Function],
|
||||||
|
"listOrgSecrets": [Function],
|
||||||
|
"listRepoSecrets": [Function],
|
||||||
|
"listRepoWorkflowRuns": [Function],
|
||||||
|
"listRepoWorkflows": [Function],
|
||||||
|
"listRunnerApplicationsForOrg": [Function],
|
||||||
|
"listRunnerApplicationsForRepo": [Function],
|
||||||
|
"listSecretsForRepo": [Function],
|
||||||
|
"listSelectedReposForOrgSecret": [Function],
|
||||||
|
"listSelfHostedRunnersForOrg": [Function],
|
||||||
|
"listSelfHostedRunnersForRepo": [Function],
|
||||||
|
"listWorkflowJobLogs": [Function],
|
||||||
|
"listWorkflowRunArtifacts": [Function],
|
||||||
|
"listWorkflowRunLogs": [Function],
|
||||||
|
"listWorkflowRuns": [Function],
|
||||||
|
"listWorkflowRunsForRepo": [Function],
|
||||||
|
"reRunWorkflow": [Function],
|
||||||
|
"removeSelectedRepoFromOrgSecret": [Function],
|
||||||
|
"removeSelfHostedRunner": [Function],
|
||||||
|
"setSelectedReposForOrgSecret": [Function],
|
||||||
|
},
|
||||||
|
"activity": Object {
|
||||||
|
"checkRepoIsStarredByAuthenticatedUser": [Function],
|
||||||
|
"checkStarringRepo": [Function],
|
||||||
|
"deleteRepoSubscription": [Function],
|
||||||
|
"deleteThreadSubscription": [Function],
|
||||||
|
"getFeeds": [Function],
|
||||||
|
"getRepoSubscription": [Function],
|
||||||
|
"getThread": [Function],
|
||||||
|
"getThreadSubscription": [Function],
|
||||||
|
"getThreadSubscriptionForAuthenticatedUser": [Function],
|
||||||
|
"listEventsForAuthenticatedUser": [Function],
|
||||||
|
"listEventsForOrg": [Function],
|
||||||
|
"listEventsForUser": [Function],
|
||||||
|
"listFeeds": [Function],
|
||||||
|
"listNotifications": [Function],
|
||||||
|
"listNotificationsForAuthenticatedUser": [Function],
|
||||||
|
"listNotificationsForRepo": [Function],
|
||||||
|
"listOrgEventsForAuthenticatedUser": [Function],
|
||||||
|
"listPublicEvents": [Function],
|
||||||
|
"listPublicEventsForOrg": [Function],
|
||||||
|
"listPublicEventsForRepoNetwork": [Function],
|
||||||
|
"listPublicEventsForUser": [Function],
|
||||||
|
"listPublicOrgEvents": [Function],
|
||||||
|
"listReceivedEventsForUser": [Function],
|
||||||
|
"listReceivedPublicEventsForUser": [Function],
|
||||||
|
"listRepoEvents": [Function],
|
||||||
|
"listRepoNotificationsForAuthenticatedUser": [Function],
|
||||||
|
"listReposStarredByAuthenticatedUser": [Function],
|
||||||
|
"listReposStarredByUser": [Function],
|
||||||
|
"listReposWatchedByUser": [Function],
|
||||||
|
"listStargazersForRepo": [Function],
|
||||||
|
"listWatchedReposForAuthenticatedUser": [Function],
|
||||||
|
"listWatchersForRepo": [Function],
|
||||||
|
"markAsRead": [Function],
|
||||||
|
"markNotificationsAsRead": [Function],
|
||||||
|
"markNotificationsAsReadForRepo": [Function],
|
||||||
|
"markRepoNotificationsAsRead": [Function],
|
||||||
|
"markThreadAsRead": [Function],
|
||||||
|
"setRepoSubscription": [Function],
|
||||||
|
"setThreadSubscription": [Function],
|
||||||
|
"starRepo": [Function],
|
||||||
|
"starRepoForAuthenticatedUser": [Function],
|
||||||
|
"unstarRepo": [Function],
|
||||||
|
"unstarRepoForAuthenticatedUser": [Function],
|
||||||
|
},
|
||||||
|
"apps": Object {
|
||||||
|
"addRepoToInstallation": [Function],
|
||||||
|
"checkAccountIsAssociatedWithAny": [Function],
|
||||||
|
"checkAccountIsAssociatedWithAnyStubbed": [Function],
|
||||||
|
"checkToken": [Function],
|
||||||
|
"createContentAttachment": [Function],
|
||||||
|
"createFromManifest": [Function],
|
||||||
|
"createInstallationAccessToken": [Function],
|
||||||
|
"createInstallationToken": [Function],
|
||||||
|
"deleteAuthorization": [Function],
|
||||||
|
"deleteInstallation": [Function],
|
||||||
|
"deleteToken": [Function],
|
||||||
|
"getAuthenticated": [Function],
|
||||||
|
"getBySlug": [Function],
|
||||||
|
"getInstallation": [Function],
|
||||||
|
"getOrgInstallation": [Function],
|
||||||
|
"getRepoInstallation": [Function],
|
||||||
|
"getSubscriptionPlanForAccount": [Function],
|
||||||
|
"getSubscriptionPlanForAccountStubbed": [Function],
|
||||||
|
"getUserInstallation": [Function],
|
||||||
|
"listAccountsForPlan": [Function],
|
||||||
|
"listAccountsForPlanStubbed": [Function],
|
||||||
|
"listAccountsUserOrOrgOnPlan": [Function],
|
||||||
|
"listAccountsUserOrOrgOnPlanStubbed": [Function],
|
||||||
|
"listInstallationReposForAuthenticatedUser": [Function],
|
||||||
|
"listInstallations": [Function],
|
||||||
|
"listInstallationsForAuthenticatedUser": [Function],
|
||||||
|
"listMarketplacePurchasesForAuthenticatedUser": [Function],
|
||||||
|
"listMarketplacePurchasesForAuthenticatedUserStubbed": [Function],
|
||||||
|
"listPlans": [Function],
|
||||||
|
"listPlansStubbed": [Function],
|
||||||
|
"listRepos": [Function],
|
||||||
|
"listReposAccessibleToInstallation": [Function],
|
||||||
|
"listSubscriptionsForAuthenticatedUser": [Function],
|
||||||
|
"listSubscriptionsForAuthenticatedUserStubbed": [Function],
|
||||||
|
"removeRepoFromInstallation": [Function],
|
||||||
|
"resetToken": [Function],
|
||||||
|
"revokeInstallationAccessToken": [Function],
|
||||||
|
"revokeInstallationToken": [Function],
|
||||||
|
"suspendInstallation": [Function],
|
||||||
|
"unsuspendInstallation": [Function],
|
||||||
|
},
|
||||||
|
"auth": [Function],
|
||||||
|
"checks": Object {
|
||||||
|
"create": [Function],
|
||||||
|
"createSuite": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getSuite": [Function],
|
||||||
|
"listAnnotations": [Function],
|
||||||
|
"listForRef": [Function],
|
||||||
|
"listForSuite": [Function],
|
||||||
|
"listSuitesForRef": [Function],
|
||||||
|
"rerequestSuite": [Function],
|
||||||
|
"setSuitesPreferences": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
},
|
||||||
|
"codeScanning": Object {
|
||||||
|
"getAlert": [Function],
|
||||||
|
"listAlertsForRepo": [Function],
|
||||||
|
},
|
||||||
|
"codesOfConduct": Object {
|
||||||
|
"getAllCodesOfConduct": [Function],
|
||||||
|
"getConductCode": [Function],
|
||||||
|
"getForRepo": [Function],
|
||||||
|
"listConductCodes": [Function],
|
||||||
|
},
|
||||||
|
"emojis": Object {
|
||||||
|
"get": [Function],
|
||||||
|
},
|
||||||
|
"gists": Object {
|
||||||
|
"checkIsStarred": [Function],
|
||||||
|
"create": [Function],
|
||||||
|
"createComment": [Function],
|
||||||
|
"delete": [Function],
|
||||||
|
"deleteComment": [Function],
|
||||||
|
"fork": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getComment": [Function],
|
||||||
|
"getRevision": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listComments": [Function],
|
||||||
|
"listCommits": [Function],
|
||||||
|
"listForUser": [Function],
|
||||||
|
"listForks": [Function],
|
||||||
|
"listPublic": [Function],
|
||||||
|
"listPublicForUser": [Function],
|
||||||
|
"listStarred": [Function],
|
||||||
|
"star": [Function],
|
||||||
|
"unstar": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
"updateComment": [Function],
|
||||||
|
},
|
||||||
|
"git": Object {
|
||||||
|
"createBlob": [Function],
|
||||||
|
"createCommit": [Function],
|
||||||
|
"createRef": [Function],
|
||||||
|
"createTag": [Function],
|
||||||
|
"createTree": [Function],
|
||||||
|
"deleteRef": [Function],
|
||||||
|
"getBlob": [Function],
|
||||||
|
"getCommit": [Function],
|
||||||
|
"getRef": [Function],
|
||||||
|
"getTag": [Function],
|
||||||
|
"getTree": [Function],
|
||||||
|
"listMatchingRefs": [Function],
|
||||||
|
"updateRef": [Function],
|
||||||
|
},
|
||||||
|
"gitignore": Object {
|
||||||
|
"getAllTemplates": [Function],
|
||||||
|
"getTemplate": [Function],
|
||||||
|
"listTemplates": [Function],
|
||||||
|
},
|
||||||
|
"graphql": [Function],
|
||||||
|
"hook": [Function],
|
||||||
|
"interactions": Object {
|
||||||
|
"addOrUpdateRestrictionsForOrg": [Function],
|
||||||
|
"addOrUpdateRestrictionsForRepo": [Function],
|
||||||
|
"getRestrictionsForOrg": [Function],
|
||||||
|
"getRestrictionsForRepo": [Function],
|
||||||
|
"removeRestrictionsForOrg": [Function],
|
||||||
|
"removeRestrictionsForRepo": [Function],
|
||||||
|
"setRestrictionsForOrg": [Function],
|
||||||
|
"setRestrictionsForRepo": [Function],
|
||||||
|
},
|
||||||
|
"issues": Object {
|
||||||
|
"addAssignees": [Function],
|
||||||
|
"addLabels": [Function],
|
||||||
|
"checkAssignee": [Function],
|
||||||
|
"checkUserCanBeAssigned": [Function],
|
||||||
|
"create": [Function],
|
||||||
|
"createComment": [Function],
|
||||||
|
"createLabel": [Function],
|
||||||
|
"createMilestone": [Function],
|
||||||
|
"deleteComment": [Function],
|
||||||
|
"deleteLabel": [Function],
|
||||||
|
"deleteMilestone": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getComment": [Function],
|
||||||
|
"getEvent": [Function],
|
||||||
|
"getLabel": [Function],
|
||||||
|
"getMilestone": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listAssignees": [Function],
|
||||||
|
"listComments": [Function],
|
||||||
|
"listCommentsForRepo": [Function],
|
||||||
|
"listEvents": [Function],
|
||||||
|
"listEventsForRepo": [Function],
|
||||||
|
"listEventsForTimeline": [Function],
|
||||||
|
"listForAuthenticatedUser": [Function],
|
||||||
|
"listForOrg": [Function],
|
||||||
|
"listForRepo": [Function],
|
||||||
|
"listLabelsForMilestone": [Function],
|
||||||
|
"listLabelsForRepo": [Function],
|
||||||
|
"listLabelsOnIssue": [Function],
|
||||||
|
"listMilestones": [Function],
|
||||||
|
"listMilestonesForRepo": [Function],
|
||||||
|
"lock": [Function],
|
||||||
|
"removeAllLabels": [Function],
|
||||||
|
"removeAssignees": [Function],
|
||||||
|
"removeLabel": [Function],
|
||||||
|
"removeLabels": [Function],
|
||||||
|
"replaceAllLabels": [Function],
|
||||||
|
"replaceLabels": [Function],
|
||||||
|
"setLabels": [Function],
|
||||||
|
"unlock": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
"updateComment": [Function],
|
||||||
|
"updateLabel": [Function],
|
||||||
|
"updateMilestone": [Function],
|
||||||
|
},
|
||||||
|
"licenses": Object {
|
||||||
|
"get": [Function],
|
||||||
|
"getAllCommonlyUsed": [Function],
|
||||||
|
"getForRepo": [Function],
|
||||||
|
"listCommonlyUsed": [Function],
|
||||||
|
},
|
||||||
|
"log": Object {
|
||||||
|
"debug": [Function],
|
||||||
|
"error": [Function],
|
||||||
|
"info": [Function],
|
||||||
|
"warn": [Function],
|
||||||
|
},
|
||||||
|
"markdown": Object {
|
||||||
|
"render": [Function],
|
||||||
|
"renderRaw": [Function],
|
||||||
|
},
|
||||||
|
"meta": Object {
|
||||||
|
"get": [Function],
|
||||||
|
},
|
||||||
|
"migrations": Object {
|
||||||
|
"cancelImport": [Function],
|
||||||
|
"deleteArchiveForAuthenticatedUser": [Function],
|
||||||
|
"deleteArchiveForOrg": [Function],
|
||||||
|
"downloadArchiveForOrg": [Function],
|
||||||
|
"getArchiveForAuthenticatedUser": [Function],
|
||||||
|
"getCommitAuthors": [Function],
|
||||||
|
"getImportProgress": [Function],
|
||||||
|
"getImportStatus": [Function],
|
||||||
|
"getLargeFiles": [Function],
|
||||||
|
"getStatusForAuthenticatedUser": [Function],
|
||||||
|
"getStatusForOrg": [Function],
|
||||||
|
"listForAuthenticatedUser": [Function],
|
||||||
|
"listForOrg": [Function],
|
||||||
|
"listReposForOrg": [Function],
|
||||||
|
"listReposForUser": [Function],
|
||||||
|
"mapCommitAuthor": [Function],
|
||||||
|
"setLfsPreference": [Function],
|
||||||
|
"startForAuthenticatedUser": [Function],
|
||||||
|
"startForOrg": [Function],
|
||||||
|
"startImport": [Function],
|
||||||
|
"unlockRepoForAuthenticatedUser": [Function],
|
||||||
|
"unlockRepoForOrg": [Function],
|
||||||
|
"updateImport": [Function],
|
||||||
|
},
|
||||||
|
"orgs": Object {
|
||||||
|
"addOrUpdateMembership": [Function],
|
||||||
|
"blockUser": [Function],
|
||||||
|
"checkBlockedUser": [Function],
|
||||||
|
"checkMembership": [Function],
|
||||||
|
"checkMembershipForUser": [Function],
|
||||||
|
"checkPublicMembership": [Function],
|
||||||
|
"checkPublicMembershipForUser": [Function],
|
||||||
|
"concealMembership": [Function],
|
||||||
|
"convertMemberToOutsideCollaborator": [Function],
|
||||||
|
"createHook": [Function],
|
||||||
|
"createInvitation": [Function],
|
||||||
|
"createWebhook": [Function],
|
||||||
|
"deleteHook": [Function],
|
||||||
|
"deleteWebhook": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getHook": [Function],
|
||||||
|
"getMembership": [Function],
|
||||||
|
"getMembershipForAuthenticatedUser": [Function],
|
||||||
|
"getMembershipForUser": [Function],
|
||||||
|
"getWebhook": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listAppInstallations": [Function],
|
||||||
|
"listBlockedUsers": [Function],
|
||||||
|
"listForAuthenticatedUser": [Function],
|
||||||
|
"listForUser": [Function],
|
||||||
|
"listHooks": [Function],
|
||||||
|
"listInstallations": [Function],
|
||||||
|
"listInvitationTeams": [Function],
|
||||||
|
"listMembers": [Function],
|
||||||
|
"listMemberships": [Function],
|
||||||
|
"listMembershipsForAuthenticatedUser": [Function],
|
||||||
|
"listOutsideCollaborators": [Function],
|
||||||
|
"listPendingInvitations": [Function],
|
||||||
|
"listPublicMembers": [Function],
|
||||||
|
"listWebhooks": [Function],
|
||||||
|
"pingHook": [Function],
|
||||||
|
"pingWebhook": [Function],
|
||||||
|
"publicizeMembership": [Function],
|
||||||
|
"removeMember": [Function],
|
||||||
|
"removeMembership": [Function],
|
||||||
|
"removeMembershipForUser": [Function],
|
||||||
|
"removeOutsideCollaborator": [Function],
|
||||||
|
"removePublicMembershipForAuthenticatedUser": [Function],
|
||||||
|
"setMembershipForUser": [Function],
|
||||||
|
"setPublicMembershipForAuthenticatedUser": [Function],
|
||||||
|
"unblockUser": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
"updateHook": [Function],
|
||||||
|
"updateMembership": [Function],
|
||||||
|
"updateMembershipForAuthenticatedUser": [Function],
|
||||||
|
"updateWebhook": [Function],
|
||||||
|
},
|
||||||
|
"paginate": [Function],
|
||||||
|
"projects": Object {
|
||||||
|
"addCollaborator": [Function],
|
||||||
|
"createCard": [Function],
|
||||||
|
"createColumn": [Function],
|
||||||
|
"createForAuthenticatedUser": [Function],
|
||||||
|
"createForOrg": [Function],
|
||||||
|
"createForRepo": [Function],
|
||||||
|
"delete": [Function],
|
||||||
|
"deleteCard": [Function],
|
||||||
|
"deleteColumn": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getCard": [Function],
|
||||||
|
"getColumn": [Function],
|
||||||
|
"getPermissionForUser": [Function],
|
||||||
|
"listCards": [Function],
|
||||||
|
"listCollaborators": [Function],
|
||||||
|
"listColumns": [Function],
|
||||||
|
"listForOrg": [Function],
|
||||||
|
"listForRepo": [Function],
|
||||||
|
"listForUser": [Function],
|
||||||
|
"moveCard": [Function],
|
||||||
|
"moveColumn": [Function],
|
||||||
|
"removeCollaborator": [Function],
|
||||||
|
"reviewUserPermissionLevel": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
"updateCard": [Function],
|
||||||
|
"updateColumn": [Function],
|
||||||
|
},
|
||||||
|
"pulls": Object {
|
||||||
|
"checkIfMerged": [Function],
|
||||||
|
"create": [Function],
|
||||||
|
"createComment": [Function],
|
||||||
|
"createReplyForReviewComment": [Function],
|
||||||
|
"createReview": [Function],
|
||||||
|
"createReviewComment": [Function],
|
||||||
|
"createReviewCommentReply": [Function],
|
||||||
|
"createReviewRequest": [Function],
|
||||||
|
"deleteComment": [Function],
|
||||||
|
"deletePendingReview": [Function],
|
||||||
|
"deleteReviewComment": [Function],
|
||||||
|
"deleteReviewRequest": [Function],
|
||||||
|
"dismissReview": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getComment": [Function],
|
||||||
|
"getCommentsForReview": [Function],
|
||||||
|
"getReview": [Function],
|
||||||
|
"getReviewComment": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listComments": [Function],
|
||||||
|
"listCommentsForRepo": [Function],
|
||||||
|
"listCommentsForReview": [Function],
|
||||||
|
"listCommits": [Function],
|
||||||
|
"listFiles": [Function],
|
||||||
|
"listRequestedReviewers": [Function],
|
||||||
|
"listReviewComments": [Function],
|
||||||
|
"listReviewCommentsForRepo": [Function],
|
||||||
|
"listReviewRequests": [Function],
|
||||||
|
"listReviews": [Function],
|
||||||
|
"merge": [Function],
|
||||||
|
"removeRequestedReviewers": [Function],
|
||||||
|
"requestReviewers": [Function],
|
||||||
|
"submitReview": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
"updateBranch": [Function],
|
||||||
|
"updateComment": [Function],
|
||||||
|
"updateReview": [Function],
|
||||||
|
"updateReviewComment": [Function],
|
||||||
|
},
|
||||||
|
"rateLimit": Object {
|
||||||
|
"get": [Function],
|
||||||
|
},
|
||||||
|
"reactions": Object {
|
||||||
|
"createForCommitComment": [Function],
|
||||||
|
"createForIssue": [Function],
|
||||||
|
"createForIssueComment": [Function],
|
||||||
|
"createForPullRequestReviewComment": [Function],
|
||||||
|
"createForTeamDiscussionCommentInOrg": [Function],
|
||||||
|
"createForTeamDiscussionInOrg": [Function],
|
||||||
|
"delete": [Function],
|
||||||
|
"deleteForCommitComment": [Function],
|
||||||
|
"deleteForIssue": [Function],
|
||||||
|
"deleteForIssueComment": [Function],
|
||||||
|
"deleteForPullRequestComment": [Function],
|
||||||
|
"deleteForTeamDiscussion": [Function],
|
||||||
|
"deleteForTeamDiscussionComment": [Function],
|
||||||
|
"deleteLegacy": [Function],
|
||||||
|
"listForCommitComment": [Function],
|
||||||
|
"listForIssue": [Function],
|
||||||
|
"listForIssueComment": [Function],
|
||||||
|
"listForPullRequestReviewComment": [Function],
|
||||||
|
"listForTeamDiscussionCommentInOrg": [Function],
|
||||||
|
"listForTeamDiscussionInOrg": [Function],
|
||||||
|
},
|
||||||
|
"repos": Object {
|
||||||
|
"acceptInvitation": [Function],
|
||||||
|
"addAppAccessRestrictions": [Function],
|
||||||
|
"addCollaborator": [Function],
|
||||||
|
"addDeployKey": [Function],
|
||||||
|
"addProtectedBranchAdminEnforcement": [Function],
|
||||||
|
"addProtectedBranchAppRestrictions": [Function],
|
||||||
|
"addProtectedBranchRequiredSignatures": [Function],
|
||||||
|
"addProtectedBranchRequiredStatusChecksContexts": [Function],
|
||||||
|
"addProtectedBranchTeamRestrictions": [Function],
|
||||||
|
"addProtectedBranchUserRestrictions": [Function],
|
||||||
|
"addStatusCheckContexts": [Function],
|
||||||
|
"addTeamAccessRestrictions": [Function],
|
||||||
|
"addUserAccessRestrictions": [Function],
|
||||||
|
"checkCollaborator": [Function],
|
||||||
|
"checkVulnerabilityAlerts": [Function],
|
||||||
|
"compareCommits": [Function],
|
||||||
|
"createCommitComment": [Function],
|
||||||
|
"createCommitSignatureProtection": [Function],
|
||||||
|
"createCommitStatus": [Function],
|
||||||
|
"createDeployKey": [Function],
|
||||||
|
"createDeployment": [Function],
|
||||||
|
"createDeploymentStatus": [Function],
|
||||||
|
"createDispatchEvent": [Function],
|
||||||
|
"createForAuthenticatedUser": [Function],
|
||||||
|
"createFork": [Function],
|
||||||
|
"createHook": [Function],
|
||||||
|
"createInOrg": [Function],
|
||||||
|
"createOrUpdateFile": [Function],
|
||||||
|
"createOrUpdateFileContents": [Function],
|
||||||
|
"createPagesSite": [Function],
|
||||||
|
"createRelease": [Function],
|
||||||
|
"createStatus": [Function],
|
||||||
|
"createUsingTemplate": [Function],
|
||||||
|
"createWebhook": [Function],
|
||||||
|
"declineInvitation": [Function],
|
||||||
|
"delete": [Function],
|
||||||
|
"deleteAccessRestrictions": [Function],
|
||||||
|
"deleteAdminBranchProtection": [Function],
|
||||||
|
"deleteBranchProtection": [Function],
|
||||||
|
"deleteCommitComment": [Function],
|
||||||
|
"deleteCommitSignatureProtection": [Function],
|
||||||
|
"deleteDeployKey": [Function],
|
||||||
|
"deleteDeployment": [Function],
|
||||||
|
"deleteDownload": [Function],
|
||||||
|
"deleteFile": [Function],
|
||||||
|
"deleteHook": [Function],
|
||||||
|
"deleteInvitation": [Function],
|
||||||
|
"deletePagesSite": [Function],
|
||||||
|
"deletePullRequestReviewProtection": [Function],
|
||||||
|
"deleteRelease": [Function],
|
||||||
|
"deleteReleaseAsset": [Function],
|
||||||
|
"deleteWebhook": [Function],
|
||||||
|
"disableAutomatedSecurityFixes": [Function],
|
||||||
|
"disablePagesSite": [Function],
|
||||||
|
"disableVulnerabilityAlerts": [Function],
|
||||||
|
"downloadArchive": [Function],
|
||||||
|
"enableAutomatedSecurityFixes": [Function],
|
||||||
|
"enablePagesSite": [Function],
|
||||||
|
"enableVulnerabilityAlerts": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getAccessRestrictions": [Function],
|
||||||
|
"getAdminBranchProtection": [Function],
|
||||||
|
"getAllStatusCheckContexts": [Function],
|
||||||
|
"getAllTopics": [Function],
|
||||||
|
"getAppsWithAccessToProtectedBranch": [Function],
|
||||||
|
"getArchiveLink": [Function],
|
||||||
|
"getBranch": [Function],
|
||||||
|
"getBranchProtection": [Function],
|
||||||
|
"getClones": [Function],
|
||||||
|
"getCodeFrequencyStats": [Function],
|
||||||
|
"getCollaboratorPermissionLevel": [Function],
|
||||||
|
"getCombinedStatusForRef": [Function],
|
||||||
|
"getCommit": [Function],
|
||||||
|
"getCommitActivityStats": [Function],
|
||||||
|
"getCommitComment": [Function],
|
||||||
|
"getCommitSignatureProtection": [Function],
|
||||||
|
"getCommunityProfileMetrics": [Function],
|
||||||
|
"getContent": [Function],
|
||||||
|
"getContents": [Function],
|
||||||
|
"getContributorsStats": [Function],
|
||||||
|
"getDeployKey": [Function],
|
||||||
|
"getDeployment": [Function],
|
||||||
|
"getDeploymentStatus": [Function],
|
||||||
|
"getDownload": [Function],
|
||||||
|
"getHook": [Function],
|
||||||
|
"getLatestPagesBuild": [Function],
|
||||||
|
"getLatestRelease": [Function],
|
||||||
|
"getPages": [Function],
|
||||||
|
"getPagesBuild": [Function],
|
||||||
|
"getParticipationStats": [Function],
|
||||||
|
"getProtectedBranchAdminEnforcement": [Function],
|
||||||
|
"getProtectedBranchPullRequestReviewEnforcement": [Function],
|
||||||
|
"getProtectedBranchRequiredSignatures": [Function],
|
||||||
|
"getProtectedBranchRequiredStatusChecks": [Function],
|
||||||
|
"getProtectedBranchRestrictions": [Function],
|
||||||
|
"getPullRequestReviewProtection": [Function],
|
||||||
|
"getPunchCardStats": [Function],
|
||||||
|
"getReadme": [Function],
|
||||||
|
"getRelease": [Function],
|
||||||
|
"getReleaseAsset": [Function],
|
||||||
|
"getReleaseByTag": [Function],
|
||||||
|
"getStatusChecksProtection": [Function],
|
||||||
|
"getTeamsWithAccessToProtectedBranch": [Function],
|
||||||
|
"getTopPaths": [Function],
|
||||||
|
"getTopReferrers": [Function],
|
||||||
|
"getUsersWithAccessToProtectedBranch": [Function],
|
||||||
|
"getViews": [Function],
|
||||||
|
"getWebhook": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listAssetsForRelease": [Function],
|
||||||
|
"listBranches": [Function],
|
||||||
|
"listBranchesForHeadCommit": [Function],
|
||||||
|
"listCollaborators": [Function],
|
||||||
|
"listCommentsForCommit": [Function],
|
||||||
|
"listCommitComments": [Function],
|
||||||
|
"listCommitCommentsForRepo": [Function],
|
||||||
|
"listCommitStatusesForRef": [Function],
|
||||||
|
"listCommits": [Function],
|
||||||
|
"listContributors": [Function],
|
||||||
|
"listDeployKeys": [Function],
|
||||||
|
"listDeploymentStatuses": [Function],
|
||||||
|
"listDeployments": [Function],
|
||||||
|
"listDownloads": [Function],
|
||||||
|
"listForAuthenticatedUser": [Function],
|
||||||
|
"listForOrg": [Function],
|
||||||
|
"listForUser": [Function],
|
||||||
|
"listForks": [Function],
|
||||||
|
"listHooks": [Function],
|
||||||
|
"listInvitations": [Function],
|
||||||
|
"listInvitationsForAuthenticatedUser": [Function],
|
||||||
|
"listLanguages": [Function],
|
||||||
|
"listPagesBuilds": [Function],
|
||||||
|
"listProtectedBranchRequiredStatusChecksContexts": [Function],
|
||||||
|
"listPublic": [Function],
|
||||||
|
"listPullRequestsAssociatedWithCommit": [Function],
|
||||||
|
"listReleaseAssets": [Function],
|
||||||
|
"listReleases": [Function],
|
||||||
|
"listStatusesForRef": [Function],
|
||||||
|
"listTags": [Function],
|
||||||
|
"listTeams": [Function],
|
||||||
|
"listTopics": [Function],
|
||||||
|
"listWebhooks": [Function],
|
||||||
|
"merge": [Function],
|
||||||
|
"pingHook": [Function],
|
||||||
|
"pingWebhook": [Function],
|
||||||
|
"removeAppAccessRestrictions": [Function],
|
||||||
|
"removeBranchProtection": [Function],
|
||||||
|
"removeCollaborator": [Function],
|
||||||
|
"removeDeployKey": [Function],
|
||||||
|
"removeProtectedBranchAdminEnforcement": [Function],
|
||||||
|
"removeProtectedBranchAppRestrictions": [Function],
|
||||||
|
"removeProtectedBranchPullRequestReviewEnforcement": [Function],
|
||||||
|
"removeProtectedBranchRequiredSignatures": [Function],
|
||||||
|
"removeProtectedBranchRequiredStatusChecks": [Function],
|
||||||
|
"removeProtectedBranchRequiredStatusChecksContexts": [Function],
|
||||||
|
"removeProtectedBranchRestrictions": [Function],
|
||||||
|
"removeProtectedBranchTeamRestrictions": [Function],
|
||||||
|
"removeProtectedBranchUserRestrictions": [Function],
|
||||||
|
"removeStatusCheckContexts": [Function],
|
||||||
|
"removeStatusCheckProtection": [Function],
|
||||||
|
"removeTeamAccessRestrictions": [Function],
|
||||||
|
"removeUserAccessRestrictions": [Function],
|
||||||
|
"replaceAllTopics": [Function],
|
||||||
|
"replaceProtectedBranchAppRestrictions": [Function],
|
||||||
|
"replaceProtectedBranchRequiredStatusChecksContexts": [Function],
|
||||||
|
"replaceProtectedBranchTeamRestrictions": [Function],
|
||||||
|
"replaceProtectedBranchUserRestrictions": [Function],
|
||||||
|
"replaceTopics": [Function],
|
||||||
|
"requestPageBuild": [Function],
|
||||||
|
"requestPagesBuild": [Function],
|
||||||
|
"retrieveCommunityProfileMetrics": [Function],
|
||||||
|
"setAdminBranchProtection": [Function],
|
||||||
|
"setAppAccessRestrictions": [Function],
|
||||||
|
"setStatusCheckContexts": [Function],
|
||||||
|
"setTeamAccessRestrictions": [Function],
|
||||||
|
"setUserAccessRestrictions": [Function],
|
||||||
|
"testPushHook": [Function],
|
||||||
|
"testPushWebhook": [Function],
|
||||||
|
"transfer": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
"updateBranchProtection": [Function],
|
||||||
|
"updateCommitComment": [Function],
|
||||||
|
"updateHook": [Function],
|
||||||
|
"updateInformationAboutPagesSite": [Function],
|
||||||
|
"updateInvitation": [Function],
|
||||||
|
"updateProtectedBranchPullRequestReviewEnforcement": [Function],
|
||||||
|
"updateProtectedBranchRequiredStatusChecks": [Function],
|
||||||
|
"updatePullRequestReviewProtection": [Function],
|
||||||
|
"updateRelease": [Function],
|
||||||
|
"updateReleaseAsset": [Function],
|
||||||
|
"updateStatusCheckPotection": [Function],
|
||||||
|
"updateWebhook": [Function],
|
||||||
|
"uploadReleaseAsset": [Function],
|
||||||
|
},
|
||||||
|
"request": [Function],
|
||||||
|
"search": Object {
|
||||||
|
"code": [Function],
|
||||||
|
"commits": [Function],
|
||||||
|
"issuesAndPullRequests": [Function],
|
||||||
|
"labels": [Function],
|
||||||
|
"repos": [Function],
|
||||||
|
"topics": [Function],
|
||||||
|
"users": [Function],
|
||||||
|
},
|
||||||
|
"teams": Object {
|
||||||
|
"addOrUpdateMembershipForUserInOrg": [Function],
|
||||||
|
"addOrUpdateMembershipInOrg": [Function],
|
||||||
|
"addOrUpdateProjectInOrg": [Function],
|
||||||
|
"addOrUpdateProjectPermissionsInOrg": [Function],
|
||||||
|
"addOrUpdateRepoInOrg": [Function],
|
||||||
|
"addOrUpdateRepoPermissionsInOrg": [Function],
|
||||||
|
"checkManagesRepoInOrg": [Function],
|
||||||
|
"checkPermissionsForProjectInOrg": [Function],
|
||||||
|
"checkPermissionsForRepoInOrg": [Function],
|
||||||
|
"create": [Function],
|
||||||
|
"createDiscussionCommentInOrg": [Function],
|
||||||
|
"createDiscussionInOrg": [Function],
|
||||||
|
"deleteDiscussionCommentInOrg": [Function],
|
||||||
|
"deleteDiscussionInOrg": [Function],
|
||||||
|
"deleteInOrg": [Function],
|
||||||
|
"getByName": [Function],
|
||||||
|
"getDiscussionCommentInOrg": [Function],
|
||||||
|
"getDiscussionInOrg": [Function],
|
||||||
|
"getMembershipForUserInOrg": [Function],
|
||||||
|
"getMembershipInOrg": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listChildInOrg": [Function],
|
||||||
|
"listDiscussionCommentsInOrg": [Function],
|
||||||
|
"listDiscussionsInOrg": [Function],
|
||||||
|
"listForAuthenticatedUser": [Function],
|
||||||
|
"listMembersInOrg": [Function],
|
||||||
|
"listPendingInvitationsInOrg": [Function],
|
||||||
|
"listProjectsInOrg": [Function],
|
||||||
|
"listReposInOrg": [Function],
|
||||||
|
"removeMembershipForUserInOrg": [Function],
|
||||||
|
"removeMembershipInOrg": [Function],
|
||||||
|
"removeProjectInOrg": [Function],
|
||||||
|
"removeRepoInOrg": [Function],
|
||||||
|
"reviewProjectInOrg": [Function],
|
||||||
|
"updateDiscussionCommentInOrg": [Function],
|
||||||
|
"updateDiscussionInOrg": [Function],
|
||||||
|
"updateInOrg": [Function],
|
||||||
|
},
|
||||||
|
"users": Object {
|
||||||
|
"addEmailForAuthenticated": [Function],
|
||||||
|
"addEmails": [Function],
|
||||||
|
"block": [Function],
|
||||||
|
"checkBlocked": [Function],
|
||||||
|
"checkFollowing": [Function],
|
||||||
|
"checkFollowingForUser": [Function],
|
||||||
|
"checkPersonIsFollowedByAuthenticated": [Function],
|
||||||
|
"createGpgKey": [Function],
|
||||||
|
"createGpgKeyForAuthenticated": [Function],
|
||||||
|
"createPublicKey": [Function],
|
||||||
|
"createPublicSshKeyForAuthenticated": [Function],
|
||||||
|
"deleteEmailForAuthenticated": [Function],
|
||||||
|
"deleteEmails": [Function],
|
||||||
|
"deleteGpgKey": [Function],
|
||||||
|
"deleteGpgKeyForAuthenticated": [Function],
|
||||||
|
"deletePublicKey": [Function],
|
||||||
|
"deletePublicSshKeyForAuthenticated": [Function],
|
||||||
|
"follow": [Function],
|
||||||
|
"getAuthenticated": [Function],
|
||||||
|
"getByUsername": [Function],
|
||||||
|
"getContextForUser": [Function],
|
||||||
|
"getGpgKey": [Function],
|
||||||
|
"getGpgKeyForAuthenticated": [Function],
|
||||||
|
"getPublicKey": [Function],
|
||||||
|
"getPublicSshKeyForAuthenticated": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listBlocked": [Function],
|
||||||
|
"listBlockedByAuthenticated": [Function],
|
||||||
|
"listEmails": [Function],
|
||||||
|
"listEmailsForAuthenticated": [Function],
|
||||||
|
"listFollowedByAuthenticated": [Function],
|
||||||
|
"listFollowersForAuthenticatedUser": [Function],
|
||||||
|
"listFollowersForUser": [Function],
|
||||||
|
"listFollowingForAuthenticatedUser": [Function],
|
||||||
|
"listFollowingForUser": [Function],
|
||||||
|
"listGpgKeys": [Function],
|
||||||
|
"listGpgKeysForAuthenticated": [Function],
|
||||||
|
"listGpgKeysForUser": [Function],
|
||||||
|
"listPublicEmails": [Function],
|
||||||
|
"listPublicEmailsForAuthenticated": [Function],
|
||||||
|
"listPublicKeys": [Function],
|
||||||
|
"listPublicKeysForUser": [Function],
|
||||||
|
"listPublicSshKeysForAuthenticated": [Function],
|
||||||
|
"setPrimaryEmailVisibilityForAuthenticated": [Function],
|
||||||
|
"togglePrimaryEmailVisibility": [Function],
|
||||||
|
"unblock": [Function],
|
||||||
|
"unfollow": [Function],
|
||||||
|
"updateAuthenticated": [Function],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"hasStorageAnalyticsAfecFeature": [Function],
|
||||||
"isAccountReady": [Function],
|
"isAccountReady": [Function],
|
||||||
"isFixedCollectionWithSharedThroughputSupported": [Function],
|
"isFixedCollectionWithSharedThroughputSupported": [Function],
|
||||||
"isHostedDataExplorerEnabled": [Function],
|
"isHostedDataExplorerEnabled": [Function],
|
||||||
|
"isLeftPaneExpanded": [Function],
|
||||||
|
"isMongoIndexingEnabled": [Function],
|
||||||
"isNotebookEnabled": [Function],
|
"isNotebookEnabled": [Function],
|
||||||
"isNotebooksEnabledForAccount": [Function],
|
"isNotebooksEnabledForAccount": [Function],
|
||||||
|
"isPublishNotebookPaneEnabled": [Function],
|
||||||
"isResourceTokenCollectionNodeSelected": [Function],
|
"isResourceTokenCollectionNodeSelected": [Function],
|
||||||
"isSchemaEnabled": [Function],
|
"isSchemaEnabled": [Function],
|
||||||
"isServerlessEnabled": [Function],
|
"isServerlessEnabled": [Function],
|
||||||
"isShellEnabled": [Function],
|
"isShellEnabled": [Function],
|
||||||
|
"isSparkEnabled": [Function],
|
||||||
|
"isSparkEnabledForAccount": [Function],
|
||||||
"isSynapseLinkUpdating": [Function],
|
"isSynapseLinkUpdating": [Function],
|
||||||
"isTabsContentExpanded": [Function],
|
"isTabsContentExpanded": [Function],
|
||||||
|
"junoClient": JunoClient {
|
||||||
|
"cachedPinnedRepos": [Function],
|
||||||
|
},
|
||||||
"memoryUsageInfo": [Function],
|
"memoryUsageInfo": [Function],
|
||||||
"notebookBasePath": [Function],
|
"notebookBasePath": [Function],
|
||||||
"notebookServerInfo": [Function],
|
"notebookServerInfo": [Function],
|
||||||
|
"onGitHubClientError": [Function],
|
||||||
"onRefreshDatabasesKeyPress": [Function],
|
"onRefreshDatabasesKeyPress": [Function],
|
||||||
"onRefreshResourcesClick": [Function],
|
"onRefreshResourcesClick": [Function],
|
||||||
|
"openSidePanel": undefined,
|
||||||
"provideFeedbackEmail": [Function],
|
"provideFeedbackEmail": [Function],
|
||||||
"queriesClient": QueriesClient {
|
"queriesClient": QueriesClient {
|
||||||
"container": [Circular],
|
"container": [Circular],
|
||||||
},
|
},
|
||||||
"refreshNotebookList": [Function],
|
"refreshNotebookList": [Function],
|
||||||
|
"refreshTreeTitle": [Function],
|
||||||
"resourceTokenCollection": [Function],
|
"resourceTokenCollection": [Function],
|
||||||
"resourceTokenCollectionId": [Function],
|
"resourceTokenCollectionId": [Function],
|
||||||
"resourceTokenDatabaseId": [Function],
|
"resourceTokenDatabaseId": [Function],
|
||||||
@@ -52,6 +857,7 @@ exports[`StringInput Pane should render Create new directory properly 1`] = `
|
|||||||
"selectedDatabaseId": [Function],
|
"selectedDatabaseId": [Function],
|
||||||
"selectedNode": [Function],
|
"selectedNode": [Function],
|
||||||
"setInProgressConsoleDataIdToBeDeleted": undefined,
|
"setInProgressConsoleDataIdToBeDeleted": undefined,
|
||||||
|
"setIsNotificationConsoleExpanded": undefined,
|
||||||
"setNotificationConsoleData": undefined,
|
"setNotificationConsoleData": undefined,
|
||||||
"sparkClusterConnectionInfo": [Function],
|
"sparkClusterConnectionInfo": [Function],
|
||||||
"splitter": Splitter {
|
"splitter": Splitter {
|
||||||
@@ -70,6 +876,7 @@ exports[`StringInput Pane should render Create new directory properly 1`] = `
|
|||||||
"activeTab": [Function],
|
"activeTab": [Function],
|
||||||
"openedTabs": [Function],
|
"openedTabs": [Function],
|
||||||
},
|
},
|
||||||
|
"toggleLeftPaneExpandedKeyPress": [Function],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
inProgressMessage="Creating directory "
|
inProgressMessage="Creating directory "
|
||||||
@@ -88,6 +895,7 @@ exports[`StringInput Pane should render Create new directory properly 1`] = `
|
|||||||
successMessage="Created directory "
|
successMessage="Created directory "
|
||||||
>
|
>
|
||||||
<RightPaneForm
|
<RightPaneForm
|
||||||
|
expandConsole={[Function]}
|
||||||
formError=""
|
formError=""
|
||||||
isExecuting={false}
|
isExecuting={false}
|
||||||
onSubmit={[Function]}
|
onSubmit={[Function]}
|
||||||
|
|||||||
@@ -1,20 +1,23 @@
|
|||||||
import { mount } from "enzyme";
|
import { mount } from "enzyme";
|
||||||
import * as ko from "knockout";
|
import * as ko from "knockout";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
import Explorer from "../../Explorer";
|
||||||
import TableListViewModal from "../../Tables/DataTable/TableEntityListViewModel";
|
import TableListViewModal from "../../Tables/DataTable/TableEntityListViewModel";
|
||||||
import * as Entities from "../../Tables/Entities";
|
import * as Entities from "../../Tables/Entities";
|
||||||
import { CassandraAPIDataClient, TablesAPIDataClient } from "../../Tables/TableDataClient";
|
import { CassandraAPIDataClient } from "../../Tables/TableDataClient";
|
||||||
import QueryTablesTab from "../../Tabs/QueryTablesTab";
|
import QueryTablesTab from "../../Tabs/QueryTablesTab";
|
||||||
import { AddTableEntityPanel } from "./AddTableEntityPanel";
|
import { AddTableEntityPanel } from "./AddTableEntityPanel";
|
||||||
|
|
||||||
describe("Excute Add Table Entity Pane", () => {
|
describe("Excute Add Table Entity Pane", () => {
|
||||||
|
const fakeExplorer = {} as Explorer;
|
||||||
const fakeQueryTablesTab = {} as QueryTablesTab;
|
const fakeQueryTablesTab = {} as QueryTablesTab;
|
||||||
const fakeTableEntityListViewModel = {} as TableListViewModal;
|
const fakeTableEntityListViewModel = {} as TableListViewModal;
|
||||||
const fakeCassandraApiClient = {} as CassandraAPIDataClient;
|
const fakeCassandraApiClient = {} as CassandraAPIDataClient;
|
||||||
fakeTableEntityListViewModel.items = ko.observableArray<Entities.ITableEntity>();
|
fakeTableEntityListViewModel.items = ko.observableArray<Entities.ITableEntity>();
|
||||||
fakeTableEntityListViewModel.headers = [];
|
fakeTableEntityListViewModel.headers = [];
|
||||||
const props = {
|
const props = {
|
||||||
tableDataClient: new TablesAPIDataClient(),
|
explorer: fakeExplorer,
|
||||||
|
closePanel: (): void => undefined,
|
||||||
queryTablesTab: fakeQueryTablesTab,
|
queryTablesTab: fakeQueryTablesTab,
|
||||||
tableEntityListViewModel: fakeTableEntityListViewModel,
|
tableEntityListViewModel: fakeTableEntityListViewModel,
|
||||||
cassandraApiClient: fakeCassandraApiClient,
|
cassandraApiClient: fakeCassandraApiClient,
|
||||||
|
|||||||
@@ -5,13 +5,13 @@ import * as _ from "underscore";
|
|||||||
import AddPropertyIcon from "../../../../images/Add-property.svg";
|
import AddPropertyIcon from "../../../../images/Add-property.svg";
|
||||||
import RevertBackIcon from "../../../../images/RevertBack.svg";
|
import RevertBackIcon from "../../../../images/RevertBack.svg";
|
||||||
import { TableEntity } from "../../../Common/TableEntity";
|
import { TableEntity } from "../../../Common/TableEntity";
|
||||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
|
||||||
import { userContext } from "../../../UserContext";
|
import { userContext } from "../../../UserContext";
|
||||||
|
import Explorer from "../../Explorer";
|
||||||
import * as TableConstants from "../../Tables/Constants";
|
import * as TableConstants from "../../Tables/Constants";
|
||||||
import * as DataTableUtilities from "../../Tables/DataTable/DataTableUtilities";
|
import * as DataTableUtilities from "../../Tables/DataTable/DataTableUtilities";
|
||||||
import TableEntityListViewModel from "../../Tables/DataTable/TableEntityListViewModel";
|
import TableEntityListViewModel from "../../Tables/DataTable/TableEntityListViewModel";
|
||||||
import * as Entities from "../../Tables/Entities";
|
import * as Entities from "../../Tables/Entities";
|
||||||
import { CassandraAPIDataClient, CassandraTableKey, TableDataClient } from "../../Tables/TableDataClient";
|
import { CassandraAPIDataClient, CassandraTableKey } from "../../Tables/TableDataClient";
|
||||||
import * as TableEntityProcessor from "../../Tables/TableEntityProcessor";
|
import * as TableEntityProcessor from "../../Tables/TableEntityProcessor";
|
||||||
import * as Utilities from "../../Tables/Utilities";
|
import * as Utilities from "../../Tables/Utilities";
|
||||||
import QueryTablesTab from "../../Tabs/QueryTablesTab";
|
import QueryTablesTab from "../../Tabs/QueryTablesTab";
|
||||||
@@ -37,7 +37,8 @@ import {
|
|||||||
} from "./Validators/EntityTableHelper";
|
} from "./Validators/EntityTableHelper";
|
||||||
|
|
||||||
interface AddTableEntityPanelProps {
|
interface AddTableEntityPanelProps {
|
||||||
tableDataClient: TableDataClient;
|
explorer: Explorer;
|
||||||
|
closePanel: () => void;
|
||||||
queryTablesTab: QueryTablesTab;
|
queryTablesTab: QueryTablesTab;
|
||||||
tableEntityListViewModel: TableEntityListViewModel;
|
tableEntityListViewModel: TableEntityListViewModel;
|
||||||
cassandraApiClient: CassandraAPIDataClient;
|
cassandraApiClient: CassandraAPIDataClient;
|
||||||
@@ -56,12 +57,12 @@ interface EntityRowType {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const AddTableEntityPanel: FunctionComponent<AddTableEntityPanelProps> = ({
|
export const AddTableEntityPanel: FunctionComponent<AddTableEntityPanelProps> = ({
|
||||||
tableDataClient,
|
explorer,
|
||||||
|
closePanel,
|
||||||
queryTablesTab,
|
queryTablesTab,
|
||||||
tableEntityListViewModel,
|
tableEntityListViewModel,
|
||||||
cassandraApiClient,
|
cassandraApiClient,
|
||||||
}: AddTableEntityPanelProps): JSX.Element => {
|
}: AddTableEntityPanelProps): JSX.Element => {
|
||||||
const closeSidePanel = useSidePanel((state) => state.closeSidePanel);
|
|
||||||
const [entities, setEntities] = useState<EntityRowType[]>([]);
|
const [entities, setEntities] = useState<EntityRowType[]>([]);
|
||||||
const [selectedRow, setSelectedRow] = useState<number>(0);
|
const [selectedRow, setSelectedRow] = useState<number>(0);
|
||||||
const [entityAttributeValue, setEntityAttributeValue] = useState<string>("");
|
const [entityAttributeValue, setEntityAttributeValue] = useState<string>("");
|
||||||
@@ -105,12 +106,15 @@ export const AddTableEntityPanel: FunctionComponent<AddTableEntityPanelProps> =
|
|||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
|
||||||
const entity: Entities.ITableEntity = entityFromAttributes(entities);
|
const entity: Entities.ITableEntity = entityFromAttributes(entities);
|
||||||
const newEntity: Entities.ITableEntity = await tableDataClient.createDocument(queryTablesTab.collection, entity);
|
const newEntity: Entities.ITableEntity = await explorer.tableDataClient.createDocument(
|
||||||
|
queryTablesTab.collection,
|
||||||
|
entity
|
||||||
|
);
|
||||||
await tableEntityListViewModel.addEntityToCache(newEntity);
|
await tableEntityListViewModel.addEntityToCache(newEntity);
|
||||||
if (!tryInsertNewHeaders(tableEntityListViewModel, newEntity)) {
|
if (!tryInsertNewHeaders(tableEntityListViewModel, newEntity)) {
|
||||||
tableEntityListViewModel.redrawTableThrottled();
|
tableEntityListViewModel.redrawTableThrottled();
|
||||||
}
|
}
|
||||||
closeSidePanel();
|
closePanel();
|
||||||
};
|
};
|
||||||
|
|
||||||
const tryInsertNewHeaders = (viewModel: TableEntityListViewModel, newEntity: Entities.ITableEntity): boolean => {
|
const tryInsertNewHeaders = (viewModel: TableEntityListViewModel, newEntity: Entities.ITableEntity): boolean => {
|
||||||
@@ -292,6 +296,7 @@ export const AddTableEntityPanel: FunctionComponent<AddTableEntityPanelProps> =
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
|
closePanel={() => closePanel()}
|
||||||
isConsoleExpanded={false}
|
isConsoleExpanded={false}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
@@ -303,6 +308,7 @@ export const AddTableEntityPanel: FunctionComponent<AddTableEntityPanelProps> =
|
|||||||
panelWidth="700px"
|
panelWidth="700px"
|
||||||
isOpen={true}
|
isOpen={true}
|
||||||
panelContent={renderPanelContent()}
|
panelContent={renderPanelContent()}
|
||||||
|
closePanel={() => closePanel()}
|
||||||
isConsoleExpanded={false}
|
isConsoleExpanded={false}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,13 +1,15 @@
|
|||||||
import { mount } from "enzyme";
|
import { mount } from "enzyme";
|
||||||
import * as ko from "knockout";
|
import * as ko from "knockout";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
import Explorer from "../../Explorer";
|
||||||
import TableListViewModal from "../../Tables/DataTable/TableEntityListViewModel";
|
import TableListViewModal from "../../Tables/DataTable/TableEntityListViewModel";
|
||||||
import * as Entities from "../../Tables/Entities";
|
import * as Entities from "../../Tables/Entities";
|
||||||
import { CassandraAPIDataClient, TablesAPIDataClient } from "../../Tables/TableDataClient";
|
import { CassandraAPIDataClient } from "../../Tables/TableDataClient";
|
||||||
import QueryTablesTab from "../../Tabs/QueryTablesTab";
|
import QueryTablesTab from "../../Tabs/QueryTablesTab";
|
||||||
import { EditTableEntityPanel } from "./EditTableEntityPanel";
|
import { EditTableEntityPanel } from "./EditTableEntityPanel";
|
||||||
|
|
||||||
describe("Excute Edit Table Entity Pane", () => {
|
describe("Excute Edit Table Entity Pane", () => {
|
||||||
|
const fakeExplorer = {} as Explorer;
|
||||||
const fakeQueryTablesTab = {} as QueryTablesTab;
|
const fakeQueryTablesTab = {} as QueryTablesTab;
|
||||||
const fakeTableEntityListViewModel = {} as TableListViewModal;
|
const fakeTableEntityListViewModel = {} as TableListViewModal;
|
||||||
fakeTableEntityListViewModel.items = ko.observableArray<Entities.ITableEntity>();
|
fakeTableEntityListViewModel.items = ko.observableArray<Entities.ITableEntity>();
|
||||||
@@ -16,7 +18,8 @@ describe("Excute Edit Table Entity Pane", () => {
|
|||||||
fakeTableEntityListViewModel.selected = ko.observableArray<Entities.ITableEntity>([{}]);
|
fakeTableEntityListViewModel.selected = ko.observableArray<Entities.ITableEntity>([{}]);
|
||||||
|
|
||||||
const props = {
|
const props = {
|
||||||
tableDataClient: new TablesAPIDataClient(),
|
explorer: fakeExplorer,
|
||||||
|
closePanel: (): void => undefined,
|
||||||
queryTablesTab: fakeQueryTablesTab,
|
queryTablesTab: fakeQueryTablesTab,
|
||||||
tableEntityListViewModel: fakeTableEntityListViewModel,
|
tableEntityListViewModel: fakeTableEntityListViewModel,
|
||||||
cassandraApiClient: fakeCassandraApiClient,
|
cassandraApiClient: fakeCassandraApiClient,
|
||||||
|
|||||||
@@ -5,13 +5,13 @@ import * as _ from "underscore";
|
|||||||
import AddPropertyIcon from "../../../../images/Add-property.svg";
|
import AddPropertyIcon from "../../../../images/Add-property.svg";
|
||||||
import RevertBackIcon from "../../../../images/RevertBack.svg";
|
import RevertBackIcon from "../../../../images/RevertBack.svg";
|
||||||
import { TableEntity } from "../../../Common/TableEntity";
|
import { TableEntity } from "../../../Common/TableEntity";
|
||||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
|
||||||
import { userContext } from "../../../UserContext";
|
import { userContext } from "../../../UserContext";
|
||||||
|
import Explorer from "../../Explorer";
|
||||||
import * as TableConstants from "../../Tables/Constants";
|
import * as TableConstants from "../../Tables/Constants";
|
||||||
import * as DataTableUtilities from "../../Tables/DataTable/DataTableUtilities";
|
import * as DataTableUtilities from "../../Tables/DataTable/DataTableUtilities";
|
||||||
import TableEntityListViewModel from "../../Tables/DataTable/TableEntityListViewModel";
|
import TableEntityListViewModel from "../../Tables/DataTable/TableEntityListViewModel";
|
||||||
import * as Entities from "../../Tables/Entities";
|
import * as Entities from "../../Tables/Entities";
|
||||||
import { CassandraAPIDataClient, TableDataClient } from "../../Tables/TableDataClient";
|
import { CassandraAPIDataClient } from "../../Tables/TableDataClient";
|
||||||
import * as TableEntityProcessor from "../../Tables/TableEntityProcessor";
|
import * as TableEntityProcessor from "../../Tables/TableEntityProcessor";
|
||||||
import QueryTablesTab from "../../Tabs/QueryTablesTab";
|
import QueryTablesTab from "../../Tabs/QueryTablesTab";
|
||||||
import { PanelContainerComponent } from "../PanelContainerComponent";
|
import { PanelContainerComponent } from "../PanelContainerComponent";
|
||||||
@@ -34,7 +34,8 @@ import {
|
|||||||
} from "./Validators/EntityTableHelper";
|
} from "./Validators/EntityTableHelper";
|
||||||
|
|
||||||
interface EditTableEntityPanelProps {
|
interface EditTableEntityPanelProps {
|
||||||
tableDataClient: TableDataClient;
|
explorer: Explorer;
|
||||||
|
closePanel: () => void;
|
||||||
queryTablesTab: QueryTablesTab;
|
queryTablesTab: QueryTablesTab;
|
||||||
tableEntityListViewModel: TableEntityListViewModel;
|
tableEntityListViewModel: TableEntityListViewModel;
|
||||||
cassandraApiClient: CassandraAPIDataClient;
|
cassandraApiClient: CassandraAPIDataClient;
|
||||||
@@ -54,12 +55,12 @@ interface EntityRowType {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const EditTableEntityPanel: FunctionComponent<EditTableEntityPanelProps> = ({
|
export const EditTableEntityPanel: FunctionComponent<EditTableEntityPanelProps> = ({
|
||||||
tableDataClient,
|
explorer,
|
||||||
|
closePanel,
|
||||||
queryTablesTab,
|
queryTablesTab,
|
||||||
tableEntityListViewModel,
|
tableEntityListViewModel,
|
||||||
cassandraApiClient,
|
cassandraApiClient,
|
||||||
}: EditTableEntityPanelProps): JSX.Element => {
|
}: EditTableEntityPanelProps): JSX.Element => {
|
||||||
const closeSidePanel = useSidePanel((state) => state.closeSidePanel);
|
|
||||||
const [entities, setEntities] = useState<EntityRowType[]>([]);
|
const [entities, setEntities] = useState<EntityRowType[]>([]);
|
||||||
const [selectedRow, setSelectedRow] = useState<number>(0);
|
const [selectedRow, setSelectedRow] = useState<number>(0);
|
||||||
const [entityAttributeValue, setEntityAttributeValue] = useState<string>("");
|
const [entityAttributeValue, setEntityAttributeValue] = useState<string>("");
|
||||||
@@ -196,9 +197,9 @@ export const EditTableEntityPanel: FunctionComponent<EditTableEntityPanelProps>
|
|||||||
}
|
}
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
const entity: Entities.ITableEntity = entityFromAttributes(entities);
|
const entity: Entities.ITableEntity = entityFromAttributes(entities);
|
||||||
const newTableDataClient = userContext.apiType === "Cassandra" ? cassandraApiClient : tableDataClient;
|
const tableDataClient = userContext.apiType === "Cassandra" ? cassandraApiClient : explorer.tableDataClient;
|
||||||
const originalDocumentData = userContext.apiType === "Cassandra" ? originalDocument[0] : originalDocument;
|
const originalDocumentData = userContext.apiType === "Cassandra" ? originalDocument[0] : originalDocument;
|
||||||
const newEntity: Entities.ITableEntity = await newTableDataClient.updateDocument(
|
const newEntity: Entities.ITableEntity = await tableDataClient.updateDocument(
|
||||||
queryTablesTab.collection,
|
queryTablesTab.collection,
|
||||||
originalDocumentData,
|
originalDocumentData,
|
||||||
entity
|
entity
|
||||||
@@ -209,7 +210,7 @@ export const EditTableEntityPanel: FunctionComponent<EditTableEntityPanelProps>
|
|||||||
}
|
}
|
||||||
tableEntityListViewModel.selected.removeAll();
|
tableEntityListViewModel.selected.removeAll();
|
||||||
tableEntityListViewModel.selected.push(newEntity);
|
tableEntityListViewModel.selected.push(newEntity);
|
||||||
closeSidePanel();
|
closePanel();
|
||||||
};
|
};
|
||||||
|
|
||||||
const tryInsertNewHeaders = (viewModel: TableEntityListViewModel, newEntity: Entities.ITableEntity): boolean => {
|
const tryInsertNewHeaders = (viewModel: TableEntityListViewModel, newEntity: Entities.ITableEntity): boolean => {
|
||||||
@@ -390,6 +391,7 @@ export const EditTableEntityPanel: FunctionComponent<EditTableEntityPanelProps>
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
|
closePanel={() => closePanel()}
|
||||||
isConsoleExpanded={false}
|
isConsoleExpanded={false}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
@@ -401,6 +403,7 @@ export const EditTableEntityPanel: FunctionComponent<EditTableEntityPanelProps>
|
|||||||
panelWidth="700px"
|
panelWidth="700px"
|
||||||
isOpen={true}
|
isOpen={true}
|
||||||
panelContent={renderPanelContent()}
|
panelContent={renderPanelContent()}
|
||||||
|
closePanel={() => closePanel()}
|
||||||
isConsoleExpanded={false}
|
isConsoleExpanded={false}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,12 +1,14 @@
|
|||||||
import { Checkbox, Text } from "@fluentui/react";
|
import { Checkbox, Text } from "@fluentui/react";
|
||||||
import React, { FunctionComponent, useEffect, useState } from "react";
|
import React, { FunctionComponent, useEffect, useState } from "react";
|
||||||
import { useSidePanel } from "../../../../hooks/useSidePanel";
|
|
||||||
import { userContext } from "../../../../UserContext";
|
import { userContext } from "../../../../UserContext";
|
||||||
|
import Explorer from "../../../Explorer";
|
||||||
import * as Constants from "../../../Tables/Constants";
|
import * as Constants from "../../../Tables/Constants";
|
||||||
import QueryViewModel from "../../../Tables/QueryBuilder/QueryViewModel";
|
import QueryViewModel from "../../../Tables/QueryBuilder/QueryViewModel";
|
||||||
import { RightPaneForm, RightPaneFormProps } from "../../RightPaneForm/RightPaneForm";
|
import { RightPaneForm, RightPaneFormProps } from "../../RightPaneForm/RightPaneForm";
|
||||||
|
|
||||||
interface TableQuerySelectPanelProps {
|
interface TableQuerySelectPanelProps {
|
||||||
|
explorer: Explorer;
|
||||||
|
closePanel: () => void;
|
||||||
queryViewModel: QueryViewModel;
|
queryViewModel: QueryViewModel;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -17,10 +19,10 @@ interface ISelectColumn {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const TableQuerySelectPanel: FunctionComponent<TableQuerySelectPanelProps> = ({
|
export const TableQuerySelectPanel: FunctionComponent<TableQuerySelectPanelProps> = ({
|
||||||
|
explorer,
|
||||||
|
closePanel,
|
||||||
queryViewModel,
|
queryViewModel,
|
||||||
}: TableQuerySelectPanelProps): JSX.Element => {
|
}: TableQuerySelectPanelProps): JSX.Element => {
|
||||||
const closeSidePanel = useSidePanel((state) => state.closeSidePanel);
|
|
||||||
|
|
||||||
const [columnOptions, setColumnOptions] = useState<ISelectColumn[]>([
|
const [columnOptions, setColumnOptions] = useState<ISelectColumn[]>([
|
||||||
{ columnName: "", selected: true, editable: false },
|
{ columnName: "", selected: true, editable: false },
|
||||||
]);
|
]);
|
||||||
@@ -29,7 +31,7 @@ export const TableQuerySelectPanel: FunctionComponent<TableQuerySelectPanelProps
|
|||||||
const onSubmit = (): void => {
|
const onSubmit = (): void => {
|
||||||
queryViewModel.selectText(getParameters());
|
queryViewModel.selectText(getParameters());
|
||||||
queryViewModel.getSelectMessage();
|
queryViewModel.getSelectMessage();
|
||||||
closeSidePanel();
|
closePanel();
|
||||||
};
|
};
|
||||||
|
|
||||||
const props: RightPaneFormProps = {
|
const props: RightPaneFormProps = {
|
||||||
@@ -37,6 +39,7 @@ export const TableQuerySelectPanel: FunctionComponent<TableQuerySelectPanelProps
|
|||||||
isExecuting: false,
|
isExecuting: false,
|
||||||
submitButtonText: "OK",
|
submitButtonText: "OK",
|
||||||
onSubmit,
|
onSubmit,
|
||||||
|
expandConsole: () => explorer.expandConsole(),
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleClick = (isChecked: boolean, selectedColumn: string): void => {
|
const handleClick = (isChecked: boolean, selectedColumn: string): void => {
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ exports[`Table query select Panel should render Default properly 1`] = `
|
|||||||
}
|
}
|
||||||
>
|
>
|
||||||
<RightPaneForm
|
<RightPaneForm
|
||||||
|
expandConsole={[Function]}
|
||||||
formError=""
|
formError=""
|
||||||
isExecuting={false}
|
isExecuting={false}
|
||||||
onSubmit={[Function]}
|
onSubmit={[Function]}
|
||||||
|
|||||||
@@ -3,8 +3,9 @@
|
|||||||
exports[`Excute Add Table Entity Pane should render Default properly 1`] = `
|
exports[`Excute Add Table Entity Pane should render Default properly 1`] = `
|
||||||
<AddTableEntityPanel
|
<AddTableEntityPanel
|
||||||
cassandraApiClient={Object {}}
|
cassandraApiClient={Object {}}
|
||||||
|
closePanel={[Function]}
|
||||||
|
explorer={Object {}}
|
||||||
queryTablesTab={Object {}}
|
queryTablesTab={Object {}}
|
||||||
tableDataClient={TablesAPIDataClient {}}
|
|
||||||
tableEntityListViewModel={
|
tableEntityListViewModel={
|
||||||
Object {
|
Object {
|
||||||
"headers": Array [],
|
"headers": Array [],
|
||||||
@@ -13,6 +14,7 @@ exports[`Excute Add Table Entity Pane should render Default properly 1`] = `
|
|||||||
}
|
}
|
||||||
>
|
>
|
||||||
<PanelContainerComponent
|
<PanelContainerComponent
|
||||||
|
closePanel={[Function]}
|
||||||
headerText="Add Table Row"
|
headerText="Add Table Row"
|
||||||
isConsoleExpanded={false}
|
isConsoleExpanded={false}
|
||||||
isOpen={true}
|
isOpen={true}
|
||||||
|
|||||||
@@ -3,8 +3,9 @@
|
|||||||
exports[`Excute Edit Table Entity Pane should render Default properly 1`] = `
|
exports[`Excute Edit Table Entity Pane should render Default properly 1`] = `
|
||||||
<EditTableEntityPanel
|
<EditTableEntityPanel
|
||||||
cassandraApiClient={Object {}}
|
cassandraApiClient={Object {}}
|
||||||
|
closePanel={[Function]}
|
||||||
|
explorer={Object {}}
|
||||||
queryTablesTab={Object {}}
|
queryTablesTab={Object {}}
|
||||||
tableDataClient={TablesAPIDataClient {}}
|
|
||||||
tableEntityListViewModel={
|
tableEntityListViewModel={
|
||||||
Object {
|
Object {
|
||||||
"headers": Array [],
|
"headers": Array [],
|
||||||
@@ -14,6 +15,7 @@ exports[`Excute Edit Table Entity Pane should render Default properly 1`] = `
|
|||||||
}
|
}
|
||||||
>
|
>
|
||||||
<PanelContainerComponent
|
<PanelContainerComponent
|
||||||
|
closePanel={[Function]}
|
||||||
headerText="Edit Table Entity"
|
headerText="Edit Table Entity"
|
||||||
isConsoleExpanded={false}
|
isConsoleExpanded={false}
|
||||||
isOpen={true}
|
isOpen={true}
|
||||||
|
|||||||
@@ -1,16 +1,20 @@
|
|||||||
import React, { ChangeEvent, FunctionComponent, useState } from "react";
|
import React, { ChangeEvent, FunctionComponent, useState } from "react";
|
||||||
import { Upload } from "../../../Common/Upload/Upload";
|
import { Upload } from "../../../Common/Upload/Upload";
|
||||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
|
||||||
import { logConsoleError, logConsoleInfo, logConsoleProgress } from "../../../Utils/NotificationConsoleUtils";
|
import { logConsoleError, logConsoleInfo, logConsoleProgress } from "../../../Utils/NotificationConsoleUtils";
|
||||||
import { NotebookContentItem } from "../../Notebook/NotebookContentItem";
|
import { NotebookContentItem } from "../../Notebook/NotebookContentItem";
|
||||||
import { RightPaneForm, RightPaneFormProps } from "../RightPaneForm/RightPaneForm";
|
import { RightPaneForm, RightPaneFormProps } from "../RightPaneForm/RightPaneForm";
|
||||||
|
|
||||||
export interface UploadFilePanelProps {
|
export interface UploadFilePanelProps {
|
||||||
|
expandConsole: () => void;
|
||||||
|
closePanel: () => void;
|
||||||
uploadFile: (name: string, content: string) => Promise<NotebookContentItem>;
|
uploadFile: (name: string, content: string) => Promise<NotebookContentItem>;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const UploadFilePane: FunctionComponent<UploadFilePanelProps> = ({ uploadFile }: UploadFilePanelProps) => {
|
export const UploadFilePane: FunctionComponent<UploadFilePanelProps> = ({
|
||||||
const closeSidePanel = useSidePanel((state) => state.closeSidePanel);
|
expandConsole,
|
||||||
|
closePanel,
|
||||||
|
uploadFile,
|
||||||
|
}: UploadFilePanelProps) => {
|
||||||
const extensions: string = undefined; //ex. ".ipynb"
|
const extensions: string = undefined; //ex. ".ipynb"
|
||||||
const errorMessage = "Could not upload file";
|
const errorMessage = "Could not upload file";
|
||||||
const inProgressMessage = "Uploading file to notebook server";
|
const inProgressMessage = "Uploading file to notebook server";
|
||||||
@@ -38,7 +42,7 @@ export const UploadFilePane: FunctionComponent<UploadFilePanelProps> = ({ upload
|
|||||||
.then(
|
.then(
|
||||||
() => {
|
() => {
|
||||||
logConsoleInfo(`${successMessage} ${file.name}`);
|
logConsoleInfo(`${successMessage} ${file.name}`);
|
||||||
closeSidePanel();
|
closePanel();
|
||||||
},
|
},
|
||||||
(error: string) => {
|
(error: string) => {
|
||||||
setFormErrors(errorMessage);
|
setFormErrors(errorMessage);
|
||||||
@@ -75,6 +79,7 @@ export const UploadFilePane: FunctionComponent<UploadFilePanelProps> = ({ upload
|
|||||||
};
|
};
|
||||||
|
|
||||||
const props: RightPaneFormProps = {
|
const props: RightPaneFormProps = {
|
||||||
|
expandConsole,
|
||||||
formError: formErrors,
|
formError: formErrors,
|
||||||
isExecuting: isExecuting,
|
isExecuting: isExecuting,
|
||||||
submitButtonText: "Upload",
|
submitButtonText: "Upload",
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import Explorer from "../../Explorer";
|
|||||||
import { UploadItemsPane } from "./UploadItemsPane";
|
import { UploadItemsPane } from "./UploadItemsPane";
|
||||||
const props = {
|
const props = {
|
||||||
explorer: new Explorer(),
|
explorer: new Explorer(),
|
||||||
|
closePanel: (): void => undefined,
|
||||||
};
|
};
|
||||||
describe("Upload Items Pane", () => {
|
describe("Upload Items Pane", () => {
|
||||||
it("should render Default properly", () => {
|
it("should render Default properly", () => {
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ export const UploadItemsPane: FunctionComponent<UploadItemsPaneProps> = ({ explo
|
|||||||
}
|
}
|
||||||
|
|
||||||
const selectedCollection = explorer.findSelectedCollection();
|
const selectedCollection = explorer.findSelectedCollection();
|
||||||
|
|
||||||
setIsExecuting(true);
|
setIsExecuting(true);
|
||||||
|
|
||||||
selectedCollection
|
selectedCollection
|
||||||
@@ -50,6 +51,7 @@ export const UploadItemsPane: FunctionComponent<UploadItemsPaneProps> = ({ explo
|
|||||||
};
|
};
|
||||||
|
|
||||||
const props: RightPaneFormProps = {
|
const props: RightPaneFormProps = {
|
||||||
|
expandConsole: () => explorer.expandConsole(),
|
||||||
formError,
|
formError,
|
||||||
isExecuting: isExecuting,
|
isExecuting: isExecuting,
|
||||||
submitButtonText: "Upload",
|
submitButtonText: "Upload",
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
exports[`Upload Items Pane should render Default properly 1`] = `
|
exports[`Upload Items Pane should render Default properly 1`] = `
|
||||||
<RightPaneForm
|
<RightPaneForm
|
||||||
|
expandConsole={[Function]}
|
||||||
formError=""
|
formError=""
|
||||||
onSubmit={[Function]}
|
onSubmit={[Function]}
|
||||||
submitButtonText="Upload"
|
submitButtonText="Upload"
|
||||||
|
|||||||
@@ -5,36 +5,841 @@ exports[`Delete Database Confirmation Pane submit() Should call delete database
|
|||||||
closePanel={[Function]}
|
closePanel={[Function]}
|
||||||
explorer={
|
explorer={
|
||||||
Explorer {
|
Explorer {
|
||||||
|
"_isAfecFeatureRegistered": [Function],
|
||||||
"_isInitializingNotebooks": false,
|
"_isInitializingNotebooks": false,
|
||||||
|
"_refreshSparkEnabledStateForAccount": [Function],
|
||||||
"_resetNotebookWorkspace": [Function],
|
"_resetNotebookWorkspace": [Function],
|
||||||
|
"addCollectionText": [Function],
|
||||||
|
"arcadiaToken": [Function],
|
||||||
|
"canExceedMaximumValue": [Function],
|
||||||
"canSaveQueries": [Function],
|
"canSaveQueries": [Function],
|
||||||
|
"closeSidePanel": undefined,
|
||||||
"collapsedResourceTreeWidth": 36,
|
"collapsedResourceTreeWidth": 36,
|
||||||
|
"collectionCreationDefaults": Object {
|
||||||
|
"storage": "100",
|
||||||
|
"throughput": Object {
|
||||||
|
"fixed": 400,
|
||||||
|
"shared": 400,
|
||||||
|
"unlimited": 400,
|
||||||
|
"unlimitedmax": 1000000,
|
||||||
|
"unlimitedmin": 400,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"collectionTitle": [Function],
|
||||||
|
"collectionTreeNodeAltText": [Function],
|
||||||
|
"commandBarComponentAdapter": CommandBarComponentAdapter {
|
||||||
|
"container": [Circular],
|
||||||
|
"isNotebookTabActive": [Function],
|
||||||
|
"parameters": [Function],
|
||||||
|
"tabsButtons": Array [],
|
||||||
|
},
|
||||||
"databases": [Function],
|
"databases": [Function],
|
||||||
|
"deleteCollectionText": [Function],
|
||||||
|
"deleteDatabaseText": [Function],
|
||||||
|
"gitHubClient": GitHubClient {
|
||||||
|
"errorCallback": [Function],
|
||||||
|
"ocktokit": OctokitWithDefaults {
|
||||||
|
"actions": Object {
|
||||||
|
"addSelectedRepoToOrgSecret": [Function],
|
||||||
|
"cancelWorkflowRun": [Function],
|
||||||
|
"createOrUpdateOrgSecret": [Function],
|
||||||
|
"createOrUpdateRepoSecret": [Function],
|
||||||
|
"createOrUpdateSecretForRepo": [Function],
|
||||||
|
"createRegistrationToken": [Function],
|
||||||
|
"createRegistrationTokenForOrg": [Function],
|
||||||
|
"createRegistrationTokenForRepo": [Function],
|
||||||
|
"createRemoveToken": [Function],
|
||||||
|
"createRemoveTokenForOrg": [Function],
|
||||||
|
"createRemoveTokenForRepo": [Function],
|
||||||
|
"deleteArtifact": [Function],
|
||||||
|
"deleteOrgSecret": [Function],
|
||||||
|
"deleteRepoSecret": [Function],
|
||||||
|
"deleteSecretFromRepo": [Function],
|
||||||
|
"deleteSelfHostedRunnerFromOrg": [Function],
|
||||||
|
"deleteSelfHostedRunnerFromRepo": [Function],
|
||||||
|
"deleteWorkflowRunLogs": [Function],
|
||||||
|
"downloadArtifact": [Function],
|
||||||
|
"downloadJobLogsForWorkflowRun": [Function],
|
||||||
|
"downloadWorkflowJobLogs": [Function],
|
||||||
|
"downloadWorkflowRunLogs": [Function],
|
||||||
|
"getArtifact": [Function],
|
||||||
|
"getJobForWorkflowRun": [Function],
|
||||||
|
"getOrgPublicKey": [Function],
|
||||||
|
"getOrgSecret": [Function],
|
||||||
|
"getPublicKey": [Function],
|
||||||
|
"getRepoPublicKey": [Function],
|
||||||
|
"getRepoSecret": [Function],
|
||||||
|
"getSecret": [Function],
|
||||||
|
"getSelfHostedRunner": [Function],
|
||||||
|
"getSelfHostedRunnerForOrg": [Function],
|
||||||
|
"getSelfHostedRunnerForRepo": [Function],
|
||||||
|
"getWorkflow": [Function],
|
||||||
|
"getWorkflowJob": [Function],
|
||||||
|
"getWorkflowRun": [Function],
|
||||||
|
"getWorkflowRunUsage": [Function],
|
||||||
|
"getWorkflowUsage": [Function],
|
||||||
|
"listArtifactsForRepo": [Function],
|
||||||
|
"listDownloadsForSelfHostedRunnerApplication": [Function],
|
||||||
|
"listJobsForWorkflowRun": [Function],
|
||||||
|
"listOrgSecrets": [Function],
|
||||||
|
"listRepoSecrets": [Function],
|
||||||
|
"listRepoWorkflowRuns": [Function],
|
||||||
|
"listRepoWorkflows": [Function],
|
||||||
|
"listRunnerApplicationsForOrg": [Function],
|
||||||
|
"listRunnerApplicationsForRepo": [Function],
|
||||||
|
"listSecretsForRepo": [Function],
|
||||||
|
"listSelectedReposForOrgSecret": [Function],
|
||||||
|
"listSelfHostedRunnersForOrg": [Function],
|
||||||
|
"listSelfHostedRunnersForRepo": [Function],
|
||||||
|
"listWorkflowJobLogs": [Function],
|
||||||
|
"listWorkflowRunArtifacts": [Function],
|
||||||
|
"listWorkflowRunLogs": [Function],
|
||||||
|
"listWorkflowRuns": [Function],
|
||||||
|
"listWorkflowRunsForRepo": [Function],
|
||||||
|
"reRunWorkflow": [Function],
|
||||||
|
"removeSelectedRepoFromOrgSecret": [Function],
|
||||||
|
"removeSelfHostedRunner": [Function],
|
||||||
|
"setSelectedReposForOrgSecret": [Function],
|
||||||
|
},
|
||||||
|
"activity": Object {
|
||||||
|
"checkRepoIsStarredByAuthenticatedUser": [Function],
|
||||||
|
"checkStarringRepo": [Function],
|
||||||
|
"deleteRepoSubscription": [Function],
|
||||||
|
"deleteThreadSubscription": [Function],
|
||||||
|
"getFeeds": [Function],
|
||||||
|
"getRepoSubscription": [Function],
|
||||||
|
"getThread": [Function],
|
||||||
|
"getThreadSubscription": [Function],
|
||||||
|
"getThreadSubscriptionForAuthenticatedUser": [Function],
|
||||||
|
"listEventsForAuthenticatedUser": [Function],
|
||||||
|
"listEventsForOrg": [Function],
|
||||||
|
"listEventsForUser": [Function],
|
||||||
|
"listFeeds": [Function],
|
||||||
|
"listNotifications": [Function],
|
||||||
|
"listNotificationsForAuthenticatedUser": [Function],
|
||||||
|
"listNotificationsForRepo": [Function],
|
||||||
|
"listOrgEventsForAuthenticatedUser": [Function],
|
||||||
|
"listPublicEvents": [Function],
|
||||||
|
"listPublicEventsForOrg": [Function],
|
||||||
|
"listPublicEventsForRepoNetwork": [Function],
|
||||||
|
"listPublicEventsForUser": [Function],
|
||||||
|
"listPublicOrgEvents": [Function],
|
||||||
|
"listReceivedEventsForUser": [Function],
|
||||||
|
"listReceivedPublicEventsForUser": [Function],
|
||||||
|
"listRepoEvents": [Function],
|
||||||
|
"listRepoNotificationsForAuthenticatedUser": [Function],
|
||||||
|
"listReposStarredByAuthenticatedUser": [Function],
|
||||||
|
"listReposStarredByUser": [Function],
|
||||||
|
"listReposWatchedByUser": [Function],
|
||||||
|
"listStargazersForRepo": [Function],
|
||||||
|
"listWatchedReposForAuthenticatedUser": [Function],
|
||||||
|
"listWatchersForRepo": [Function],
|
||||||
|
"markAsRead": [Function],
|
||||||
|
"markNotificationsAsRead": [Function],
|
||||||
|
"markNotificationsAsReadForRepo": [Function],
|
||||||
|
"markRepoNotificationsAsRead": [Function],
|
||||||
|
"markThreadAsRead": [Function],
|
||||||
|
"setRepoSubscription": [Function],
|
||||||
|
"setThreadSubscription": [Function],
|
||||||
|
"starRepo": [Function],
|
||||||
|
"starRepoForAuthenticatedUser": [Function],
|
||||||
|
"unstarRepo": [Function],
|
||||||
|
"unstarRepoForAuthenticatedUser": [Function],
|
||||||
|
},
|
||||||
|
"apps": Object {
|
||||||
|
"addRepoToInstallation": [Function],
|
||||||
|
"checkAccountIsAssociatedWithAny": [Function],
|
||||||
|
"checkAccountIsAssociatedWithAnyStubbed": [Function],
|
||||||
|
"checkToken": [Function],
|
||||||
|
"createContentAttachment": [Function],
|
||||||
|
"createFromManifest": [Function],
|
||||||
|
"createInstallationAccessToken": [Function],
|
||||||
|
"createInstallationToken": [Function],
|
||||||
|
"deleteAuthorization": [Function],
|
||||||
|
"deleteInstallation": [Function],
|
||||||
|
"deleteToken": [Function],
|
||||||
|
"getAuthenticated": [Function],
|
||||||
|
"getBySlug": [Function],
|
||||||
|
"getInstallation": [Function],
|
||||||
|
"getOrgInstallation": [Function],
|
||||||
|
"getRepoInstallation": [Function],
|
||||||
|
"getSubscriptionPlanForAccount": [Function],
|
||||||
|
"getSubscriptionPlanForAccountStubbed": [Function],
|
||||||
|
"getUserInstallation": [Function],
|
||||||
|
"listAccountsForPlan": [Function],
|
||||||
|
"listAccountsForPlanStubbed": [Function],
|
||||||
|
"listAccountsUserOrOrgOnPlan": [Function],
|
||||||
|
"listAccountsUserOrOrgOnPlanStubbed": [Function],
|
||||||
|
"listInstallationReposForAuthenticatedUser": [Function],
|
||||||
|
"listInstallations": [Function],
|
||||||
|
"listInstallationsForAuthenticatedUser": [Function],
|
||||||
|
"listMarketplacePurchasesForAuthenticatedUser": [Function],
|
||||||
|
"listMarketplacePurchasesForAuthenticatedUserStubbed": [Function],
|
||||||
|
"listPlans": [Function],
|
||||||
|
"listPlansStubbed": [Function],
|
||||||
|
"listRepos": [Function],
|
||||||
|
"listReposAccessibleToInstallation": [Function],
|
||||||
|
"listSubscriptionsForAuthenticatedUser": [Function],
|
||||||
|
"listSubscriptionsForAuthenticatedUserStubbed": [Function],
|
||||||
|
"removeRepoFromInstallation": [Function],
|
||||||
|
"resetToken": [Function],
|
||||||
|
"revokeInstallationAccessToken": [Function],
|
||||||
|
"revokeInstallationToken": [Function],
|
||||||
|
"suspendInstallation": [Function],
|
||||||
|
"unsuspendInstallation": [Function],
|
||||||
|
},
|
||||||
|
"auth": [Function],
|
||||||
|
"checks": Object {
|
||||||
|
"create": [Function],
|
||||||
|
"createSuite": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getSuite": [Function],
|
||||||
|
"listAnnotations": [Function],
|
||||||
|
"listForRef": [Function],
|
||||||
|
"listForSuite": [Function],
|
||||||
|
"listSuitesForRef": [Function],
|
||||||
|
"rerequestSuite": [Function],
|
||||||
|
"setSuitesPreferences": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
},
|
||||||
|
"codeScanning": Object {
|
||||||
|
"getAlert": [Function],
|
||||||
|
"listAlertsForRepo": [Function],
|
||||||
|
},
|
||||||
|
"codesOfConduct": Object {
|
||||||
|
"getAllCodesOfConduct": [Function],
|
||||||
|
"getConductCode": [Function],
|
||||||
|
"getForRepo": [Function],
|
||||||
|
"listConductCodes": [Function],
|
||||||
|
},
|
||||||
|
"emojis": Object {
|
||||||
|
"get": [Function],
|
||||||
|
},
|
||||||
|
"gists": Object {
|
||||||
|
"checkIsStarred": [Function],
|
||||||
|
"create": [Function],
|
||||||
|
"createComment": [Function],
|
||||||
|
"delete": [Function],
|
||||||
|
"deleteComment": [Function],
|
||||||
|
"fork": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getComment": [Function],
|
||||||
|
"getRevision": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listComments": [Function],
|
||||||
|
"listCommits": [Function],
|
||||||
|
"listForUser": [Function],
|
||||||
|
"listForks": [Function],
|
||||||
|
"listPublic": [Function],
|
||||||
|
"listPublicForUser": [Function],
|
||||||
|
"listStarred": [Function],
|
||||||
|
"star": [Function],
|
||||||
|
"unstar": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
"updateComment": [Function],
|
||||||
|
},
|
||||||
|
"git": Object {
|
||||||
|
"createBlob": [Function],
|
||||||
|
"createCommit": [Function],
|
||||||
|
"createRef": [Function],
|
||||||
|
"createTag": [Function],
|
||||||
|
"createTree": [Function],
|
||||||
|
"deleteRef": [Function],
|
||||||
|
"getBlob": [Function],
|
||||||
|
"getCommit": [Function],
|
||||||
|
"getRef": [Function],
|
||||||
|
"getTag": [Function],
|
||||||
|
"getTree": [Function],
|
||||||
|
"listMatchingRefs": [Function],
|
||||||
|
"updateRef": [Function],
|
||||||
|
},
|
||||||
|
"gitignore": Object {
|
||||||
|
"getAllTemplates": [Function],
|
||||||
|
"getTemplate": [Function],
|
||||||
|
"listTemplates": [Function],
|
||||||
|
},
|
||||||
|
"graphql": [Function],
|
||||||
|
"hook": [Function],
|
||||||
|
"interactions": Object {
|
||||||
|
"addOrUpdateRestrictionsForOrg": [Function],
|
||||||
|
"addOrUpdateRestrictionsForRepo": [Function],
|
||||||
|
"getRestrictionsForOrg": [Function],
|
||||||
|
"getRestrictionsForRepo": [Function],
|
||||||
|
"removeRestrictionsForOrg": [Function],
|
||||||
|
"removeRestrictionsForRepo": [Function],
|
||||||
|
"setRestrictionsForOrg": [Function],
|
||||||
|
"setRestrictionsForRepo": [Function],
|
||||||
|
},
|
||||||
|
"issues": Object {
|
||||||
|
"addAssignees": [Function],
|
||||||
|
"addLabels": [Function],
|
||||||
|
"checkAssignee": [Function],
|
||||||
|
"checkUserCanBeAssigned": [Function],
|
||||||
|
"create": [Function],
|
||||||
|
"createComment": [Function],
|
||||||
|
"createLabel": [Function],
|
||||||
|
"createMilestone": [Function],
|
||||||
|
"deleteComment": [Function],
|
||||||
|
"deleteLabel": [Function],
|
||||||
|
"deleteMilestone": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getComment": [Function],
|
||||||
|
"getEvent": [Function],
|
||||||
|
"getLabel": [Function],
|
||||||
|
"getMilestone": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listAssignees": [Function],
|
||||||
|
"listComments": [Function],
|
||||||
|
"listCommentsForRepo": [Function],
|
||||||
|
"listEvents": [Function],
|
||||||
|
"listEventsForRepo": [Function],
|
||||||
|
"listEventsForTimeline": [Function],
|
||||||
|
"listForAuthenticatedUser": [Function],
|
||||||
|
"listForOrg": [Function],
|
||||||
|
"listForRepo": [Function],
|
||||||
|
"listLabelsForMilestone": [Function],
|
||||||
|
"listLabelsForRepo": [Function],
|
||||||
|
"listLabelsOnIssue": [Function],
|
||||||
|
"listMilestones": [Function],
|
||||||
|
"listMilestonesForRepo": [Function],
|
||||||
|
"lock": [Function],
|
||||||
|
"removeAllLabels": [Function],
|
||||||
|
"removeAssignees": [Function],
|
||||||
|
"removeLabel": [Function],
|
||||||
|
"removeLabels": [Function],
|
||||||
|
"replaceAllLabels": [Function],
|
||||||
|
"replaceLabels": [Function],
|
||||||
|
"setLabels": [Function],
|
||||||
|
"unlock": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
"updateComment": [Function],
|
||||||
|
"updateLabel": [Function],
|
||||||
|
"updateMilestone": [Function],
|
||||||
|
},
|
||||||
|
"licenses": Object {
|
||||||
|
"get": [Function],
|
||||||
|
"getAllCommonlyUsed": [Function],
|
||||||
|
"getForRepo": [Function],
|
||||||
|
"listCommonlyUsed": [Function],
|
||||||
|
},
|
||||||
|
"log": Object {
|
||||||
|
"debug": [Function],
|
||||||
|
"error": [Function],
|
||||||
|
"info": [Function],
|
||||||
|
"warn": [Function],
|
||||||
|
},
|
||||||
|
"markdown": Object {
|
||||||
|
"render": [Function],
|
||||||
|
"renderRaw": [Function],
|
||||||
|
},
|
||||||
|
"meta": Object {
|
||||||
|
"get": [Function],
|
||||||
|
},
|
||||||
|
"migrations": Object {
|
||||||
|
"cancelImport": [Function],
|
||||||
|
"deleteArchiveForAuthenticatedUser": [Function],
|
||||||
|
"deleteArchiveForOrg": [Function],
|
||||||
|
"downloadArchiveForOrg": [Function],
|
||||||
|
"getArchiveForAuthenticatedUser": [Function],
|
||||||
|
"getCommitAuthors": [Function],
|
||||||
|
"getImportProgress": [Function],
|
||||||
|
"getImportStatus": [Function],
|
||||||
|
"getLargeFiles": [Function],
|
||||||
|
"getStatusForAuthenticatedUser": [Function],
|
||||||
|
"getStatusForOrg": [Function],
|
||||||
|
"listForAuthenticatedUser": [Function],
|
||||||
|
"listForOrg": [Function],
|
||||||
|
"listReposForOrg": [Function],
|
||||||
|
"listReposForUser": [Function],
|
||||||
|
"mapCommitAuthor": [Function],
|
||||||
|
"setLfsPreference": [Function],
|
||||||
|
"startForAuthenticatedUser": [Function],
|
||||||
|
"startForOrg": [Function],
|
||||||
|
"startImport": [Function],
|
||||||
|
"unlockRepoForAuthenticatedUser": [Function],
|
||||||
|
"unlockRepoForOrg": [Function],
|
||||||
|
"updateImport": [Function],
|
||||||
|
},
|
||||||
|
"orgs": Object {
|
||||||
|
"addOrUpdateMembership": [Function],
|
||||||
|
"blockUser": [Function],
|
||||||
|
"checkBlockedUser": [Function],
|
||||||
|
"checkMembership": [Function],
|
||||||
|
"checkMembershipForUser": [Function],
|
||||||
|
"checkPublicMembership": [Function],
|
||||||
|
"checkPublicMembershipForUser": [Function],
|
||||||
|
"concealMembership": [Function],
|
||||||
|
"convertMemberToOutsideCollaborator": [Function],
|
||||||
|
"createHook": [Function],
|
||||||
|
"createInvitation": [Function],
|
||||||
|
"createWebhook": [Function],
|
||||||
|
"deleteHook": [Function],
|
||||||
|
"deleteWebhook": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getHook": [Function],
|
||||||
|
"getMembership": [Function],
|
||||||
|
"getMembershipForAuthenticatedUser": [Function],
|
||||||
|
"getMembershipForUser": [Function],
|
||||||
|
"getWebhook": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listAppInstallations": [Function],
|
||||||
|
"listBlockedUsers": [Function],
|
||||||
|
"listForAuthenticatedUser": [Function],
|
||||||
|
"listForUser": [Function],
|
||||||
|
"listHooks": [Function],
|
||||||
|
"listInstallations": [Function],
|
||||||
|
"listInvitationTeams": [Function],
|
||||||
|
"listMembers": [Function],
|
||||||
|
"listMemberships": [Function],
|
||||||
|
"listMembershipsForAuthenticatedUser": [Function],
|
||||||
|
"listOutsideCollaborators": [Function],
|
||||||
|
"listPendingInvitations": [Function],
|
||||||
|
"listPublicMembers": [Function],
|
||||||
|
"listWebhooks": [Function],
|
||||||
|
"pingHook": [Function],
|
||||||
|
"pingWebhook": [Function],
|
||||||
|
"publicizeMembership": [Function],
|
||||||
|
"removeMember": [Function],
|
||||||
|
"removeMembership": [Function],
|
||||||
|
"removeMembershipForUser": [Function],
|
||||||
|
"removeOutsideCollaborator": [Function],
|
||||||
|
"removePublicMembershipForAuthenticatedUser": [Function],
|
||||||
|
"setMembershipForUser": [Function],
|
||||||
|
"setPublicMembershipForAuthenticatedUser": [Function],
|
||||||
|
"unblockUser": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
"updateHook": [Function],
|
||||||
|
"updateMembership": [Function],
|
||||||
|
"updateMembershipForAuthenticatedUser": [Function],
|
||||||
|
"updateWebhook": [Function],
|
||||||
|
},
|
||||||
|
"paginate": [Function],
|
||||||
|
"projects": Object {
|
||||||
|
"addCollaborator": [Function],
|
||||||
|
"createCard": [Function],
|
||||||
|
"createColumn": [Function],
|
||||||
|
"createForAuthenticatedUser": [Function],
|
||||||
|
"createForOrg": [Function],
|
||||||
|
"createForRepo": [Function],
|
||||||
|
"delete": [Function],
|
||||||
|
"deleteCard": [Function],
|
||||||
|
"deleteColumn": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getCard": [Function],
|
||||||
|
"getColumn": [Function],
|
||||||
|
"getPermissionForUser": [Function],
|
||||||
|
"listCards": [Function],
|
||||||
|
"listCollaborators": [Function],
|
||||||
|
"listColumns": [Function],
|
||||||
|
"listForOrg": [Function],
|
||||||
|
"listForRepo": [Function],
|
||||||
|
"listForUser": [Function],
|
||||||
|
"moveCard": [Function],
|
||||||
|
"moveColumn": [Function],
|
||||||
|
"removeCollaborator": [Function],
|
||||||
|
"reviewUserPermissionLevel": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
"updateCard": [Function],
|
||||||
|
"updateColumn": [Function],
|
||||||
|
},
|
||||||
|
"pulls": Object {
|
||||||
|
"checkIfMerged": [Function],
|
||||||
|
"create": [Function],
|
||||||
|
"createComment": [Function],
|
||||||
|
"createReplyForReviewComment": [Function],
|
||||||
|
"createReview": [Function],
|
||||||
|
"createReviewComment": [Function],
|
||||||
|
"createReviewCommentReply": [Function],
|
||||||
|
"createReviewRequest": [Function],
|
||||||
|
"deleteComment": [Function],
|
||||||
|
"deletePendingReview": [Function],
|
||||||
|
"deleteReviewComment": [Function],
|
||||||
|
"deleteReviewRequest": [Function],
|
||||||
|
"dismissReview": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getComment": [Function],
|
||||||
|
"getCommentsForReview": [Function],
|
||||||
|
"getReview": [Function],
|
||||||
|
"getReviewComment": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listComments": [Function],
|
||||||
|
"listCommentsForRepo": [Function],
|
||||||
|
"listCommentsForReview": [Function],
|
||||||
|
"listCommits": [Function],
|
||||||
|
"listFiles": [Function],
|
||||||
|
"listRequestedReviewers": [Function],
|
||||||
|
"listReviewComments": [Function],
|
||||||
|
"listReviewCommentsForRepo": [Function],
|
||||||
|
"listReviewRequests": [Function],
|
||||||
|
"listReviews": [Function],
|
||||||
|
"merge": [Function],
|
||||||
|
"removeRequestedReviewers": [Function],
|
||||||
|
"requestReviewers": [Function],
|
||||||
|
"submitReview": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
"updateBranch": [Function],
|
||||||
|
"updateComment": [Function],
|
||||||
|
"updateReview": [Function],
|
||||||
|
"updateReviewComment": [Function],
|
||||||
|
},
|
||||||
|
"rateLimit": Object {
|
||||||
|
"get": [Function],
|
||||||
|
},
|
||||||
|
"reactions": Object {
|
||||||
|
"createForCommitComment": [Function],
|
||||||
|
"createForIssue": [Function],
|
||||||
|
"createForIssueComment": [Function],
|
||||||
|
"createForPullRequestReviewComment": [Function],
|
||||||
|
"createForTeamDiscussionCommentInOrg": [Function],
|
||||||
|
"createForTeamDiscussionInOrg": [Function],
|
||||||
|
"delete": [Function],
|
||||||
|
"deleteForCommitComment": [Function],
|
||||||
|
"deleteForIssue": [Function],
|
||||||
|
"deleteForIssueComment": [Function],
|
||||||
|
"deleteForPullRequestComment": [Function],
|
||||||
|
"deleteForTeamDiscussion": [Function],
|
||||||
|
"deleteForTeamDiscussionComment": [Function],
|
||||||
|
"deleteLegacy": [Function],
|
||||||
|
"listForCommitComment": [Function],
|
||||||
|
"listForIssue": [Function],
|
||||||
|
"listForIssueComment": [Function],
|
||||||
|
"listForPullRequestReviewComment": [Function],
|
||||||
|
"listForTeamDiscussionCommentInOrg": [Function],
|
||||||
|
"listForTeamDiscussionInOrg": [Function],
|
||||||
|
},
|
||||||
|
"repos": Object {
|
||||||
|
"acceptInvitation": [Function],
|
||||||
|
"addAppAccessRestrictions": [Function],
|
||||||
|
"addCollaborator": [Function],
|
||||||
|
"addDeployKey": [Function],
|
||||||
|
"addProtectedBranchAdminEnforcement": [Function],
|
||||||
|
"addProtectedBranchAppRestrictions": [Function],
|
||||||
|
"addProtectedBranchRequiredSignatures": [Function],
|
||||||
|
"addProtectedBranchRequiredStatusChecksContexts": [Function],
|
||||||
|
"addProtectedBranchTeamRestrictions": [Function],
|
||||||
|
"addProtectedBranchUserRestrictions": [Function],
|
||||||
|
"addStatusCheckContexts": [Function],
|
||||||
|
"addTeamAccessRestrictions": [Function],
|
||||||
|
"addUserAccessRestrictions": [Function],
|
||||||
|
"checkCollaborator": [Function],
|
||||||
|
"checkVulnerabilityAlerts": [Function],
|
||||||
|
"compareCommits": [Function],
|
||||||
|
"createCommitComment": [Function],
|
||||||
|
"createCommitSignatureProtection": [Function],
|
||||||
|
"createCommitStatus": [Function],
|
||||||
|
"createDeployKey": [Function],
|
||||||
|
"createDeployment": [Function],
|
||||||
|
"createDeploymentStatus": [Function],
|
||||||
|
"createDispatchEvent": [Function],
|
||||||
|
"createForAuthenticatedUser": [Function],
|
||||||
|
"createFork": [Function],
|
||||||
|
"createHook": [Function],
|
||||||
|
"createInOrg": [Function],
|
||||||
|
"createOrUpdateFile": [Function],
|
||||||
|
"createOrUpdateFileContents": [Function],
|
||||||
|
"createPagesSite": [Function],
|
||||||
|
"createRelease": [Function],
|
||||||
|
"createStatus": [Function],
|
||||||
|
"createUsingTemplate": [Function],
|
||||||
|
"createWebhook": [Function],
|
||||||
|
"declineInvitation": [Function],
|
||||||
|
"delete": [Function],
|
||||||
|
"deleteAccessRestrictions": [Function],
|
||||||
|
"deleteAdminBranchProtection": [Function],
|
||||||
|
"deleteBranchProtection": [Function],
|
||||||
|
"deleteCommitComment": [Function],
|
||||||
|
"deleteCommitSignatureProtection": [Function],
|
||||||
|
"deleteDeployKey": [Function],
|
||||||
|
"deleteDeployment": [Function],
|
||||||
|
"deleteDownload": [Function],
|
||||||
|
"deleteFile": [Function],
|
||||||
|
"deleteHook": [Function],
|
||||||
|
"deleteInvitation": [Function],
|
||||||
|
"deletePagesSite": [Function],
|
||||||
|
"deletePullRequestReviewProtection": [Function],
|
||||||
|
"deleteRelease": [Function],
|
||||||
|
"deleteReleaseAsset": [Function],
|
||||||
|
"deleteWebhook": [Function],
|
||||||
|
"disableAutomatedSecurityFixes": [Function],
|
||||||
|
"disablePagesSite": [Function],
|
||||||
|
"disableVulnerabilityAlerts": [Function],
|
||||||
|
"downloadArchive": [Function],
|
||||||
|
"enableAutomatedSecurityFixes": [Function],
|
||||||
|
"enablePagesSite": [Function],
|
||||||
|
"enableVulnerabilityAlerts": [Function],
|
||||||
|
"get": [Function],
|
||||||
|
"getAccessRestrictions": [Function],
|
||||||
|
"getAdminBranchProtection": [Function],
|
||||||
|
"getAllStatusCheckContexts": [Function],
|
||||||
|
"getAllTopics": [Function],
|
||||||
|
"getAppsWithAccessToProtectedBranch": [Function],
|
||||||
|
"getArchiveLink": [Function],
|
||||||
|
"getBranch": [Function],
|
||||||
|
"getBranchProtection": [Function],
|
||||||
|
"getClones": [Function],
|
||||||
|
"getCodeFrequencyStats": [Function],
|
||||||
|
"getCollaboratorPermissionLevel": [Function],
|
||||||
|
"getCombinedStatusForRef": [Function],
|
||||||
|
"getCommit": [Function],
|
||||||
|
"getCommitActivityStats": [Function],
|
||||||
|
"getCommitComment": [Function],
|
||||||
|
"getCommitSignatureProtection": [Function],
|
||||||
|
"getCommunityProfileMetrics": [Function],
|
||||||
|
"getContent": [Function],
|
||||||
|
"getContents": [Function],
|
||||||
|
"getContributorsStats": [Function],
|
||||||
|
"getDeployKey": [Function],
|
||||||
|
"getDeployment": [Function],
|
||||||
|
"getDeploymentStatus": [Function],
|
||||||
|
"getDownload": [Function],
|
||||||
|
"getHook": [Function],
|
||||||
|
"getLatestPagesBuild": [Function],
|
||||||
|
"getLatestRelease": [Function],
|
||||||
|
"getPages": [Function],
|
||||||
|
"getPagesBuild": [Function],
|
||||||
|
"getParticipationStats": [Function],
|
||||||
|
"getProtectedBranchAdminEnforcement": [Function],
|
||||||
|
"getProtectedBranchPullRequestReviewEnforcement": [Function],
|
||||||
|
"getProtectedBranchRequiredSignatures": [Function],
|
||||||
|
"getProtectedBranchRequiredStatusChecks": [Function],
|
||||||
|
"getProtectedBranchRestrictions": [Function],
|
||||||
|
"getPullRequestReviewProtection": [Function],
|
||||||
|
"getPunchCardStats": [Function],
|
||||||
|
"getReadme": [Function],
|
||||||
|
"getRelease": [Function],
|
||||||
|
"getReleaseAsset": [Function],
|
||||||
|
"getReleaseByTag": [Function],
|
||||||
|
"getStatusChecksProtection": [Function],
|
||||||
|
"getTeamsWithAccessToProtectedBranch": [Function],
|
||||||
|
"getTopPaths": [Function],
|
||||||
|
"getTopReferrers": [Function],
|
||||||
|
"getUsersWithAccessToProtectedBranch": [Function],
|
||||||
|
"getViews": [Function],
|
||||||
|
"getWebhook": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listAssetsForRelease": [Function],
|
||||||
|
"listBranches": [Function],
|
||||||
|
"listBranchesForHeadCommit": [Function],
|
||||||
|
"listCollaborators": [Function],
|
||||||
|
"listCommentsForCommit": [Function],
|
||||||
|
"listCommitComments": [Function],
|
||||||
|
"listCommitCommentsForRepo": [Function],
|
||||||
|
"listCommitStatusesForRef": [Function],
|
||||||
|
"listCommits": [Function],
|
||||||
|
"listContributors": [Function],
|
||||||
|
"listDeployKeys": [Function],
|
||||||
|
"listDeploymentStatuses": [Function],
|
||||||
|
"listDeployments": [Function],
|
||||||
|
"listDownloads": [Function],
|
||||||
|
"listForAuthenticatedUser": [Function],
|
||||||
|
"listForOrg": [Function],
|
||||||
|
"listForUser": [Function],
|
||||||
|
"listForks": [Function],
|
||||||
|
"listHooks": [Function],
|
||||||
|
"listInvitations": [Function],
|
||||||
|
"listInvitationsForAuthenticatedUser": [Function],
|
||||||
|
"listLanguages": [Function],
|
||||||
|
"listPagesBuilds": [Function],
|
||||||
|
"listProtectedBranchRequiredStatusChecksContexts": [Function],
|
||||||
|
"listPublic": [Function],
|
||||||
|
"listPullRequestsAssociatedWithCommit": [Function],
|
||||||
|
"listReleaseAssets": [Function],
|
||||||
|
"listReleases": [Function],
|
||||||
|
"listStatusesForRef": [Function],
|
||||||
|
"listTags": [Function],
|
||||||
|
"listTeams": [Function],
|
||||||
|
"listTopics": [Function],
|
||||||
|
"listWebhooks": [Function],
|
||||||
|
"merge": [Function],
|
||||||
|
"pingHook": [Function],
|
||||||
|
"pingWebhook": [Function],
|
||||||
|
"removeAppAccessRestrictions": [Function],
|
||||||
|
"removeBranchProtection": [Function],
|
||||||
|
"removeCollaborator": [Function],
|
||||||
|
"removeDeployKey": [Function],
|
||||||
|
"removeProtectedBranchAdminEnforcement": [Function],
|
||||||
|
"removeProtectedBranchAppRestrictions": [Function],
|
||||||
|
"removeProtectedBranchPullRequestReviewEnforcement": [Function],
|
||||||
|
"removeProtectedBranchRequiredSignatures": [Function],
|
||||||
|
"removeProtectedBranchRequiredStatusChecks": [Function],
|
||||||
|
"removeProtectedBranchRequiredStatusChecksContexts": [Function],
|
||||||
|
"removeProtectedBranchRestrictions": [Function],
|
||||||
|
"removeProtectedBranchTeamRestrictions": [Function],
|
||||||
|
"removeProtectedBranchUserRestrictions": [Function],
|
||||||
|
"removeStatusCheckContexts": [Function],
|
||||||
|
"removeStatusCheckProtection": [Function],
|
||||||
|
"removeTeamAccessRestrictions": [Function],
|
||||||
|
"removeUserAccessRestrictions": [Function],
|
||||||
|
"replaceAllTopics": [Function],
|
||||||
|
"replaceProtectedBranchAppRestrictions": [Function],
|
||||||
|
"replaceProtectedBranchRequiredStatusChecksContexts": [Function],
|
||||||
|
"replaceProtectedBranchTeamRestrictions": [Function],
|
||||||
|
"replaceProtectedBranchUserRestrictions": [Function],
|
||||||
|
"replaceTopics": [Function],
|
||||||
|
"requestPageBuild": [Function],
|
||||||
|
"requestPagesBuild": [Function],
|
||||||
|
"retrieveCommunityProfileMetrics": [Function],
|
||||||
|
"setAdminBranchProtection": [Function],
|
||||||
|
"setAppAccessRestrictions": [Function],
|
||||||
|
"setStatusCheckContexts": [Function],
|
||||||
|
"setTeamAccessRestrictions": [Function],
|
||||||
|
"setUserAccessRestrictions": [Function],
|
||||||
|
"testPushHook": [Function],
|
||||||
|
"testPushWebhook": [Function],
|
||||||
|
"transfer": [Function],
|
||||||
|
"update": [Function],
|
||||||
|
"updateBranchProtection": [Function],
|
||||||
|
"updateCommitComment": [Function],
|
||||||
|
"updateHook": [Function],
|
||||||
|
"updateInformationAboutPagesSite": [Function],
|
||||||
|
"updateInvitation": [Function],
|
||||||
|
"updateProtectedBranchPullRequestReviewEnforcement": [Function],
|
||||||
|
"updateProtectedBranchRequiredStatusChecks": [Function],
|
||||||
|
"updatePullRequestReviewProtection": [Function],
|
||||||
|
"updateRelease": [Function],
|
||||||
|
"updateReleaseAsset": [Function],
|
||||||
|
"updateStatusCheckPotection": [Function],
|
||||||
|
"updateWebhook": [Function],
|
||||||
|
"uploadReleaseAsset": [Function],
|
||||||
|
},
|
||||||
|
"request": [Function],
|
||||||
|
"search": Object {
|
||||||
|
"code": [Function],
|
||||||
|
"commits": [Function],
|
||||||
|
"issuesAndPullRequests": [Function],
|
||||||
|
"labels": [Function],
|
||||||
|
"repos": [Function],
|
||||||
|
"topics": [Function],
|
||||||
|
"users": [Function],
|
||||||
|
},
|
||||||
|
"teams": Object {
|
||||||
|
"addOrUpdateMembershipForUserInOrg": [Function],
|
||||||
|
"addOrUpdateMembershipInOrg": [Function],
|
||||||
|
"addOrUpdateProjectInOrg": [Function],
|
||||||
|
"addOrUpdateProjectPermissionsInOrg": [Function],
|
||||||
|
"addOrUpdateRepoInOrg": [Function],
|
||||||
|
"addOrUpdateRepoPermissionsInOrg": [Function],
|
||||||
|
"checkManagesRepoInOrg": [Function],
|
||||||
|
"checkPermissionsForProjectInOrg": [Function],
|
||||||
|
"checkPermissionsForRepoInOrg": [Function],
|
||||||
|
"create": [Function],
|
||||||
|
"createDiscussionCommentInOrg": [Function],
|
||||||
|
"createDiscussionInOrg": [Function],
|
||||||
|
"deleteDiscussionCommentInOrg": [Function],
|
||||||
|
"deleteDiscussionInOrg": [Function],
|
||||||
|
"deleteInOrg": [Function],
|
||||||
|
"getByName": [Function],
|
||||||
|
"getDiscussionCommentInOrg": [Function],
|
||||||
|
"getDiscussionInOrg": [Function],
|
||||||
|
"getMembershipForUserInOrg": [Function],
|
||||||
|
"getMembershipInOrg": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listChildInOrg": [Function],
|
||||||
|
"listDiscussionCommentsInOrg": [Function],
|
||||||
|
"listDiscussionsInOrg": [Function],
|
||||||
|
"listForAuthenticatedUser": [Function],
|
||||||
|
"listMembersInOrg": [Function],
|
||||||
|
"listPendingInvitationsInOrg": [Function],
|
||||||
|
"listProjectsInOrg": [Function],
|
||||||
|
"listReposInOrg": [Function],
|
||||||
|
"removeMembershipForUserInOrg": [Function],
|
||||||
|
"removeMembershipInOrg": [Function],
|
||||||
|
"removeProjectInOrg": [Function],
|
||||||
|
"removeRepoInOrg": [Function],
|
||||||
|
"reviewProjectInOrg": [Function],
|
||||||
|
"updateDiscussionCommentInOrg": [Function],
|
||||||
|
"updateDiscussionInOrg": [Function],
|
||||||
|
"updateInOrg": [Function],
|
||||||
|
},
|
||||||
|
"users": Object {
|
||||||
|
"addEmailForAuthenticated": [Function],
|
||||||
|
"addEmails": [Function],
|
||||||
|
"block": [Function],
|
||||||
|
"checkBlocked": [Function],
|
||||||
|
"checkFollowing": [Function],
|
||||||
|
"checkFollowingForUser": [Function],
|
||||||
|
"checkPersonIsFollowedByAuthenticated": [Function],
|
||||||
|
"createGpgKey": [Function],
|
||||||
|
"createGpgKeyForAuthenticated": [Function],
|
||||||
|
"createPublicKey": [Function],
|
||||||
|
"createPublicSshKeyForAuthenticated": [Function],
|
||||||
|
"deleteEmailForAuthenticated": [Function],
|
||||||
|
"deleteEmails": [Function],
|
||||||
|
"deleteGpgKey": [Function],
|
||||||
|
"deleteGpgKeyForAuthenticated": [Function],
|
||||||
|
"deletePublicKey": [Function],
|
||||||
|
"deletePublicSshKeyForAuthenticated": [Function],
|
||||||
|
"follow": [Function],
|
||||||
|
"getAuthenticated": [Function],
|
||||||
|
"getByUsername": [Function],
|
||||||
|
"getContextForUser": [Function],
|
||||||
|
"getGpgKey": [Function],
|
||||||
|
"getGpgKeyForAuthenticated": [Function],
|
||||||
|
"getPublicKey": [Function],
|
||||||
|
"getPublicSshKeyForAuthenticated": [Function],
|
||||||
|
"list": [Function],
|
||||||
|
"listBlocked": [Function],
|
||||||
|
"listBlockedByAuthenticated": [Function],
|
||||||
|
"listEmails": [Function],
|
||||||
|
"listEmailsForAuthenticated": [Function],
|
||||||
|
"listFollowedByAuthenticated": [Function],
|
||||||
|
"listFollowersForAuthenticatedUser": [Function],
|
||||||
|
"listFollowersForUser": [Function],
|
||||||
|
"listFollowingForAuthenticatedUser": [Function],
|
||||||
|
"listFollowingForUser": [Function],
|
||||||
|
"listGpgKeys": [Function],
|
||||||
|
"listGpgKeysForAuthenticated": [Function],
|
||||||
|
"listGpgKeysForUser": [Function],
|
||||||
|
"listPublicEmails": [Function],
|
||||||
|
"listPublicEmailsForAuthenticated": [Function],
|
||||||
|
"listPublicKeys": [Function],
|
||||||
|
"listPublicKeysForUser": [Function],
|
||||||
|
"listPublicSshKeysForAuthenticated": [Function],
|
||||||
|
"setPrimaryEmailVisibilityForAuthenticated": [Function],
|
||||||
|
"togglePrimaryEmailVisibility": [Function],
|
||||||
|
"unblock": [Function],
|
||||||
|
"unfollow": [Function],
|
||||||
|
"updateAuthenticated": [Function],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"hasStorageAnalyticsAfecFeature": [Function],
|
||||||
"isAccountReady": [Function],
|
"isAccountReady": [Function],
|
||||||
"isFixedCollectionWithSharedThroughputSupported": [Function],
|
"isFixedCollectionWithSharedThroughputSupported": [Function],
|
||||||
"isHostedDataExplorerEnabled": [Function],
|
"isHostedDataExplorerEnabled": [Function],
|
||||||
"isLastCollection": [Function],
|
"isLastCollection": [Function],
|
||||||
"isLastNonEmptyDatabase": [Function],
|
"isLastNonEmptyDatabase": [Function],
|
||||||
|
"isLeftPaneExpanded": [Function],
|
||||||
|
"isMongoIndexingEnabled": [Function],
|
||||||
"isNotebookEnabled": [Function],
|
"isNotebookEnabled": [Function],
|
||||||
"isNotebooksEnabledForAccount": [Function],
|
"isNotebooksEnabledForAccount": [Function],
|
||||||
|
"isPublishNotebookPaneEnabled": [Function],
|
||||||
"isResourceTokenCollectionNodeSelected": [Function],
|
"isResourceTokenCollectionNodeSelected": [Function],
|
||||||
"isSchemaEnabled": [Function],
|
"isSchemaEnabled": [Function],
|
||||||
"isSelectedDatabaseShared": [Function],
|
"isSelectedDatabaseShared": [Function],
|
||||||
"isServerlessEnabled": [Function],
|
"isServerlessEnabled": [Function],
|
||||||
"isShellEnabled": [Function],
|
"isShellEnabled": [Function],
|
||||||
|
"isSparkEnabled": [Function],
|
||||||
|
"isSparkEnabledForAccount": [Function],
|
||||||
"isSynapseLinkUpdating": [Function],
|
"isSynapseLinkUpdating": [Function],
|
||||||
"isTabsContentExpanded": [Function],
|
"isTabsContentExpanded": [Function],
|
||||||
|
"junoClient": JunoClient {
|
||||||
|
"cachedPinnedRepos": [Function],
|
||||||
|
},
|
||||||
"memoryUsageInfo": [Function],
|
"memoryUsageInfo": [Function],
|
||||||
"notebookBasePath": [Function],
|
"notebookBasePath": [Function],
|
||||||
"notebookServerInfo": [Function],
|
"notebookServerInfo": [Function],
|
||||||
|
"onGitHubClientError": [Function],
|
||||||
"onRefreshDatabasesKeyPress": [Function],
|
"onRefreshDatabasesKeyPress": [Function],
|
||||||
"onRefreshResourcesClick": [Function],
|
"onRefreshResourcesClick": [Function],
|
||||||
|
"openSidePanel": undefined,
|
||||||
"provideFeedbackEmail": [Function],
|
"provideFeedbackEmail": [Function],
|
||||||
"queriesClient": QueriesClient {
|
"queriesClient": QueriesClient {
|
||||||
"container": [Circular],
|
"container": [Circular],
|
||||||
},
|
},
|
||||||
"refreshAllDatabases": [Function],
|
"refreshAllDatabases": [Function],
|
||||||
"refreshNotebookList": [Function],
|
"refreshNotebookList": [Function],
|
||||||
|
"refreshTreeTitle": [Function],
|
||||||
"resourceTokenCollection": [Function],
|
"resourceTokenCollection": [Function],
|
||||||
"resourceTokenCollectionId": [Function],
|
"resourceTokenCollectionId": [Function],
|
||||||
"resourceTokenDatabaseId": [Function],
|
"resourceTokenDatabaseId": [Function],
|
||||||
@@ -54,6 +859,7 @@ exports[`Delete Database Confirmation Pane submit() Should call delete database
|
|||||||
"selectedDatabaseId": [Function],
|
"selectedDatabaseId": [Function],
|
||||||
"selectedNode": [Function],
|
"selectedNode": [Function],
|
||||||
"setInProgressConsoleDataIdToBeDeleted": undefined,
|
"setInProgressConsoleDataIdToBeDeleted": undefined,
|
||||||
|
"setIsNotificationConsoleExpanded": undefined,
|
||||||
"setNotificationConsoleData": undefined,
|
"setNotificationConsoleData": undefined,
|
||||||
"sparkClusterConnectionInfo": [Function],
|
"sparkClusterConnectionInfo": [Function],
|
||||||
"splitter": Splitter {
|
"splitter": Splitter {
|
||||||
@@ -72,6 +878,7 @@ exports[`Delete Database Confirmation Pane submit() Should call delete database
|
|||||||
"activeTab": [Function],
|
"activeTab": [Function],
|
||||||
"openedTabs": [Function],
|
"openedTabs": [Function],
|
||||||
},
|
},
|
||||||
|
"toggleLeftPaneExpandedKeyPress": [Function],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
openNotificationConsole={[Function]}
|
openNotificationConsole={[Function]}
|
||||||
@@ -83,6 +890,7 @@ exports[`Delete Database Confirmation Pane submit() Should call delete database
|
|||||||
}
|
}
|
||||||
>
|
>
|
||||||
<RightPaneForm
|
<RightPaneForm
|
||||||
|
expandConsole={[Function]}
|
||||||
formError=""
|
formError=""
|
||||||
isExecuting={false}
|
isExecuting={false}
|
||||||
onSubmit={[Function]}
|
onSubmit={[Function]}
|
||||||
|
|||||||
@@ -1,14 +1,15 @@
|
|||||||
import * as ko from "knockout";
|
import * as ko from "knockout";
|
||||||
import { DataSamplesUtil } from "../DataSamples/DataSamplesUtil";
|
import { DataSamplesUtil } from "../DataSamples/DataSamplesUtil";
|
||||||
import Explorer from "../Explorer";
|
|
||||||
import { TabsManager } from "../Tabs/TabsManager";
|
|
||||||
import { SplashScreen } from "./SplashScreen";
|
import { SplashScreen } from "./SplashScreen";
|
||||||
|
import { TabsManager } from "../Tabs/TabsManager";
|
||||||
|
import Explorer from "../Explorer";
|
||||||
jest.mock("../Explorer");
|
jest.mock("../Explorer");
|
||||||
|
|
||||||
const createExplorer = () => {
|
const createExplorer = () => {
|
||||||
const mock = new Explorer();
|
const mock = new Explorer();
|
||||||
mock.selectedNode = ko.observable();
|
mock.selectedNode = ko.observable();
|
||||||
mock.isNotebookEnabled = ko.observable(false);
|
mock.isNotebookEnabled = ko.observable(false);
|
||||||
|
mock.addCollectionText = ko.observable("add collection");
|
||||||
mock.tabsManager = new TabsManager();
|
mock.tabsManager = new TabsManager();
|
||||||
return mock as jest.Mocked<Explorer>;
|
return mock as jest.Mocked<Explorer>;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ import { AuthType } from "../../AuthType";
|
|||||||
import * as Constants from "../../Common/Constants";
|
import * as Constants from "../../Common/Constants";
|
||||||
import * as ViewModels from "../../Contracts/ViewModels";
|
import * as ViewModels from "../../Contracts/ViewModels";
|
||||||
import { userContext } from "../../UserContext";
|
import { userContext } from "../../UserContext";
|
||||||
import { getCollectionName, getDatabaseName } from "../../Utils/APITypeUtils";
|
import { getDatabaseName } from "../../Utils/APITypeUtils";
|
||||||
import { FeaturePanelLauncher } from "../Controls/FeaturePanel/FeaturePanelLauncher";
|
import { FeaturePanelLauncher } from "../Controls/FeaturePanel/FeaturePanelLauncher";
|
||||||
import { DataSamplesUtil } from "../DataSamples/DataSamplesUtil";
|
import { DataSamplesUtil } from "../DataSamples/DataSamplesUtil";
|
||||||
import Explorer from "../Explorer";
|
import Explorer from "../Explorer";
|
||||||
@@ -192,7 +192,7 @@ export class SplashScreen extends React.Component<SplashScreenProps> {
|
|||||||
const heroes: SplashScreenItem[] = [
|
const heroes: SplashScreenItem[] = [
|
||||||
{
|
{
|
||||||
iconSrc: NewContainerIcon,
|
iconSrc: NewContainerIcon,
|
||||||
title: `New ${getCollectionName()}`,
|
title: this.container.addCollectionText(),
|
||||||
description: "Create a new container for storage and throughput",
|
description: "Create a new container for storage and throughput",
|
||||||
onClick: () => this.container.onNewCollectionClicked(),
|
onClick: () => this.container.onNewCollectionClicked(),
|
||||||
},
|
},
|
||||||
@@ -250,14 +250,12 @@ export class SplashScreen extends React.Component<SplashScreenProps> {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (userContext.apiType === "SQL") {
|
|
||||||
items.push({
|
items.push({
|
||||||
iconSrc: OpenQueryIcon,
|
iconSrc: OpenQueryIcon,
|
||||||
title: "Open Query",
|
title: "Open Query",
|
||||||
description: null,
|
description: null,
|
||||||
onClick: () => this.container.openBrowseQueriesPanel(),
|
onClick: () => this.container.openBrowseQueriesPanel(),
|
||||||
});
|
});
|
||||||
}
|
|
||||||
|
|
||||||
if (userContext.apiType !== "Cassandra") {
|
if (userContext.apiType !== "Cassandra") {
|
||||||
items.push({
|
items.push({
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import * as ko from "knockout";
|
|||||||
import { DatabaseAccount } from "../../Contracts/DataModels";
|
import { DatabaseAccount } from "../../Contracts/DataModels";
|
||||||
import * as ViewModels from "../../Contracts/ViewModels";
|
import * as ViewModels from "../../Contracts/ViewModels";
|
||||||
import { updateUserContext } from "../../UserContext";
|
import { updateUserContext } from "../../UserContext";
|
||||||
|
import { CommandButtonComponentProps } from "../Controls/CommandButton/CommandButtonComponent";
|
||||||
import Explorer from "../Explorer";
|
import Explorer from "../Explorer";
|
||||||
import DocumentId from "../Tree/DocumentId";
|
import DocumentId from "../Tree/DocumentId";
|
||||||
import DocumentsTab from "./DocumentsTab";
|
import DocumentsTab from "./DocumentsTab";
|
||||||
@@ -16,6 +17,7 @@ describe("Documents tab", () => {
|
|||||||
title: "",
|
title: "",
|
||||||
tabPath: "",
|
tabPath: "",
|
||||||
hashLocation: "",
|
hashLocation: "",
|
||||||
|
onUpdateTabsButtons: (buttons: CommandButtonComponentProps[]): void => {},
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(documentsTab.buildQuery("")).toContain("select");
|
expect(documentsTab.buildQuery("")).toContain("select");
|
||||||
@@ -91,6 +93,7 @@ describe("Documents tab", () => {
|
|||||||
title: "",
|
title: "",
|
||||||
tabPath: "",
|
tabPath: "",
|
||||||
hashLocation: "",
|
hashLocation: "",
|
||||||
|
onUpdateTabsButtons: (buttons: CommandButtonComponentProps[]): void => {},
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(documentsTab.showPartitionKey).toBe(false);
|
expect(documentsTab.showPartitionKey).toBe(false);
|
||||||
@@ -105,6 +108,7 @@ describe("Documents tab", () => {
|
|||||||
title: "",
|
title: "",
|
||||||
tabPath: "",
|
tabPath: "",
|
||||||
hashLocation: "",
|
hashLocation: "",
|
||||||
|
onUpdateTabsButtons: (buttons: CommandButtonComponentProps[]): void => {},
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(documentsTab.showPartitionKey).toBe(false);
|
expect(documentsTab.showPartitionKey).toBe(false);
|
||||||
@@ -119,6 +123,7 @@ describe("Documents tab", () => {
|
|||||||
title: "",
|
title: "",
|
||||||
tabPath: "",
|
tabPath: "",
|
||||||
hashLocation: "",
|
hashLocation: "",
|
||||||
|
onUpdateTabsButtons: (buttons: CommandButtonComponentProps[]): void => {},
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(documentsTab.showPartitionKey).toBe(true);
|
expect(documentsTab.showPartitionKey).toBe(true);
|
||||||
@@ -136,6 +141,7 @@ describe("Documents tab", () => {
|
|||||||
title: "",
|
title: "",
|
||||||
tabPath: "",
|
tabPath: "",
|
||||||
hashLocation: "",
|
hashLocation: "",
|
||||||
|
onUpdateTabsButtons: (buttons: CommandButtonComponentProps[]): void => {},
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(documentsTab.showPartitionKey).toBe(false);
|
expect(documentsTab.showPartitionKey).toBe(false);
|
||||||
@@ -150,6 +156,7 @@ describe("Documents tab", () => {
|
|||||||
title: "",
|
title: "",
|
||||||
tabPath: "",
|
tabPath: "",
|
||||||
hashLocation: "",
|
hashLocation: "",
|
||||||
|
onUpdateTabsButtons: (buttons: CommandButtonComponentProps[]): void => {},
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(documentsTab.showPartitionKey).toBe(true);
|
expect(documentsTab.showPartitionKey).toBe(true);
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ import NewVertexIcon from "../../../images/NewVertex.svg";
|
|||||||
import StyleIcon from "../../../images/Style.svg";
|
import StyleIcon from "../../../images/Style.svg";
|
||||||
import { DatabaseAccount } from "../../Contracts/DataModels";
|
import { DatabaseAccount } from "../../Contracts/DataModels";
|
||||||
import * as ViewModels from "../../Contracts/ViewModels";
|
import * as ViewModels from "../../Contracts/ViewModels";
|
||||||
import { useSidePanel } from "../../hooks/useSidePanel";
|
|
||||||
import { CommandButtonComponentProps } from "../Controls/CommandButton/CommandButtonComponent";
|
import { CommandButtonComponentProps } from "../Controls/CommandButton/CommandButtonComponent";
|
||||||
import {
|
import {
|
||||||
GraphAccessor,
|
GraphAccessor,
|
||||||
@@ -12,6 +11,9 @@ import {
|
|||||||
GraphExplorerError,
|
GraphExplorerError,
|
||||||
GraphExplorerProps,
|
GraphExplorerProps,
|
||||||
} from "../Graph/GraphExplorerComponent/GraphExplorer";
|
} from "../Graph/GraphExplorerComponent/GraphExplorer";
|
||||||
|
// import { GraphAccessor, GraphExplorer, GraphExplorerError } from "../Graph/GraphExplorerComponent/GraphExplorer";
|
||||||
|
// import { GraphExplorerAdapter } from "../Graph/GraphExplorerComponent/GraphExplorerAdapter";
|
||||||
|
import { ContextualPaneBase } from "../Panes/ContextualPaneBase";
|
||||||
import { GraphStylingPanel } from "../Panes/GraphStylingPanel/GraphStylingPanel";
|
import { GraphStylingPanel } from "../Panes/GraphStylingPanel/GraphStylingPanel";
|
||||||
import { NewVertexPanel } from "../Panes/NewVertexPanel/NewVertexPanel";
|
import { NewVertexPanel } from "../Panes/NewVertexPanel/NewVertexPanel";
|
||||||
import TabsBase from "./TabsBase";
|
import TabsBase from "./TabsBase";
|
||||||
@@ -69,6 +71,7 @@ export default class GraphTab extends TabsBase {
|
|||||||
private isFilterQueryLoading: ko.Observable<boolean>;
|
private isFilterQueryLoading: ko.Observable<boolean>;
|
||||||
private isValidQuery: ko.Observable<boolean>;
|
private isValidQuery: ko.Observable<boolean>;
|
||||||
private collectionPartitionKeyProperty: string;
|
private collectionPartitionKeyProperty: string;
|
||||||
|
private contextualPane: ContextualPaneBase;
|
||||||
public graphExplorer: GraphExplorer;
|
public graphExplorer: GraphExplorer;
|
||||||
public options: GraphTabOptions;
|
public options: GraphTabOptions;
|
||||||
constructor(options: GraphTabOptions) {
|
constructor(options: GraphTabOptions) {
|
||||||
@@ -156,10 +159,12 @@ export default class GraphTab extends TabsBase {
|
|||||||
|
|
||||||
/* Command bar */
|
/* Command bar */
|
||||||
private showNewVertexEditor(): void {
|
private showNewVertexEditor(): void {
|
||||||
useSidePanel.getState().openSidePanel(
|
this.collection.container.openSidePanel(
|
||||||
"New Vertex",
|
"New Vertex",
|
||||||
<NewVertexPanel
|
<NewVertexPanel
|
||||||
|
explorer={this.collection.container}
|
||||||
partitionKeyPropertyProp={this.collectionPartitionKeyProperty}
|
partitionKeyPropertyProp={this.collectionPartitionKeyProperty}
|
||||||
|
openNotificationConsole={() => this.collection.container.expandConsole()}
|
||||||
onSubmit={(
|
onSubmit={(
|
||||||
result: ViewModels.NewVertexData,
|
result: ViewModels.NewVertexData,
|
||||||
onError: (errorMessage: string) => void,
|
onError: (errorMessage: string) => void,
|
||||||
@@ -168,7 +173,7 @@ export default class GraphTab extends TabsBase {
|
|||||||
this.graphAccessor.addVertex(result).then(
|
this.graphAccessor.addVertex(result).then(
|
||||||
() => {
|
() => {
|
||||||
onSuccess();
|
onSuccess();
|
||||||
useSidePanel.getState().closeSidePanel();
|
this.contextualPane.cancel();
|
||||||
},
|
},
|
||||||
(error: GraphExplorerError) => {
|
(error: GraphExplorerError) => {
|
||||||
onError(error.title);
|
onError(error.title);
|
||||||
@@ -179,9 +184,10 @@ export default class GraphTab extends TabsBase {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
public openStyling(): void {
|
public openStyling(): void {
|
||||||
useSidePanel.getState().openSidePanel(
|
this.collection.container.openSidePanel(
|
||||||
"Graph Style",
|
"Graph Style",
|
||||||
<GraphStylingPanel
|
<GraphStylingPanel
|
||||||
|
closePanel={this.collection.container.closeSidePanel}
|
||||||
igraphConfigUiData={this.igraphConfigUiData}
|
igraphConfigUiData={this.igraphConfigUiData}
|
||||||
igraphConfig={this.igraphConfig}
|
igraphConfig={this.igraphConfig}
|
||||||
getValues={(igraphConfig?: IGraphConfig): void => {
|
getValues={(igraphConfig?: IGraphConfig): void => {
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import { stringifyNotebook, toJS } from "@nteract/commutable";
|
import { stringifyNotebook, toJS } from "@nteract/commutable";
|
||||||
import * as ko from "knockout";
|
import * as ko from "knockout";
|
||||||
import * as Q from "q";
|
import * as Q from "q";
|
||||||
|
import * as _ from "underscore";
|
||||||
import ClearAllOutputsIcon from "../../../images/notebook/Notebook-clear-all-outputs.svg";
|
import ClearAllOutputsIcon from "../../../images/notebook/Notebook-clear-all-outputs.svg";
|
||||||
import CopyIcon from "../../../images/notebook/Notebook-copy.svg";
|
import CopyIcon from "../../../images/notebook/Notebook-copy.svg";
|
||||||
import CutIcon from "../../../images/notebook/Notebook-cut.svg";
|
import CutIcon from "../../../images/notebook/Notebook-cut.svg";
|
||||||
@@ -11,9 +12,14 @@ import RunAllIcon from "../../../images/notebook/Notebook-run-all.svg";
|
|||||||
import RunIcon from "../../../images/notebook/Notebook-run.svg";
|
import RunIcon from "../../../images/notebook/Notebook-run.svg";
|
||||||
import { default as InterruptKernelIcon, default as KillKernelIcon } from "../../../images/notebook/Notebook-stop.svg";
|
import { default as InterruptKernelIcon, default as KillKernelIcon } from "../../../images/notebook/Notebook-stop.svg";
|
||||||
import SaveIcon from "../../../images/save-cosmos.svg";
|
import SaveIcon from "../../../images/save-cosmos.svg";
|
||||||
|
import { ArmApiVersions } from "../../Common/Constants";
|
||||||
|
import { configContext } from "../../ConfigContext";
|
||||||
|
import * as DataModels from "../../Contracts/DataModels";
|
||||||
import { useNotebookSnapshotStore } from "../../hooks/useNotebookSnapshotStore";
|
import { useNotebookSnapshotStore } from "../../hooks/useNotebookSnapshotStore";
|
||||||
|
import { trackEvent } from "../../Shared/appInsights";
|
||||||
import { Action, ActionModifiers, Source } from "../../Shared/Telemetry/TelemetryConstants";
|
import { Action, ActionModifiers, Source } from "../../Shared/Telemetry/TelemetryConstants";
|
||||||
import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor";
|
import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor";
|
||||||
|
import { userContext } from "../../UserContext";
|
||||||
import * as NotebookConfigurationUtils from "../../Utils/NotebookConfigurationUtils";
|
import * as NotebookConfigurationUtils from "../../Utils/NotebookConfigurationUtils";
|
||||||
import { logConsoleInfo } from "../../Utils/NotificationConsoleUtils";
|
import { logConsoleInfo } from "../../Utils/NotificationConsoleUtils";
|
||||||
import { CommandButtonComponentProps } from "../Controls/CommandButton/CommandButtonComponent";
|
import { CommandButtonComponentProps } from "../Controls/CommandButton/CommandButtonComponent";
|
||||||
@@ -32,6 +38,7 @@ export interface NotebookTabOptions extends NotebookTabBaseOptions {
|
|||||||
export default class NotebookTabV2 extends NotebookTabBase {
|
export default class NotebookTabV2 extends NotebookTabBase {
|
||||||
public readonly html = '<div data-bind="react:notebookComponentAdapter" style="height: 100%"></div>';
|
public readonly html = '<div data-bind="react:notebookComponentAdapter" style="height: 100%"></div>';
|
||||||
public notebookPath: ko.Observable<string>;
|
public notebookPath: ko.Observable<string>;
|
||||||
|
private selectedSparkPool: ko.Observable<string>;
|
||||||
private notebookComponentAdapter: NotebookComponentAdapter;
|
private notebookComponentAdapter: NotebookComponentAdapter;
|
||||||
|
|
||||||
constructor(options: NotebookTabOptions) {
|
constructor(options: NotebookTabOptions) {
|
||||||
@@ -46,6 +53,16 @@ export default class NotebookTabV2 extends NotebookTabBase {
|
|||||||
notebookClient: NotebookTabBase.clientManager,
|
notebookClient: NotebookTabBase.clientManager,
|
||||||
onUpdateKernelInfo: this.onKernelUpdate,
|
onUpdateKernelInfo: this.onKernelUpdate,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.selectedSparkPool = ko.observable<string>(null);
|
||||||
|
this.container &&
|
||||||
|
this.container.arcadiaToken.subscribe(async () => {
|
||||||
|
const currentKernel = this.notebookComponentAdapter.getCurrentKernelName();
|
||||||
|
if (!currentKernel) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
await this.configureServiceEndpoints(currentKernel);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public onCloseTabButtonClick(): Q.Promise<any> {
|
public onCloseTabButtonClick(): Q.Promise<any> {
|
||||||
@@ -344,6 +361,32 @@ export default class NotebookTabV2 extends NotebookTabBase {
|
|||||||
},
|
},
|
||||||
// TODO: Uncomment when undo/redo is reimplemented in nteract
|
// TODO: Uncomment when undo/redo is reimplemented in nteract
|
||||||
];
|
];
|
||||||
|
|
||||||
|
if (this.container.hasStorageAnalyticsAfecFeature()) {
|
||||||
|
const arcadiaWorkspaceDropdown: CommandButtonComponentProps = {
|
||||||
|
iconSrc: null,
|
||||||
|
iconAlt: workspaceLabel,
|
||||||
|
ariaLabel: workspaceLabel,
|
||||||
|
onCommandClick: () => {},
|
||||||
|
commandButtonLabel: null,
|
||||||
|
hasPopup: false,
|
||||||
|
disabled: this.container.arcadiaWorkspaces.length < 1,
|
||||||
|
isDropdown: false,
|
||||||
|
isArcadiaPicker: true,
|
||||||
|
arcadiaProps: {
|
||||||
|
selectedSparkPool: this.selectedSparkPool(),
|
||||||
|
workspaces: this.container.arcadiaWorkspaces(),
|
||||||
|
onSparkPoolSelect: this.onSparkPoolSelect,
|
||||||
|
onCreateNewWorkspaceClicked: () => {
|
||||||
|
this.container.createWorkspace();
|
||||||
|
},
|
||||||
|
onCreateNewSparkPoolClicked: (workspaceResourceId: string) => {
|
||||||
|
this.container.createSparkPool(workspaceResourceId);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
buttons.splice(1, 0, arcadiaWorkspaceDropdown);
|
||||||
|
}
|
||||||
return buttons;
|
return buttons;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -351,6 +394,50 @@ export default class NotebookTabV2 extends NotebookTabBase {
|
|||||||
this.updateNavbarWithTabsButtons();
|
this.updateNavbarWithTabsButtons();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private onSparkPoolSelect = (evt: React.MouseEvent<HTMLElement> | React.KeyboardEvent<HTMLElement>, item: any) => {
|
||||||
|
if (!item || !item.text) {
|
||||||
|
this.selectedSparkPool(null);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
trackEvent(
|
||||||
|
{ name: "SparkPoolSelected" },
|
||||||
|
{
|
||||||
|
subscriptionId: userContext.subscriptionId,
|
||||||
|
accountName: userContext.databaseAccount?.name,
|
||||||
|
accountId: userContext.databaseAccount?.id,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
this.container &&
|
||||||
|
this.container.arcadiaWorkspaces &&
|
||||||
|
this.container.arcadiaWorkspaces() &&
|
||||||
|
this.container.arcadiaWorkspaces().forEach(async (workspace) => {
|
||||||
|
if (workspace && workspace.name && workspace.sparkPools) {
|
||||||
|
const selectedPoolIndex = _.findIndex(workspace.sparkPools, (pool) => pool && pool.name === item.text);
|
||||||
|
if (selectedPoolIndex >= 0) {
|
||||||
|
const selectedPool = workspace.sparkPools[selectedPoolIndex];
|
||||||
|
if (selectedPool && selectedPool.name) {
|
||||||
|
this.container.sparkClusterConnectionInfo({
|
||||||
|
userName: undefined,
|
||||||
|
password: undefined,
|
||||||
|
endpoints: [
|
||||||
|
{
|
||||||
|
endpoint: `https://${workspace.name}.${configContext.ARCADIA_LIVY_ENDPOINT_DNS_ZONE}/livyApi/versions/${ArmApiVersions.arcadiaLivy}/sparkPools/${selectedPool.name}/`,
|
||||||
|
kind: DataModels.SparkClusterEndpointKind.Livy,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
this.selectedSparkPool(item.text);
|
||||||
|
await this.reconfigureServiceEndpoints();
|
||||||
|
this.container.sparkClusterConnectionInfo.valueHasMutated();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
private onKernelUpdate = async () => {
|
private onKernelUpdate = async () => {
|
||||||
await this.configureServiceEndpoints(this.notebookComponentAdapter.getCurrentKernelName()).catch((reason) => {
|
await this.configureServiceEndpoints(this.notebookComponentAdapter.getCurrentKernelName()).catch((reason) => {
|
||||||
/* Erroring is ok here */
|
/* Erroring is ok here */
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import * as ko from "knockout";
|
|||||||
import { DatabaseAccount } from "../../Contracts/DataModels";
|
import { DatabaseAccount } from "../../Contracts/DataModels";
|
||||||
import * as ViewModels from "../../Contracts/ViewModels";
|
import * as ViewModels from "../../Contracts/ViewModels";
|
||||||
import { updateUserContext } from "../../UserContext";
|
import { updateUserContext } from "../../UserContext";
|
||||||
|
import { CommandButtonComponentProps } from "../Controls/CommandButton/CommandButtonComponent";
|
||||||
import Explorer from "../Explorer";
|
import Explorer from "../Explorer";
|
||||||
import QueryTab from "./QueryTab";
|
import QueryTab from "./QueryTab";
|
||||||
|
|
||||||
@@ -25,6 +26,7 @@ describe("Query Tab", () => {
|
|||||||
title: "",
|
title: "",
|
||||||
tabPath: "",
|
tabPath: "",
|
||||||
hashLocation: "",
|
hashLocation: "",
|
||||||
|
onUpdateTabsButtons: (buttons: CommandButtonComponentProps[]): void => {},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ import { MinimalQueryIterator } from "../../Common/IteratorUtilities";
|
|||||||
import { Splitter, SplitterBounds, SplitterDirection } from "../../Common/Splitter";
|
import { Splitter, SplitterBounds, SplitterDirection } from "../../Common/Splitter";
|
||||||
import * as DataModels from "../../Contracts/DataModels";
|
import * as DataModels from "../../Contracts/DataModels";
|
||||||
import * as ViewModels from "../../Contracts/ViewModels";
|
import * as ViewModels from "../../Contracts/ViewModels";
|
||||||
import { useNotificationConsole } from "../../hooks/useNotificationConsole";
|
|
||||||
import { Action } from "../../Shared/Telemetry/TelemetryConstants";
|
import { Action } from "../../Shared/Telemetry/TelemetryConstants";
|
||||||
import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor";
|
import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor";
|
||||||
import { userContext } from "../../UserContext";
|
import { userContext } from "../../UserContext";
|
||||||
@@ -199,7 +198,7 @@ export default class QueryTab extends TabsBase implements ViewModels.WaitsForTem
|
|||||||
}
|
}
|
||||||
|
|
||||||
public onErrorDetailsClick = (src: any, event: MouseEvent): boolean => {
|
public onErrorDetailsClick = (src: any, event: MouseEvent): boolean => {
|
||||||
useNotificationConsole.getState().expandConsole();
|
this.collection && this.collection.container.expandConsole();
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import { updateStoredProcedure } from "../../Common/dataAccess/updateStoredProce
|
|||||||
import editable from "../../Common/EditableUtility";
|
import editable from "../../Common/EditableUtility";
|
||||||
import { getErrorMessage, getErrorStack } from "../../Common/ErrorHandlingUtils";
|
import { getErrorMessage, getErrorStack } from "../../Common/ErrorHandlingUtils";
|
||||||
import * as ViewModels from "../../Contracts/ViewModels";
|
import * as ViewModels from "../../Contracts/ViewModels";
|
||||||
import { useNotificationConsole } from "../../hooks/useNotificationConsole";
|
|
||||||
import { Action } from "../../Shared/Telemetry/TelemetryConstants";
|
import { Action } from "../../Shared/Telemetry/TelemetryConstants";
|
||||||
import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor";
|
import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor";
|
||||||
import { CommandButtonComponentProps } from "../Controls/CommandButton/CommandButtonComponent";
|
import { CommandButtonComponentProps } from "../Controls/CommandButton/CommandButtonComponent";
|
||||||
@@ -137,7 +136,7 @@ export default class StoredProcedureTab extends ScriptTabBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public onErrorDetailsClick = (src: any, event: MouseEvent): boolean => {
|
public onErrorDetailsClick = (src: any, event: MouseEvent): boolean => {
|
||||||
useNotificationConsole.getState().expandConsole();
|
this.collection && this.collection.container.expandConsole();
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -3,13 +3,11 @@ import * as Constants from "../../Common/Constants";
|
|||||||
import * as ThemeUtility from "../../Common/ThemeUtility";
|
import * as ThemeUtility from "../../Common/ThemeUtility";
|
||||||
import * as DataModels from "../../Contracts/DataModels";
|
import * as DataModels from "../../Contracts/DataModels";
|
||||||
import * as ViewModels from "../../Contracts/ViewModels";
|
import * as ViewModels from "../../Contracts/ViewModels";
|
||||||
import { useNotificationConsole } from "../../hooks/useNotificationConsole";
|
|
||||||
import { RouteHandler } from "../../RouteHandlers/RouteHandler";
|
import { RouteHandler } from "../../RouteHandlers/RouteHandler";
|
||||||
import { Action, ActionModifiers } from "../../Shared/Telemetry/TelemetryConstants";
|
import { Action, ActionModifiers } from "../../Shared/Telemetry/TelemetryConstants";
|
||||||
import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor";
|
import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor";
|
||||||
import { CommandButtonComponentProps } from "../Controls/CommandButton/CommandButtonComponent";
|
import { CommandButtonComponentProps } from "../Controls/CommandButton/CommandButtonComponent";
|
||||||
import Explorer from "../Explorer";
|
import Explorer from "../Explorer";
|
||||||
import { useCommandBar } from "../Menus/CommandBar/CommandBarComponentAdapter";
|
|
||||||
import { WaitsForTemplateViewModel } from "../WaitsForTemplateViewModel";
|
import { WaitsForTemplateViewModel } from "../WaitsForTemplateViewModel";
|
||||||
import { TabsManager } from "./TabsManager";
|
import { TabsManager } from "./TabsManager";
|
||||||
|
|
||||||
@@ -124,8 +122,8 @@ export default class TabsBase extends WaitsForTemplateViewModel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public onErrorDetailsClick = (src: any, event: MouseEvent): boolean => {
|
public onErrorDetailsClick = (src: any, event: MouseEvent): boolean => {
|
||||||
useNotificationConsole.getState().expandConsole();
|
this.collection?.container?.expandConsole();
|
||||||
useNotificationConsole.getState().expandConsole();
|
this.database?.container?.expandConsole();
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -164,7 +162,7 @@ export default class TabsBase extends WaitsForTemplateViewModel {
|
|||||||
|
|
||||||
protected updateNavbarWithTabsButtons = (): void => {
|
protected updateNavbarWithTabsButtons = (): void => {
|
||||||
if (this.isActive()) {
|
if (this.isActive()) {
|
||||||
useCommandBar.getState().setContextButtons(this.getTabsButtons());
|
this.getContainer().onUpdateTabsButtons(this.getTabsButtons());
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -52,6 +52,7 @@ describe("Tabs manager tests", () => {
|
|||||||
title: "",
|
title: "",
|
||||||
tabPath: "",
|
tabPath: "",
|
||||||
hashLocation: "",
|
hashLocation: "",
|
||||||
|
onUpdateTabsButtons: undefined,
|
||||||
});
|
});
|
||||||
|
|
||||||
documentsTab = new DocumentsTab({
|
documentsTab = new DocumentsTab({
|
||||||
@@ -62,6 +63,7 @@ describe("Tabs manager tests", () => {
|
|||||||
title: "",
|
title: "",
|
||||||
tabPath: "",
|
tabPath: "",
|
||||||
hashLocation: "",
|
hashLocation: "",
|
||||||
|
onUpdateTabsButtons: undefined,
|
||||||
});
|
});
|
||||||
|
|
||||||
// make sure tabs have different tabId
|
// make sure tabs have different tabId
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import * as ko from "knockout";
|
||||||
import * as DataModels from "../../Contracts/DataModels";
|
import * as DataModels from "../../Contracts/DataModels";
|
||||||
import Explorer from "../Explorer";
|
import Explorer from "../Explorer";
|
||||||
import Collection from "./Collection";
|
import Collection from "./Collection";
|
||||||
@@ -35,6 +36,8 @@ describe("Collection", () => {
|
|||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
mockContainer.deleteCollectionText = ko.observable<string>("delete collection");
|
||||||
|
|
||||||
return generateCollection(mockContainer, "abc", data, {} as DataModels.Offer);
|
return generateCollection(mockContainer, "abc", data, {} as DataModels.Offer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -21,7 +21,6 @@ import { userContext } from "../../UserContext";
|
|||||||
import { SqlTriggerResource } from "../../Utils/arm/generatedClients/cosmos/types";
|
import { SqlTriggerResource } from "../../Utils/arm/generatedClients/cosmos/types";
|
||||||
import { logConsoleInfo } from "../../Utils/NotificationConsoleUtils";
|
import { logConsoleInfo } from "../../Utils/NotificationConsoleUtils";
|
||||||
import Explorer from "../Explorer";
|
import Explorer from "../Explorer";
|
||||||
import { useCommandBar } from "../Menus/CommandBar/CommandBarComponentAdapter";
|
|
||||||
import { CassandraAPIDataClient, CassandraTableKey, CassandraTableKeys } from "../Tables/TableDataClient";
|
import { CassandraAPIDataClient, CassandraTableKey, CassandraTableKeys } from "../Tables/TableDataClient";
|
||||||
import ConflictsTab from "../Tabs/ConflictsTab";
|
import ConflictsTab from "../Tabs/ConflictsTab";
|
||||||
import DocumentsTab from "../Tabs/DocumentsTab";
|
import DocumentsTab from "../Tabs/DocumentsTab";
|
||||||
@@ -222,7 +221,7 @@ export default class Collection implements ViewModels.Collection {
|
|||||||
} else {
|
} else {
|
||||||
this.expandCollection();
|
this.expandCollection();
|
||||||
}
|
}
|
||||||
useCommandBar.getState().setContextButtons([]);
|
this.container.onUpdateTabsButtons([]);
|
||||||
this.container.tabsManager.refreshActiveTab(
|
this.container.tabsManager.refreshActiveTab(
|
||||||
(tab) => tab.collection && tab.collection.databaseId === this.databaseId && tab.collection.id() === this.id()
|
(tab) => tab.collection && tab.collection.databaseId === this.databaseId && tab.collection.id() === this.id()
|
||||||
);
|
);
|
||||||
@@ -300,6 +299,7 @@ export default class Collection implements ViewModels.Collection {
|
|||||||
tabPath: `${this.databaseId}>${this.id()}>Documents`,
|
tabPath: `${this.databaseId}>${this.id()}>Documents`,
|
||||||
hashLocation: `${Constants.HashRoutePrefixes.collectionsWithIds(this.databaseId, this.id())}/documents`,
|
hashLocation: `${Constants.HashRoutePrefixes.collectionsWithIds(this.databaseId, this.id())}/documents`,
|
||||||
onLoadStartKey: startKey,
|
onLoadStartKey: startKey,
|
||||||
|
onUpdateTabsButtons: this.container.onUpdateTabsButtons,
|
||||||
});
|
});
|
||||||
|
|
||||||
this.container.tabsManager.activateNewTab(documentsTab);
|
this.container.tabsManager.activateNewTab(documentsTab);
|
||||||
@@ -346,6 +346,7 @@ export default class Collection implements ViewModels.Collection {
|
|||||||
tabPath: `${this.databaseId}>${this.id()}>Conflicts`,
|
tabPath: `${this.databaseId}>${this.id()}>Conflicts`,
|
||||||
hashLocation: `${Constants.HashRoutePrefixes.collectionsWithIds(this.databaseId, this.id())}/conflicts`,
|
hashLocation: `${Constants.HashRoutePrefixes.collectionsWithIds(this.databaseId, this.id())}/conflicts`,
|
||||||
onLoadStartKey: startKey,
|
onLoadStartKey: startKey,
|
||||||
|
onUpdateTabsButtons: this.container.onUpdateTabsButtons,
|
||||||
});
|
});
|
||||||
|
|
||||||
this.container.tabsManager.activateNewTab(conflictsTab);
|
this.container.tabsManager.activateNewTab(conflictsTab);
|
||||||
@@ -400,6 +401,7 @@ export default class Collection implements ViewModels.Collection {
|
|||||||
node: this,
|
node: this,
|
||||||
hashLocation: `${Constants.HashRoutePrefixes.collectionsWithIds(this.databaseId, this.id())}/entities`,
|
hashLocation: `${Constants.HashRoutePrefixes.collectionsWithIds(this.databaseId, this.id())}/entities`,
|
||||||
onLoadStartKey: startKey,
|
onLoadStartKey: startKey,
|
||||||
|
onUpdateTabsButtons: this.container.onUpdateTabsButtons,
|
||||||
});
|
});
|
||||||
|
|
||||||
this.container.tabsManager.activateNewTab(queryTablesTab);
|
this.container.tabsManager.activateNewTab(queryTablesTab);
|
||||||
@@ -452,6 +454,7 @@ export default class Collection implements ViewModels.Collection {
|
|||||||
databaseId: this.databaseId,
|
databaseId: this.databaseId,
|
||||||
isTabsContentExpanded: this.container.isTabsContentExpanded,
|
isTabsContentExpanded: this.container.isTabsContentExpanded,
|
||||||
onLoadStartKey: startKey,
|
onLoadStartKey: startKey,
|
||||||
|
onUpdateTabsButtons: this.container.onUpdateTabsButtons,
|
||||||
});
|
});
|
||||||
|
|
||||||
this.container.tabsManager.activateNewTab(graphTab);
|
this.container.tabsManager.activateNewTab(graphTab);
|
||||||
@@ -498,6 +501,7 @@ export default class Collection implements ViewModels.Collection {
|
|||||||
node: this,
|
node: this,
|
||||||
hashLocation: `${Constants.HashRoutePrefixes.collectionsWithIds(this.databaseId, this.id())}/mongoDocuments`,
|
hashLocation: `${Constants.HashRoutePrefixes.collectionsWithIds(this.databaseId, this.id())}/mongoDocuments`,
|
||||||
onLoadStartKey: startKey,
|
onLoadStartKey: startKey,
|
||||||
|
onUpdateTabsButtons: this.container.onUpdateTabsButtons,
|
||||||
});
|
});
|
||||||
this.container.tabsManager.activateNewTab(mongoDocumentsTab);
|
this.container.tabsManager.activateNewTab(mongoDocumentsTab);
|
||||||
}
|
}
|
||||||
@@ -543,6 +547,7 @@ export default class Collection implements ViewModels.Collection {
|
|||||||
node: this,
|
node: this,
|
||||||
hashLocation: `${Constants.HashRoutePrefixes.collectionsWithIds(this.databaseId, this.id())}/schemaAnalyzer`,
|
hashLocation: `${Constants.HashRoutePrefixes.collectionsWithIds(this.databaseId, this.id())}/schemaAnalyzer`,
|
||||||
onLoadStartKey: startKey,
|
onLoadStartKey: startKey,
|
||||||
|
onUpdateTabsButtons: this.container.onUpdateTabsButtons,
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
@@ -582,6 +587,7 @@ export default class Collection implements ViewModels.Collection {
|
|||||||
collection: this,
|
collection: this,
|
||||||
node: this,
|
node: this,
|
||||||
hashLocation: `${Constants.HashRoutePrefixes.collectionsWithIds(this.databaseId, this.id())}/settings`,
|
hashLocation: `${Constants.HashRoutePrefixes.collectionsWithIds(this.databaseId, this.id())}/settings`,
|
||||||
|
onUpdateTabsButtons: this.container.onUpdateTabsButtons,
|
||||||
};
|
};
|
||||||
|
|
||||||
let settingsTabV2 = matchingTabs && (matchingTabs[0] as CollectionSettingsTabV2);
|
let settingsTabV2 = matchingTabs && (matchingTabs[0] as CollectionSettingsTabV2);
|
||||||
@@ -626,6 +632,7 @@ export default class Collection implements ViewModels.Collection {
|
|||||||
queryText: queryText,
|
queryText: queryText,
|
||||||
partitionKey: collection.partitionKey,
|
partitionKey: collection.partitionKey,
|
||||||
onLoadStartKey: startKey,
|
onLoadStartKey: startKey,
|
||||||
|
onUpdateTabsButtons: this.container.onUpdateTabsButtons,
|
||||||
});
|
});
|
||||||
|
|
||||||
this.container.tabsManager.activateNewTab(queryTab);
|
this.container.tabsManager.activateNewTab(queryTab);
|
||||||
@@ -653,6 +660,7 @@ export default class Collection implements ViewModels.Collection {
|
|||||||
hashLocation: `${Constants.HashRoutePrefixes.collectionsWithIds(this.databaseId, this.id())}/mongoQuery`,
|
hashLocation: `${Constants.HashRoutePrefixes.collectionsWithIds(this.databaseId, this.id())}/mongoQuery`,
|
||||||
partitionKey: collection.partitionKey,
|
partitionKey: collection.partitionKey,
|
||||||
onLoadStartKey: startKey,
|
onLoadStartKey: startKey,
|
||||||
|
onUpdateTabsButtons: this.container.onUpdateTabsButtons,
|
||||||
});
|
});
|
||||||
|
|
||||||
this.container.tabsManager.activateNewTab(mongoQueryTab);
|
this.container.tabsManager.activateNewTab(mongoQueryTab);
|
||||||
@@ -684,6 +692,7 @@ export default class Collection implements ViewModels.Collection {
|
|||||||
databaseId: this.databaseId,
|
databaseId: this.databaseId,
|
||||||
isTabsContentExpanded: this.container.isTabsContentExpanded,
|
isTabsContentExpanded: this.container.isTabsContentExpanded,
|
||||||
onLoadStartKey: startKey,
|
onLoadStartKey: startKey,
|
||||||
|
onUpdateTabsButtons: this.container.onUpdateTabsButtons,
|
||||||
});
|
});
|
||||||
|
|
||||||
this.container.tabsManager.activateNewTab(graphTab);
|
this.container.tabsManager.activateNewTab(graphTab);
|
||||||
@@ -698,6 +707,7 @@ export default class Collection implements ViewModels.Collection {
|
|||||||
collection: this,
|
collection: this,
|
||||||
node: this,
|
node: this,
|
||||||
hashLocation: `${Constants.HashRoutePrefixes.collectionsWithIds(this.databaseId, this.id())}/mongoShell`,
|
hashLocation: `${Constants.HashRoutePrefixes.collectionsWithIds(this.databaseId, this.id())}/mongoShell`,
|
||||||
|
onUpdateTabsButtons: this.container.onUpdateTabsButtons,
|
||||||
});
|
});
|
||||||
|
|
||||||
this.container.tabsManager.activateNewTab(mongoShellTab);
|
this.container.tabsManager.activateNewTab(mongoShellTab);
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user