Remove 'explorer' from a few Panes (#650)
While working on #549 I realized there were a few places where 'explorer' was only needed to expand the notifications console, so I stripped those out where it was easy.
This commit is contained in:
parent
531df811da
commit
9d0bc86197
|
@ -2089,15 +2089,18 @@ export default class Explorer {
|
||||||
}
|
}
|
||||||
|
|
||||||
public openSettingPane(): void {
|
public openSettingPane(): void {
|
||||||
this.openSidePanel("Settings", <SettingsPane explorer={this} closePanel={this.closeSidePanel} />);
|
this.openSidePanel(
|
||||||
|
"Settings",
|
||||||
|
<SettingsPane expandConsole={() => this.expandConsole()} closePanel={this.closeSidePanel} />
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public openExecuteSprocParamsPanel(storedProcedure: StoredProcedure): void {
|
public openExecuteSprocParamsPanel(storedProcedure: StoredProcedure): void {
|
||||||
this.openSidePanel(
|
this.openSidePanel(
|
||||||
"Input parameters",
|
"Input parameters",
|
||||||
<ExecuteSprocParamsPane
|
<ExecuteSprocParamsPane
|
||||||
explorer={this}
|
|
||||||
storedProcedure={storedProcedure}
|
storedProcedure={storedProcedure}
|
||||||
|
expandConsole={() => this.expandConsole()}
|
||||||
closePanel={() => this.closeSidePanel()}
|
closePanel={() => this.closeSidePanel()}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
@ -2132,7 +2135,7 @@ export default class Explorer {
|
||||||
this.openSidePanel(
|
this.openSidePanel(
|
||||||
"Upload File",
|
"Upload File",
|
||||||
<UploadFilePane
|
<UploadFilePane
|
||||||
explorer={this}
|
expandConsole={() => this.expandConsole()}
|
||||||
closePanel={this.closeSidePanel}
|
closePanel={this.closeSidePanel}
|
||||||
uploadFile={(name: string, content: string) => this.uploadFile(name, content, parent)}
|
uploadFile={(name: string, content: string) => this.uploadFile(name, content, parent)}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -131,7 +131,6 @@ export const CopyNotebookPane: FunctionComponent<CopyNotebookPanelProps> = ({
|
||||||
};
|
};
|
||||||
|
|
||||||
const genericPaneProps: GenericRightPaneProps = {
|
const genericPaneProps: GenericRightPaneProps = {
|
||||||
container,
|
|
||||||
formError,
|
formError,
|
||||||
formErrorDetail,
|
formErrorDetail,
|
||||||
id: "copynotebookpane",
|
id: "copynotebookpane",
|
||||||
|
@ -140,6 +139,7 @@ export const CopyNotebookPane: FunctionComponent<CopyNotebookPanelProps> = ({
|
||||||
submitButtonText: "OK",
|
submitButtonText: "OK",
|
||||||
onClose: closePanel,
|
onClose: closePanel,
|
||||||
onSubmit: () => submit(),
|
onSubmit: () => submit(),
|
||||||
|
expandConsole: () => container.expandConsole(),
|
||||||
};
|
};
|
||||||
|
|
||||||
const copyNotebookPaneProps: CopyNotebookPaneProps = {
|
const copyNotebookPaneProps: CopyNotebookPaneProps = {
|
||||||
|
|
|
@ -101,7 +101,6 @@ export const DeleteCollectionConfirmationPane: FunctionComponent<DeleteCollectio
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
const genericPaneProps: GenericRightPaneProps = {
|
const genericPaneProps: GenericRightPaneProps = {
|
||||||
container: explorer,
|
|
||||||
formError: formError,
|
formError: formError,
|
||||||
formErrorDetail: formError,
|
formErrorDetail: formError,
|
||||||
id: "deleteCollectionpane",
|
id: "deleteCollectionpane",
|
||||||
|
@ -110,6 +109,7 @@ export const DeleteCollectionConfirmationPane: FunctionComponent<DeleteCollectio
|
||||||
submitButtonText: "OK",
|
submitButtonText: "OK",
|
||||||
onClose: closePanel,
|
onClose: closePanel,
|
||||||
onSubmit: submit,
|
onSubmit: submit,
|
||||||
|
expandConsole: () => explorer.expandConsole(),
|
||||||
};
|
};
|
||||||
return (
|
return (
|
||||||
<GenericRightPaneComponent {...genericPaneProps}>
|
<GenericRightPaneComponent {...genericPaneProps}>
|
||||||
|
|
|
@ -16,16 +16,7 @@ exports[`Delete Collection Confirmation Pane submit() should call delete collect
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<GenericRightPaneComponent
|
<GenericRightPaneComponent
|
||||||
container={
|
expandConsole={[Function]}
|
||||||
Object {
|
|
||||||
"findSelectedCollection": [Function],
|
|
||||||
"isLastCollection": [Function],
|
|
||||||
"isSelectedDatabaseShared": [Function],
|
|
||||||
"refreshAllDatabases": [Function],
|
|
||||||
"selectedCollectionId": [Function],
|
|
||||||
"selectedNode": [Function],
|
|
||||||
}
|
|
||||||
}
|
|
||||||
formError=""
|
formError=""
|
||||||
formErrorDetail=""
|
formErrorDetail=""
|
||||||
id="deleteCollectionpane"
|
id="deleteCollectionpane"
|
||||||
|
|
|
@ -1,15 +1,13 @@
|
||||||
import { mount } from "enzyme";
|
import { mount } from "enzyme";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import Explorer from "../../Explorer";
|
|
||||||
import StoredProcedure from "../../Tree/StoredProcedure";
|
import StoredProcedure from "../../Tree/StoredProcedure";
|
||||||
import { ExecuteSprocParamsPane } from "./ExecuteSprocParamsPane";
|
import { ExecuteSprocParamsPane } from "./ExecuteSprocParamsPane";
|
||||||
|
|
||||||
describe("Excute Sproc Param Pane", () => {
|
describe("Excute Sproc Param Pane", () => {
|
||||||
const fakeExplorer = {} as Explorer;
|
|
||||||
const fakeSproc = {} as StoredProcedure;
|
const fakeSproc = {} as StoredProcedure;
|
||||||
const props = {
|
const props = {
|
||||||
explorer: fakeExplorer,
|
|
||||||
storedProcedure: fakeSproc,
|
storedProcedure: fakeSproc,
|
||||||
|
expandConsole: (): void => undefined,
|
||||||
closePanel: (): void => undefined,
|
closePanel: (): void => undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,6 @@ import { useBoolean } from "@uifabric/react-hooks";
|
||||||
import { IDropdownOption, IImageProps, Image, Stack, Text } from "office-ui-fabric-react";
|
import { IDropdownOption, IImageProps, Image, Stack, Text } from "office-ui-fabric-react";
|
||||||
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 Explorer from "../../Explorer";
|
|
||||||
import StoredProcedure from "../../Tree/StoredProcedure";
|
import StoredProcedure from "../../Tree/StoredProcedure";
|
||||||
import {
|
import {
|
||||||
GenericRightPaneComponent,
|
GenericRightPaneComponent,
|
||||||
|
@ -11,7 +10,7 @@ import {
|
||||||
import { InputParameter } from "./InputParameter";
|
import { InputParameter } from "./InputParameter";
|
||||||
|
|
||||||
interface ExecuteSprocParamsPaneProps {
|
interface ExecuteSprocParamsPaneProps {
|
||||||
explorer: Explorer;
|
expandConsole: () => void;
|
||||||
storedProcedure: StoredProcedure;
|
storedProcedure: StoredProcedure;
|
||||||
closePanel: () => void;
|
closePanel: () => void;
|
||||||
}
|
}
|
||||||
|
@ -27,7 +26,7 @@ interface UnwrappedExecuteSprocParam {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const ExecuteSprocParamsPane: FunctionComponent<ExecuteSprocParamsPaneProps> = ({
|
export const ExecuteSprocParamsPane: FunctionComponent<ExecuteSprocParamsPaneProps> = ({
|
||||||
explorer,
|
expandConsole,
|
||||||
storedProcedure,
|
storedProcedure,
|
||||||
closePanel,
|
closePanel,
|
||||||
}: ExecuteSprocParamsPaneProps): JSX.Element => {
|
}: ExecuteSprocParamsPaneProps): JSX.Element => {
|
||||||
|
@ -43,7 +42,7 @@ export const ExecuteSprocParamsPane: FunctionComponent<ExecuteSprocParamsPanePro
|
||||||
};
|
};
|
||||||
|
|
||||||
const genericPaneProps: GenericRightPaneProps = {
|
const genericPaneProps: GenericRightPaneProps = {
|
||||||
container: explorer,
|
expandConsole,
|
||||||
formError: formError,
|
formError: formError,
|
||||||
formErrorDetail: formErrorsDetails,
|
formErrorDetail: formErrorsDetails,
|
||||||
id: "executesprocparamspane",
|
id: "executesprocparamspane",
|
||||||
|
|
|
@ -3,11 +3,11 @@
|
||||||
exports[`Excute Sproc Param Pane should render Default properly 1`] = `
|
exports[`Excute Sproc Param Pane should render Default properly 1`] = `
|
||||||
<ExecuteSprocParamsPane
|
<ExecuteSprocParamsPane
|
||||||
closePanel={[Function]}
|
closePanel={[Function]}
|
||||||
explorer={Object {}}
|
expandConsole={[Function]}
|
||||||
storedProcedure={Object {}}
|
storedProcedure={Object {}}
|
||||||
>
|
>
|
||||||
<GenericRightPaneComponent
|
<GenericRightPaneComponent
|
||||||
container={Object {}}
|
expandConsole={[Function]}
|
||||||
formError=""
|
formError=""
|
||||||
formErrorDetail=""
|
formErrorDetail=""
|
||||||
id="executesprocparamspane"
|
id="executesprocparamspane"
|
||||||
|
|
|
@ -3,10 +3,9 @@ import React, { FunctionComponent, ReactNode } from "react";
|
||||||
import ErrorRedIcon from "../../../../images/error_red.svg";
|
import ErrorRedIcon from "../../../../images/error_red.svg";
|
||||||
import LoadingIndicatorIcon from "../../../../images/LoadingIndicator_3Squares.gif";
|
import LoadingIndicatorIcon from "../../../../images/LoadingIndicator_3Squares.gif";
|
||||||
import { KeyCodes } from "../../../Common/Constants";
|
import { KeyCodes } from "../../../Common/Constants";
|
||||||
import Explorer from "../../Explorer";
|
|
||||||
|
|
||||||
export interface GenericRightPaneProps {
|
export interface GenericRightPaneProps {
|
||||||
container: Explorer;
|
expandConsole: () => void;
|
||||||
formError: string;
|
formError: string;
|
||||||
formErrorDetail: string;
|
formErrorDetail: string;
|
||||||
id: string;
|
id: string;
|
||||||
|
@ -24,7 +23,7 @@ export interface GenericRightPaneState {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const GenericRightPaneComponent: FunctionComponent<GenericRightPaneProps> = ({
|
export const GenericRightPaneComponent: FunctionComponent<GenericRightPaneProps> = ({
|
||||||
container,
|
expandConsole,
|
||||||
formError,
|
formError,
|
||||||
formErrorDetail,
|
formErrorDetail,
|
||||||
id,
|
id,
|
||||||
|
@ -72,7 +71,7 @@ export const GenericRightPaneComponent: FunctionComponent<GenericRightPaneProps>
|
||||||
<span className="formErrors" title={formError}>
|
<span className="formErrors" title={formError}>
|
||||||
{formError}
|
{formError}
|
||||||
</span>
|
</span>
|
||||||
<a className="errorLink" role="link" hidden={!formErrorDetail} onClick={showErrorDetail}>
|
<a className="errorLink" role="link" hidden={!formErrorDetail} onClick={expandConsole}>
|
||||||
More details
|
More details
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
|
@ -114,10 +113,6 @@ export const GenericRightPaneComponent: FunctionComponent<GenericRightPaneProps>
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const showErrorDetail = (): void => {
|
|
||||||
container.expandConsole();
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div tabIndex={-1} onKeyDown={onKeyDown}>
|
<div tabIndex={-1} onKeyDown={onKeyDown}>
|
||||||
<div className="contextual-pane-out" onClick={onClose}></div>
|
<div className="contextual-pane-out" onClick={onClose}></div>
|
||||||
|
|
|
@ -37,7 +37,7 @@ export const LoadQueryPane: FunctionComponent<LoadQueryPaneProps> = ({
|
||||||
|
|
||||||
const title = "Load Query";
|
const title = "Load Query";
|
||||||
const genericPaneProps: GenericRightPaneProps = {
|
const genericPaneProps: GenericRightPaneProps = {
|
||||||
container: explorer,
|
expandConsole: () => explorer.expandConsole(),
|
||||||
formError: formError,
|
formError: formError,
|
||||||
formErrorDetail: formErrorsDetails,
|
formErrorDetail: formErrorsDetails,
|
||||||
id: "loadQueryPane",
|
id: "loadQueryPane",
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
exports[`Load Query Pane should render Default properly 1`] = `
|
exports[`Load Query Pane should render Default properly 1`] = `
|
||||||
<GenericRightPaneComponent
|
<GenericRightPaneComponent
|
||||||
container={Object {}}
|
expandConsole={[Function]}
|
||||||
formError=""
|
formError=""
|
||||||
formErrorDetail=""
|
formErrorDetail=""
|
||||||
id="loadQueryPane"
|
id="loadQueryPane"
|
||||||
|
|
|
@ -158,7 +158,6 @@ export const PublishNotebookPane: FunctionComponent<PublishNotebookPaneAProps> =
|
||||||
};
|
};
|
||||||
|
|
||||||
const props: GenericRightPaneProps = {
|
const props: GenericRightPaneProps = {
|
||||||
container: container,
|
|
||||||
formError: formError,
|
formError: formError,
|
||||||
formErrorDetail: formErrorDetail,
|
formErrorDetail: formErrorDetail,
|
||||||
id: "publishnotebookpane",
|
id: "publishnotebookpane",
|
||||||
|
@ -167,6 +166,7 @@ export const PublishNotebookPane: FunctionComponent<PublishNotebookPaneAProps> =
|
||||||
submitButtonText: "Publish",
|
submitButtonText: "Publish",
|
||||||
onSubmit: () => submit(),
|
onSubmit: () => submit(),
|
||||||
onClose: closePanel,
|
onClose: closePanel,
|
||||||
|
expandConsole: () => container.expandConsole(),
|
||||||
isSubmitButtonHidden: !isCodeOfConductAccepted,
|
isSubmitButtonHidden: !isCodeOfConductAccepted,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,7 @@ export const SaveQueryPane: FunctionComponent<SaveQueryPaneProps> = ({
|
||||||
const title = "Save Query";
|
const title = "Save Query";
|
||||||
const { canSaveQueries } = explorer;
|
const { canSaveQueries } = explorer;
|
||||||
const genericPaneProps: GenericRightPaneProps = {
|
const genericPaneProps: GenericRightPaneProps = {
|
||||||
container: explorer,
|
expandConsole: () => explorer.expandConsole(),
|
||||||
formError: formError,
|
formError: formError,
|
||||||
formErrorDetail: formErrorsDetails,
|
formErrorDetail: formErrorsDetails,
|
||||||
id: "saveQueryPane",
|
id: "saveQueryPane",
|
||||||
|
|
|
@ -2,11 +2,7 @@
|
||||||
|
|
||||||
exports[`Save Query Pane should render Default properly 1`] = `
|
exports[`Save Query Pane should render Default properly 1`] = `
|
||||||
<GenericRightPaneComponent
|
<GenericRightPaneComponent
|
||||||
container={
|
expandConsole={[Function]}
|
||||||
Object {
|
|
||||||
"canSaveQueries": [Function],
|
|
||||||
}
|
|
||||||
}
|
|
||||||
formError=""
|
formError=""
|
||||||
formErrorDetail=""
|
formErrorDetail=""
|
||||||
id="saveQueryPane"
|
id="saveQueryPane"
|
||||||
|
|
|
@ -2,10 +2,9 @@ import { shallow } from "enzyme";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { DatabaseAccount } from "../../../Contracts/DataModels";
|
import { DatabaseAccount } from "../../../Contracts/DataModels";
|
||||||
import { updateUserContext } from "../../../UserContext";
|
import { updateUserContext } from "../../../UserContext";
|
||||||
import Explorer from "../../Explorer";
|
|
||||||
import { SettingsPane } from "./SettingsPane";
|
import { SettingsPane } from "./SettingsPane";
|
||||||
const props = {
|
const props = {
|
||||||
explorer: new Explorer(),
|
expandConsole: (): void => undefined,
|
||||||
closePanel: (): void => undefined,
|
closePanel: (): void => undefined,
|
||||||
};
|
};
|
||||||
describe("Settings Pane", () => {
|
describe("Settings Pane", () => {
|
||||||
|
|
|
@ -7,19 +7,18 @@ 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 Explorer from "../../Explorer";
|
|
||||||
import {
|
import {
|
||||||
GenericRightPaneComponent,
|
GenericRightPaneComponent,
|
||||||
GenericRightPaneProps,
|
GenericRightPaneProps,
|
||||||
} from "../GenericRightPaneComponent/GenericRightPaneComponent";
|
} from "../GenericRightPaneComponent/GenericRightPaneComponent";
|
||||||
|
|
||||||
export interface SettingsPaneProps {
|
export interface SettingsPaneProps {
|
||||||
explorer: Explorer;
|
expandConsole: () => void;
|
||||||
closePanel: () => void;
|
closePanel: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const SettingsPane: FunctionComponent<SettingsPaneProps> = ({
|
export const SettingsPane: FunctionComponent<SettingsPaneProps> = ({
|
||||||
explorer: container,
|
expandConsole,
|
||||||
closePanel,
|
closePanel,
|
||||||
}: SettingsPaneProps) => {
|
}: SettingsPaneProps) => {
|
||||||
const [formErrors, setFormErrors] = useState<string>("");
|
const [formErrors, setFormErrors] = useState<string>("");
|
||||||
|
@ -107,7 +106,7 @@ export const SettingsPane: FunctionComponent<SettingsPaneProps> = ({
|
||||||
};
|
};
|
||||||
|
|
||||||
const genericPaneProps: GenericRightPaneProps = {
|
const genericPaneProps: GenericRightPaneProps = {
|
||||||
container,
|
expandConsole,
|
||||||
formError: formErrors,
|
formError: formErrors,
|
||||||
formErrorDetail: "",
|
formErrorDetail: "",
|
||||||
id: "settingspane",
|
id: "settingspane",
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -92,7 +92,6 @@ export const StringInputPane: FunctionComponent<StringInputPanelProps> = ({
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
const genericPaneProps: GenericRightPaneProps = {
|
const genericPaneProps: GenericRightPaneProps = {
|
||||||
container: container,
|
|
||||||
formError: formErrors,
|
formError: formErrors,
|
||||||
formErrorDetail: formErrorsDetails,
|
formErrorDetail: formErrorsDetails,
|
||||||
id: "stringInputPane",
|
id: "stringInputPane",
|
||||||
|
@ -101,6 +100,7 @@ export const StringInputPane: FunctionComponent<StringInputPanelProps> = ({
|
||||||
submitButtonText: submitButtonLabel,
|
submitButtonText: submitButtonLabel,
|
||||||
onClose: closePanel,
|
onClose: closePanel,
|
||||||
onSubmit: submit,
|
onSubmit: submit,
|
||||||
|
expandConsole: () => container.expandConsole(),
|
||||||
};
|
};
|
||||||
return (
|
return (
|
||||||
<GenericRightPaneComponent {...genericPaneProps}>
|
<GenericRightPaneComponent {...genericPaneProps}>
|
||||||
|
|
|
@ -519,504 +519,7 @@ exports[`StringInput Pane should render Create new directory properly 1`] = `
|
||||||
successMessage="Created directory "
|
successMessage="Created directory "
|
||||||
>
|
>
|
||||||
<GenericRightPaneComponent
|
<GenericRightPaneComponent
|
||||||
container={
|
expandConsole={[Function]}
|
||||||
Explorer {
|
|
||||||
"_closeModalDialog": [Function],
|
|
||||||
"_closeSynapseLinkModalDialog": [Function],
|
|
||||||
"_isAfecFeatureRegistered": [Function],
|
|
||||||
"_isInitializingNotebooks": false,
|
|
||||||
"_panes": Array [
|
|
||||||
AddDatabasePane {
|
|
||||||
"autoPilotUsageCost": [Function],
|
|
||||||
"canConfigureThroughput": [Function],
|
|
||||||
"canExceedMaximumValue": [Function],
|
|
||||||
"canRequestSupport": [Function],
|
|
||||||
"container": [Circular],
|
|
||||||
"costsVisible": [Function],
|
|
||||||
"databaseCreateNewShared": [Function],
|
|
||||||
"databaseId": [Function],
|
|
||||||
"databaseIdLabel": [Function],
|
|
||||||
"databaseIdPlaceHolder": [Function],
|
|
||||||
"databaseIdTooltipText": [Function],
|
|
||||||
"databaseLevelThroughputTooltipText": [Function],
|
|
||||||
"firstFieldHasFocus": [Function],
|
|
||||||
"formErrors": [Function],
|
|
||||||
"formErrorsDetails": [Function],
|
|
||||||
"freeTierExceedThroughputTooltip": [Function],
|
|
||||||
"id": "adddatabasepane",
|
|
||||||
"isAutoPilotSelected": [Function],
|
|
||||||
"isExecuting": [Function],
|
|
||||||
"isFreeTierAccount": [Function],
|
|
||||||
"isTemplateReady": [Function],
|
|
||||||
"maxAutoPilotThroughputSet": [Function],
|
|
||||||
"maxThroughputRU": [Function],
|
|
||||||
"maxThroughputRUText": [Function],
|
|
||||||
"minThroughputRU": [Function],
|
|
||||||
"onMoreDetailsKeyPress": [Function],
|
|
||||||
"requestUnitsUsageCost": [Function],
|
|
||||||
"ruToolTipText": [Function],
|
|
||||||
"showUpsellMessage": [Function],
|
|
||||||
"throughput": [Function],
|
|
||||||
"throughputRangeText": [Function],
|
|
||||||
"throughputSpendAck": [Function],
|
|
||||||
"throughputSpendAckText": [Function],
|
|
||||||
"throughputSpendAckVisible": [Function],
|
|
||||||
"title": [Function],
|
|
||||||
"upsellAnchorText": [Function],
|
|
||||||
"upsellAnchorUrl": [Function],
|
|
||||||
"upsellMessage": [Function],
|
|
||||||
"upsellMessageAriaLabel": [Function],
|
|
||||||
"visible": [Function],
|
|
||||||
},
|
|
||||||
AddCollectionPane {
|
|
||||||
"_isSynapseLinkEnabled": [Function],
|
|
||||||
"autoPilotThroughput": [Function],
|
|
||||||
"autoPilotUsageCost": [Function],
|
|
||||||
"canConfigureThroughput": [Function],
|
|
||||||
"canExceedMaximumValue": [Function],
|
|
||||||
"canRequestSupport": [Function],
|
|
||||||
"collectionId": [Function],
|
|
||||||
"collectionIdTitle": [Function],
|
|
||||||
"collectionWithThroughputInShared": [Function],
|
|
||||||
"collectionWithThroughputInSharedTitle": [Function],
|
|
||||||
"container": [Circular],
|
|
||||||
"costsVisible": [Function],
|
|
||||||
"databaseCreateNew": [Function],
|
|
||||||
"databaseCreateNewShared": [Function],
|
|
||||||
"databaseHasSharedOffer": [Function],
|
|
||||||
"databaseId": [Function],
|
|
||||||
"databaseIds": [Function],
|
|
||||||
"dedicatedRequestUnitsUsageCost": [Function],
|
|
||||||
"displayCollectionThroughput": [Function],
|
|
||||||
"firstFieldHasFocus": [Function],
|
|
||||||
"formErrors": [Function],
|
|
||||||
"formErrorsDetails": [Function],
|
|
||||||
"formWarnings": [Function],
|
|
||||||
"freeTierExceedThroughputTooltip": [Function],
|
|
||||||
"id": "addcollectionpane",
|
|
||||||
"isAnalyticalStorageOn": [Function],
|
|
||||||
"isAutoPilotSelected": [Function],
|
|
||||||
"isExecuting": [Function],
|
|
||||||
"isFixedStorageSelected": [Function],
|
|
||||||
"isFreeTierAccount": [Function],
|
|
||||||
"isNonTableApi": [Function],
|
|
||||||
"isPreferredApiTable": [Function],
|
|
||||||
"isSharedAutoPilotSelected": [Function],
|
|
||||||
"isSynapseLinkSupported": [Function],
|
|
||||||
"isSynapseLinkUpdating": [Function],
|
|
||||||
"isTemplateReady": [Function],
|
|
||||||
"isTryCosmosDBSubscription": [Function],
|
|
||||||
"isUnlimitedStorageSelected": [Function],
|
|
||||||
"largePartitionKey": [Function],
|
|
||||||
"lowerCasePartitionKeyName": [Function],
|
|
||||||
"maxCollectionsReached": [Function],
|
|
||||||
"maxCollectionsReachedMessage": [Function],
|
|
||||||
"maxThroughputRU": [Function],
|
|
||||||
"minThroughputRU": [Function],
|
|
||||||
"onMoreDetailsKeyPress": [Function],
|
|
||||||
"partitionKey": [Function],
|
|
||||||
"partitionKeyName": [Function],
|
|
||||||
"partitionKeyPattern": [Function],
|
|
||||||
"partitionKeyPlaceholder": [Function],
|
|
||||||
"partitionKeyTitle": [Function],
|
|
||||||
"partitionKeyVisible": [Function],
|
|
||||||
"requestUnitsUsageCost": [Function],
|
|
||||||
"ruToolTipText": [Function],
|
|
||||||
"sharedAutoPilotThroughput": [Function],
|
|
||||||
"sharedThroughputRangeText": [Function],
|
|
||||||
"shouldCreateMongoWildcardIndex": [Function],
|
|
||||||
"shouldUseDatabaseThroughput": [Function],
|
|
||||||
"showAnalyticalStore": [Function],
|
|
||||||
"showEnableSynapseLink": [Function],
|
|
||||||
"showIndexingOptionsForSharedThroughput": [Function],
|
|
||||||
"showUpsellMessage": [Function],
|
|
||||||
"storage": [Function],
|
|
||||||
"throughputDatabase": [Function],
|
|
||||||
"throughputMultiPartition": [Function],
|
|
||||||
"throughputRangeText": [Function],
|
|
||||||
"throughputSinglePartition": [Function],
|
|
||||||
"throughputSpendAck": [Function],
|
|
||||||
"throughputSpendAckText": [Function],
|
|
||||||
"throughputSpendAckVisible": [Function],
|
|
||||||
"title": [Function],
|
|
||||||
"ttl90DaysEnabled": [Function],
|
|
||||||
"uniqueKeys": [Function],
|
|
||||||
"uniqueKeysPlaceholder": [Function],
|
|
||||||
"uniqueKeysVisible": [Function],
|
|
||||||
"upsellAnchorText": [Function],
|
|
||||||
"upsellAnchorUrl": [Function],
|
|
||||||
"upsellMessage": [Function],
|
|
||||||
"upsellMessageAriaLabel": [Function],
|
|
||||||
"useIndexingForSharedThroughput": [Function],
|
|
||||||
"visible": [Function],
|
|
||||||
},
|
|
||||||
GraphStylingPane {
|
|
||||||
"container": [Circular],
|
|
||||||
"firstFieldHasFocus": [Function],
|
|
||||||
"formErrors": [Function],
|
|
||||||
"formErrorsDetails": [Function],
|
|
||||||
"graphConfigUIData": Object {
|
|
||||||
"nodeCaptionChoice": [Function],
|
|
||||||
"nodeColorKeyChoice": [Function],
|
|
||||||
"nodeIconChoice": [Function],
|
|
||||||
"nodeIconSet": [Function],
|
|
||||||
"nodeProperties": [Function],
|
|
||||||
"nodePropertiesWithNone": [Function],
|
|
||||||
"showNeighborType": [Function],
|
|
||||||
},
|
|
||||||
"id": "graphstylingpane",
|
|
||||||
"isExecuting": [Function],
|
|
||||||
"isTemplateReady": [Function],
|
|
||||||
"title": [Function],
|
|
||||||
"visible": [Function],
|
|
||||||
},
|
|
||||||
CassandraAddCollectionPane {
|
|
||||||
"autoPilotUsageCost": [Function],
|
|
||||||
"canConfigureThroughput": [Function],
|
|
||||||
"canExceedMaximumValue": [Function],
|
|
||||||
"canRequestSupport": [Function],
|
|
||||||
"container": [Circular],
|
|
||||||
"costsVisible": [Function],
|
|
||||||
"createTableQuery": [Function],
|
|
||||||
"dedicateTableThroughput": [Function],
|
|
||||||
"firstFieldHasFocus": [Function],
|
|
||||||
"formErrors": [Function],
|
|
||||||
"formErrorsDetails": [Function],
|
|
||||||
"id": "cassandraaddcollectionpane",
|
|
||||||
"isAutoPilotSelected": [Function],
|
|
||||||
"isExecuting": [Function],
|
|
||||||
"isFreeTierAccount": [Function],
|
|
||||||
"isSharedAutoPilotSelected": [Function],
|
|
||||||
"isTemplateReady": [Function],
|
|
||||||
"keyspaceCreateNew": [Function],
|
|
||||||
"keyspaceHasSharedOffer": [Function],
|
|
||||||
"keyspaceId": [Function],
|
|
||||||
"keyspaceIds": [Function],
|
|
||||||
"keyspaceOffers": Map {},
|
|
||||||
"keyspaceThroughput": [Function],
|
|
||||||
"maxThroughputRU": [Function],
|
|
||||||
"minThroughputRU": [Function],
|
|
||||||
"requestUnitsUsageCostDedicated": [Function],
|
|
||||||
"requestUnitsUsageCostShared": [Function],
|
|
||||||
"ruToolTipText": [Function],
|
|
||||||
"selectedAutoPilotThroughput": [Function],
|
|
||||||
"sharedAutoPilotThroughput": [Function],
|
|
||||||
"sharedThroughputRangeText": [Function],
|
|
||||||
"sharedThroughputSpendAck": [Function],
|
|
||||||
"sharedThroughputSpendAckText": [Function],
|
|
||||||
"sharedThroughputSpendAckVisible": [Function],
|
|
||||||
"tableId": [Function],
|
|
||||||
"throughput": [Function],
|
|
||||||
"throughputRangeText": [Function],
|
|
||||||
"throughputSpendAck": [Function],
|
|
||||||
"throughputSpendAckText": [Function],
|
|
||||||
"throughputSpendAckVisible": [Function],
|
|
||||||
"title": [Function],
|
|
||||||
"userTableQuery": [Function],
|
|
||||||
"visible": [Function],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"_refreshSparkEnabledStateForAccount": [Function],
|
|
||||||
"_resetNotebookWorkspace": [Function],
|
|
||||||
"addCollectionPane": AddCollectionPane {
|
|
||||||
"_isSynapseLinkEnabled": [Function],
|
|
||||||
"autoPilotThroughput": [Function],
|
|
||||||
"autoPilotUsageCost": [Function],
|
|
||||||
"canConfigureThroughput": [Function],
|
|
||||||
"canExceedMaximumValue": [Function],
|
|
||||||
"canRequestSupport": [Function],
|
|
||||||
"collectionId": [Function],
|
|
||||||
"collectionIdTitle": [Function],
|
|
||||||
"collectionWithThroughputInShared": [Function],
|
|
||||||
"collectionWithThroughputInSharedTitle": [Function],
|
|
||||||
"container": [Circular],
|
|
||||||
"costsVisible": [Function],
|
|
||||||
"databaseCreateNew": [Function],
|
|
||||||
"databaseCreateNewShared": [Function],
|
|
||||||
"databaseHasSharedOffer": [Function],
|
|
||||||
"databaseId": [Function],
|
|
||||||
"databaseIds": [Function],
|
|
||||||
"dedicatedRequestUnitsUsageCost": [Function],
|
|
||||||
"displayCollectionThroughput": [Function],
|
|
||||||
"firstFieldHasFocus": [Function],
|
|
||||||
"formErrors": [Function],
|
|
||||||
"formErrorsDetails": [Function],
|
|
||||||
"formWarnings": [Function],
|
|
||||||
"freeTierExceedThroughputTooltip": [Function],
|
|
||||||
"id": "addcollectionpane",
|
|
||||||
"isAnalyticalStorageOn": [Function],
|
|
||||||
"isAutoPilotSelected": [Function],
|
|
||||||
"isExecuting": [Function],
|
|
||||||
"isFixedStorageSelected": [Function],
|
|
||||||
"isFreeTierAccount": [Function],
|
|
||||||
"isNonTableApi": [Function],
|
|
||||||
"isPreferredApiTable": [Function],
|
|
||||||
"isSharedAutoPilotSelected": [Function],
|
|
||||||
"isSynapseLinkSupported": [Function],
|
|
||||||
"isSynapseLinkUpdating": [Function],
|
|
||||||
"isTemplateReady": [Function],
|
|
||||||
"isTryCosmosDBSubscription": [Function],
|
|
||||||
"isUnlimitedStorageSelected": [Function],
|
|
||||||
"largePartitionKey": [Function],
|
|
||||||
"lowerCasePartitionKeyName": [Function],
|
|
||||||
"maxCollectionsReached": [Function],
|
|
||||||
"maxCollectionsReachedMessage": [Function],
|
|
||||||
"maxThroughputRU": [Function],
|
|
||||||
"minThroughputRU": [Function],
|
|
||||||
"onMoreDetailsKeyPress": [Function],
|
|
||||||
"partitionKey": [Function],
|
|
||||||
"partitionKeyName": [Function],
|
|
||||||
"partitionKeyPattern": [Function],
|
|
||||||
"partitionKeyPlaceholder": [Function],
|
|
||||||
"partitionKeyTitle": [Function],
|
|
||||||
"partitionKeyVisible": [Function],
|
|
||||||
"requestUnitsUsageCost": [Function],
|
|
||||||
"ruToolTipText": [Function],
|
|
||||||
"sharedAutoPilotThroughput": [Function],
|
|
||||||
"sharedThroughputRangeText": [Function],
|
|
||||||
"shouldCreateMongoWildcardIndex": [Function],
|
|
||||||
"shouldUseDatabaseThroughput": [Function],
|
|
||||||
"showAnalyticalStore": [Function],
|
|
||||||
"showEnableSynapseLink": [Function],
|
|
||||||
"showIndexingOptionsForSharedThroughput": [Function],
|
|
||||||
"showUpsellMessage": [Function],
|
|
||||||
"storage": [Function],
|
|
||||||
"throughputDatabase": [Function],
|
|
||||||
"throughputMultiPartition": [Function],
|
|
||||||
"throughputRangeText": [Function],
|
|
||||||
"throughputSinglePartition": [Function],
|
|
||||||
"throughputSpendAck": [Function],
|
|
||||||
"throughputSpendAckText": [Function],
|
|
||||||
"throughputSpendAckVisible": [Function],
|
|
||||||
"title": [Function],
|
|
||||||
"ttl90DaysEnabled": [Function],
|
|
||||||
"uniqueKeys": [Function],
|
|
||||||
"uniqueKeysPlaceholder": [Function],
|
|
||||||
"uniqueKeysVisible": [Function],
|
|
||||||
"upsellAnchorText": [Function],
|
|
||||||
"upsellAnchorUrl": [Function],
|
|
||||||
"upsellMessage": [Function],
|
|
||||||
"upsellMessageAriaLabel": [Function],
|
|
||||||
"useIndexingForSharedThroughput": [Function],
|
|
||||||
"visible": [Function],
|
|
||||||
},
|
|
||||||
"addCollectionText": [Function],
|
|
||||||
"addDatabasePane": AddDatabasePane {
|
|
||||||
"autoPilotUsageCost": [Function],
|
|
||||||
"canConfigureThroughput": [Function],
|
|
||||||
"canExceedMaximumValue": [Function],
|
|
||||||
"canRequestSupport": [Function],
|
|
||||||
"container": [Circular],
|
|
||||||
"costsVisible": [Function],
|
|
||||||
"databaseCreateNewShared": [Function],
|
|
||||||
"databaseId": [Function],
|
|
||||||
"databaseIdLabel": [Function],
|
|
||||||
"databaseIdPlaceHolder": [Function],
|
|
||||||
"databaseIdTooltipText": [Function],
|
|
||||||
"databaseLevelThroughputTooltipText": [Function],
|
|
||||||
"firstFieldHasFocus": [Function],
|
|
||||||
"formErrors": [Function],
|
|
||||||
"formErrorsDetails": [Function],
|
|
||||||
"freeTierExceedThroughputTooltip": [Function],
|
|
||||||
"id": "adddatabasepane",
|
|
||||||
"isAutoPilotSelected": [Function],
|
|
||||||
"isExecuting": [Function],
|
|
||||||
"isFreeTierAccount": [Function],
|
|
||||||
"isTemplateReady": [Function],
|
|
||||||
"maxAutoPilotThroughputSet": [Function],
|
|
||||||
"maxThroughputRU": [Function],
|
|
||||||
"maxThroughputRUText": [Function],
|
|
||||||
"minThroughputRU": [Function],
|
|
||||||
"onMoreDetailsKeyPress": [Function],
|
|
||||||
"requestUnitsUsageCost": [Function],
|
|
||||||
"ruToolTipText": [Function],
|
|
||||||
"showUpsellMessage": [Function],
|
|
||||||
"throughput": [Function],
|
|
||||||
"throughputRangeText": [Function],
|
|
||||||
"throughputSpendAck": [Function],
|
|
||||||
"throughputSpendAckText": [Function],
|
|
||||||
"throughputSpendAckVisible": [Function],
|
|
||||||
"title": [Function],
|
|
||||||
"upsellAnchorText": [Function],
|
|
||||||
"upsellAnchorUrl": [Function],
|
|
||||||
"upsellMessage": [Function],
|
|
||||||
"upsellMessageAriaLabel": [Function],
|
|
||||||
"visible": [Function],
|
|
||||||
},
|
|
||||||
"addDatabaseText": [Function],
|
|
||||||
"arcadiaToken": [Function],
|
|
||||||
"canExceedMaximumValue": [Function],
|
|
||||||
"canSaveQueries": [Function],
|
|
||||||
"cassandraAddCollectionPane": CassandraAddCollectionPane {
|
|
||||||
"autoPilotUsageCost": [Function],
|
|
||||||
"canConfigureThroughput": [Function],
|
|
||||||
"canExceedMaximumValue": [Function],
|
|
||||||
"canRequestSupport": [Function],
|
|
||||||
"container": [Circular],
|
|
||||||
"costsVisible": [Function],
|
|
||||||
"createTableQuery": [Function],
|
|
||||||
"dedicateTableThroughput": [Function],
|
|
||||||
"firstFieldHasFocus": [Function],
|
|
||||||
"formErrors": [Function],
|
|
||||||
"formErrorsDetails": [Function],
|
|
||||||
"id": "cassandraaddcollectionpane",
|
|
||||||
"isAutoPilotSelected": [Function],
|
|
||||||
"isExecuting": [Function],
|
|
||||||
"isFreeTierAccount": [Function],
|
|
||||||
"isSharedAutoPilotSelected": [Function],
|
|
||||||
"isTemplateReady": [Function],
|
|
||||||
"keyspaceCreateNew": [Function],
|
|
||||||
"keyspaceHasSharedOffer": [Function],
|
|
||||||
"keyspaceId": [Function],
|
|
||||||
"keyspaceIds": [Function],
|
|
||||||
"keyspaceOffers": Map {},
|
|
||||||
"keyspaceThroughput": [Function],
|
|
||||||
"maxThroughputRU": [Function],
|
|
||||||
"minThroughputRU": [Function],
|
|
||||||
"requestUnitsUsageCostDedicated": [Function],
|
|
||||||
"requestUnitsUsageCostShared": [Function],
|
|
||||||
"ruToolTipText": [Function],
|
|
||||||
"selectedAutoPilotThroughput": [Function],
|
|
||||||
"sharedAutoPilotThroughput": [Function],
|
|
||||||
"sharedThroughputRangeText": [Function],
|
|
||||||
"sharedThroughputSpendAck": [Function],
|
|
||||||
"sharedThroughputSpendAckText": [Function],
|
|
||||||
"sharedThroughputSpendAckVisible": [Function],
|
|
||||||
"tableId": [Function],
|
|
||||||
"throughput": [Function],
|
|
||||||
"throughputRangeText": [Function],
|
|
||||||
"throughputSpendAck": [Function],
|
|
||||||
"throughputSpendAckText": [Function],
|
|
||||||
"throughputSpendAckVisible": [Function],
|
|
||||||
"title": [Function],
|
|
||||||
"userTableQuery": [Function],
|
|
||||||
"visible": [Function],
|
|
||||||
},
|
|
||||||
"clickHostedAccountSwitch": [Function],
|
|
||||||
"clickHostedDirectorySwitch": [Function],
|
|
||||||
"closeDialog": undefined,
|
|
||||||
"closeSidePanel": undefined,
|
|
||||||
"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 [],
|
|
||||||
},
|
|
||||||
"databaseAccount": [Function],
|
|
||||||
"databases": [Function],
|
|
||||||
"defaultExperience": [Function],
|
|
||||||
"deleteCollectionText": [Function],
|
|
||||||
"deleteDatabaseText": [Function],
|
|
||||||
"graphStylingPane": GraphStylingPane {
|
|
||||||
"container": [Circular],
|
|
||||||
"firstFieldHasFocus": [Function],
|
|
||||||
"formErrors": [Function],
|
|
||||||
"formErrorsDetails": [Function],
|
|
||||||
"graphConfigUIData": Object {
|
|
||||||
"nodeCaptionChoice": [Function],
|
|
||||||
"nodeColorKeyChoice": [Function],
|
|
||||||
"nodeIconChoice": [Function],
|
|
||||||
"nodeIconSet": [Function],
|
|
||||||
"nodeProperties": [Function],
|
|
||||||
"nodePropertiesWithNone": [Function],
|
|
||||||
"showNeighborType": [Function],
|
|
||||||
},
|
|
||||||
"id": "graphstylingpane",
|
|
||||||
"isExecuting": [Function],
|
|
||||||
"isTemplateReady": [Function],
|
|
||||||
"title": [Function],
|
|
||||||
"visible": [Function],
|
|
||||||
},
|
|
||||||
"hasStorageAnalyticsAfecFeature": [Function],
|
|
||||||
"isAccountReady": [Function],
|
|
||||||
"isAutoscaleDefaultEnabled": [Function],
|
|
||||||
"isEnableMongoCapabilityPresent": [Function],
|
|
||||||
"isFixedCollectionWithSharedThroughputSupported": [Function],
|
|
||||||
"isGitHubPaneEnabled": [Function],
|
|
||||||
"isHostedDataExplorerEnabled": [Function],
|
|
||||||
"isLeftPaneExpanded": [Function],
|
|
||||||
"isMongoIndexingEnabled": [Function],
|
|
||||||
"isNotebookEnabled": [Function],
|
|
||||||
"isNotebooksEnabledForAccount": [Function],
|
|
||||||
"isPublishNotebookPaneEnabled": [Function],
|
|
||||||
"isResourceTokenCollectionNodeSelected": [Function],
|
|
||||||
"isRightPanelV2Enabled": [Function],
|
|
||||||
"isSchemaEnabled": [Function],
|
|
||||||
"isServerlessEnabled": [Function],
|
|
||||||
"isSparkEnabled": [Function],
|
|
||||||
"isSparkEnabledForAccount": [Function],
|
|
||||||
"isSynapseLinkUpdating": [Function],
|
|
||||||
"isTabsContentExpanded": [Function],
|
|
||||||
"memoryUsageInfo": [Function],
|
|
||||||
"notebookBasePath": [Function],
|
|
||||||
"notebookServerInfo": [Function],
|
|
||||||
"onRefreshDatabasesKeyPress": [Function],
|
|
||||||
"onRefreshResourcesClick": [Function],
|
|
||||||
"onSwitchToConnectionString": [Function],
|
|
||||||
"openDialog": undefined,
|
|
||||||
"openSidePanel": undefined,
|
|
||||||
"provideFeedbackEmail": [Function],
|
|
||||||
"queriesClient": QueriesClient {
|
|
||||||
"container": [Circular],
|
|
||||||
},
|
|
||||||
"refreshDatabaseAccount": [Function],
|
|
||||||
"refreshNotebookList": [Function],
|
|
||||||
"refreshTreeTitle": [Function],
|
|
||||||
"resourceTokenCollection": [Function],
|
|
||||||
"resourceTokenCollectionId": [Function],
|
|
||||||
"resourceTokenDatabaseId": [Function],
|
|
||||||
"resourceTokenPartitionKey": [Function],
|
|
||||||
"resourceTree": ResourceTreeAdapter {
|
|
||||||
"container": [Circular],
|
|
||||||
"copyNotebook": [Function],
|
|
||||||
"databaseCollectionIdMap": Map {},
|
|
||||||
"koSubsCollectionIdMap": Map {},
|
|
||||||
"koSubsDatabaseIdMap": Map {},
|
|
||||||
"parameters": [Function],
|
|
||||||
},
|
|
||||||
"resourceTreeForResourceToken": ResourceTreeAdapterForResourceToken {
|
|
||||||
"container": [Circular],
|
|
||||||
"parameters": [Function],
|
|
||||||
},
|
|
||||||
"selectedDatabaseId": [Function],
|
|
||||||
"selectedNode": [Function],
|
|
||||||
"setInProgressConsoleDataIdToBeDeleted": undefined,
|
|
||||||
"setIsNotificationConsoleExpanded": undefined,
|
|
||||||
"setNotificationConsoleData": undefined,
|
|
||||||
"signInAad": [Function],
|
|
||||||
"sparkClusterConnectionInfo": [Function],
|
|
||||||
"splitter": Splitter {
|
|
||||||
"bounds": Object {
|
|
||||||
"max": 400,
|
|
||||||
"min": 240,
|
|
||||||
},
|
|
||||||
"direction": "vertical",
|
|
||||||
"isCollapsed": [Function],
|
|
||||||
"leftSideId": "resourcetree",
|
|
||||||
"onResizeStart": [Function],
|
|
||||||
"onResizeStop": [Function],
|
|
||||||
"splitterId": "h_splitter1",
|
|
||||||
},
|
|
||||||
"tabsManager": TabsManager {
|
|
||||||
"activeTab": [Function],
|
|
||||||
"openedTabs": [Function],
|
|
||||||
},
|
|
||||||
"toggleLeftPaneExpandedKeyPress": [Function],
|
|
||||||
}
|
|
||||||
}
|
|
||||||
formError=""
|
formError=""
|
||||||
formErrorDetail=""
|
formErrorDetail=""
|
||||||
id="stringInputPane"
|
id="stringInputPane"
|
||||||
|
|
|
@ -11,7 +11,7 @@ exports[`Table query select Panel should render Default properly 1`] = `
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<GenericRightPaneComponent
|
<GenericRightPaneComponent
|
||||||
container={Object {}}
|
expandConsole={[Function]}
|
||||||
formError=""
|
formError=""
|
||||||
formErrorDetail=""
|
formErrorDetail=""
|
||||||
id="querySelectPane"
|
id="querySelectPane"
|
||||||
|
|
|
@ -32,7 +32,6 @@ export const TableQuerySelectPanel: FunctionComponent<TableQuerySelectPanelProps
|
||||||
const [isAvailableColumnChecked, setIsAvailableColumnChecked] = useState<boolean>(true);
|
const [isAvailableColumnChecked, setIsAvailableColumnChecked] = useState<boolean>(true);
|
||||||
|
|
||||||
const genericPaneProps: GenericRightPaneProps = {
|
const genericPaneProps: GenericRightPaneProps = {
|
||||||
container: explorer,
|
|
||||||
formError: "",
|
formError: "",
|
||||||
formErrorDetail: "",
|
formErrorDetail: "",
|
||||||
id: "querySelectPane",
|
id: "querySelectPane",
|
||||||
|
@ -41,6 +40,7 @@ export const TableQuerySelectPanel: FunctionComponent<TableQuerySelectPanelProps
|
||||||
submitButtonText: "OK",
|
submitButtonText: "OK",
|
||||||
onClose: () => closePanel(),
|
onClose: () => closePanel(),
|
||||||
onSubmit: () => submit(),
|
onSubmit: () => submit(),
|
||||||
|
expandConsole: () => explorer.expandConsole(),
|
||||||
};
|
};
|
||||||
|
|
||||||
const submit = (): void => {
|
const submit = (): void => {
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
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 { logConsoleError, logConsoleInfo, logConsoleProgress } from "../../../Utils/NotificationConsoleUtils";
|
import { logConsoleError, logConsoleInfo, logConsoleProgress } from "../../../Utils/NotificationConsoleUtils";
|
||||||
import Explorer from "../../Explorer";
|
|
||||||
import { NotebookContentItem } from "../../Notebook/NotebookContentItem";
|
import { NotebookContentItem } from "../../Notebook/NotebookContentItem";
|
||||||
import {
|
import {
|
||||||
GenericRightPaneComponent,
|
GenericRightPaneComponent,
|
||||||
|
@ -9,13 +8,13 @@ import {
|
||||||
} from "../GenericRightPaneComponent/GenericRightPaneComponent";
|
} from "../GenericRightPaneComponent/GenericRightPaneComponent";
|
||||||
|
|
||||||
export interface UploadFilePanelProps {
|
export interface UploadFilePanelProps {
|
||||||
explorer: Explorer;
|
expandConsole: () => void;
|
||||||
closePanel: () => void;
|
closePanel: () => void;
|
||||||
uploadFile: (name: string, content: string) => Promise<NotebookContentItem>;
|
uploadFile: (name: string, content: string) => Promise<NotebookContentItem>;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const UploadFilePane: FunctionComponent<UploadFilePanelProps> = ({
|
export const UploadFilePane: FunctionComponent<UploadFilePanelProps> = ({
|
||||||
explorer: container,
|
expandConsole,
|
||||||
closePanel,
|
closePanel,
|
||||||
uploadFile,
|
uploadFile,
|
||||||
}: UploadFilePanelProps) => {
|
}: UploadFilePanelProps) => {
|
||||||
|
@ -93,7 +92,7 @@ export const UploadFilePane: FunctionComponent<UploadFilePanelProps> = ({
|
||||||
};
|
};
|
||||||
|
|
||||||
const genericPaneProps: GenericRightPaneProps = {
|
const genericPaneProps: GenericRightPaneProps = {
|
||||||
container: container,
|
expandConsole,
|
||||||
formError: formErrors,
|
formError: formErrors,
|
||||||
formErrorDetail: formErrorsDetails,
|
formErrorDetail: formErrorsDetails,
|
||||||
id: "uploadFilePane",
|
id: "uploadFilePane",
|
||||||
|
|
|
@ -71,7 +71,7 @@ export const UploadItemsPane: FunctionComponent<UploadItemsPaneProps> = ({
|
||||||
};
|
};
|
||||||
|
|
||||||
const genericPaneProps: GenericRightPaneProps = {
|
const genericPaneProps: GenericRightPaneProps = {
|
||||||
container: explorer,
|
expandConsole: () => explorer.expandConsole(),
|
||||||
formError,
|
formError,
|
||||||
formErrorDetail,
|
formErrorDetail,
|
||||||
id: "uploaditemspane",
|
id: "uploaditemspane",
|
||||||
|
|
|
@ -2,504 +2,7 @@
|
||||||
|
|
||||||
exports[`Upload Items Pane should render Default properly 1`] = `
|
exports[`Upload Items Pane should render Default properly 1`] = `
|
||||||
<GenericRightPaneComponent
|
<GenericRightPaneComponent
|
||||||
container={
|
expandConsole={[Function]}
|
||||||
Explorer {
|
|
||||||
"_closeModalDialog": [Function],
|
|
||||||
"_closeSynapseLinkModalDialog": [Function],
|
|
||||||
"_isAfecFeatureRegistered": [Function],
|
|
||||||
"_isInitializingNotebooks": false,
|
|
||||||
"_panes": Array [
|
|
||||||
AddDatabasePane {
|
|
||||||
"autoPilotUsageCost": [Function],
|
|
||||||
"canConfigureThroughput": [Function],
|
|
||||||
"canExceedMaximumValue": [Function],
|
|
||||||
"canRequestSupport": [Function],
|
|
||||||
"container": [Circular],
|
|
||||||
"costsVisible": [Function],
|
|
||||||
"databaseCreateNewShared": [Function],
|
|
||||||
"databaseId": [Function],
|
|
||||||
"databaseIdLabel": [Function],
|
|
||||||
"databaseIdPlaceHolder": [Function],
|
|
||||||
"databaseIdTooltipText": [Function],
|
|
||||||
"databaseLevelThroughputTooltipText": [Function],
|
|
||||||
"firstFieldHasFocus": [Function],
|
|
||||||
"formErrors": [Function],
|
|
||||||
"formErrorsDetails": [Function],
|
|
||||||
"freeTierExceedThroughputTooltip": [Function],
|
|
||||||
"id": "adddatabasepane",
|
|
||||||
"isAutoPilotSelected": [Function],
|
|
||||||
"isExecuting": [Function],
|
|
||||||
"isFreeTierAccount": [Function],
|
|
||||||
"isTemplateReady": [Function],
|
|
||||||
"maxAutoPilotThroughputSet": [Function],
|
|
||||||
"maxThroughputRU": [Function],
|
|
||||||
"maxThroughputRUText": [Function],
|
|
||||||
"minThroughputRU": [Function],
|
|
||||||
"onMoreDetailsKeyPress": [Function],
|
|
||||||
"requestUnitsUsageCost": [Function],
|
|
||||||
"ruToolTipText": [Function],
|
|
||||||
"showUpsellMessage": [Function],
|
|
||||||
"throughput": [Function],
|
|
||||||
"throughputRangeText": [Function],
|
|
||||||
"throughputSpendAck": [Function],
|
|
||||||
"throughputSpendAckText": [Function],
|
|
||||||
"throughputSpendAckVisible": [Function],
|
|
||||||
"title": [Function],
|
|
||||||
"upsellAnchorText": [Function],
|
|
||||||
"upsellAnchorUrl": [Function],
|
|
||||||
"upsellMessage": [Function],
|
|
||||||
"upsellMessageAriaLabel": [Function],
|
|
||||||
"visible": [Function],
|
|
||||||
},
|
|
||||||
AddCollectionPane {
|
|
||||||
"_isSynapseLinkEnabled": [Function],
|
|
||||||
"autoPilotThroughput": [Function],
|
|
||||||
"autoPilotUsageCost": [Function],
|
|
||||||
"canConfigureThroughput": [Function],
|
|
||||||
"canExceedMaximumValue": [Function],
|
|
||||||
"canRequestSupport": [Function],
|
|
||||||
"collectionId": [Function],
|
|
||||||
"collectionIdTitle": [Function],
|
|
||||||
"collectionWithThroughputInShared": [Function],
|
|
||||||
"collectionWithThroughputInSharedTitle": [Function],
|
|
||||||
"container": [Circular],
|
|
||||||
"costsVisible": [Function],
|
|
||||||
"databaseCreateNew": [Function],
|
|
||||||
"databaseCreateNewShared": [Function],
|
|
||||||
"databaseHasSharedOffer": [Function],
|
|
||||||
"databaseId": [Function],
|
|
||||||
"databaseIds": [Function],
|
|
||||||
"dedicatedRequestUnitsUsageCost": [Function],
|
|
||||||
"displayCollectionThroughput": [Function],
|
|
||||||
"firstFieldHasFocus": [Function],
|
|
||||||
"formErrors": [Function],
|
|
||||||
"formErrorsDetails": [Function],
|
|
||||||
"formWarnings": [Function],
|
|
||||||
"freeTierExceedThroughputTooltip": [Function],
|
|
||||||
"id": "addcollectionpane",
|
|
||||||
"isAnalyticalStorageOn": [Function],
|
|
||||||
"isAutoPilotSelected": [Function],
|
|
||||||
"isExecuting": [Function],
|
|
||||||
"isFixedStorageSelected": [Function],
|
|
||||||
"isFreeTierAccount": [Function],
|
|
||||||
"isNonTableApi": [Function],
|
|
||||||
"isPreferredApiTable": [Function],
|
|
||||||
"isSharedAutoPilotSelected": [Function],
|
|
||||||
"isSynapseLinkSupported": [Function],
|
|
||||||
"isSynapseLinkUpdating": [Function],
|
|
||||||
"isTemplateReady": [Function],
|
|
||||||
"isTryCosmosDBSubscription": [Function],
|
|
||||||
"isUnlimitedStorageSelected": [Function],
|
|
||||||
"largePartitionKey": [Function],
|
|
||||||
"lowerCasePartitionKeyName": [Function],
|
|
||||||
"maxCollectionsReached": [Function],
|
|
||||||
"maxCollectionsReachedMessage": [Function],
|
|
||||||
"maxThroughputRU": [Function],
|
|
||||||
"minThroughputRU": [Function],
|
|
||||||
"onMoreDetailsKeyPress": [Function],
|
|
||||||
"partitionKey": [Function],
|
|
||||||
"partitionKeyName": [Function],
|
|
||||||
"partitionKeyPattern": [Function],
|
|
||||||
"partitionKeyPlaceholder": [Function],
|
|
||||||
"partitionKeyTitle": [Function],
|
|
||||||
"partitionKeyVisible": [Function],
|
|
||||||
"requestUnitsUsageCost": [Function],
|
|
||||||
"ruToolTipText": [Function],
|
|
||||||
"sharedAutoPilotThroughput": [Function],
|
|
||||||
"sharedThroughputRangeText": [Function],
|
|
||||||
"shouldCreateMongoWildcardIndex": [Function],
|
|
||||||
"shouldUseDatabaseThroughput": [Function],
|
|
||||||
"showAnalyticalStore": [Function],
|
|
||||||
"showEnableSynapseLink": [Function],
|
|
||||||
"showIndexingOptionsForSharedThroughput": [Function],
|
|
||||||
"showUpsellMessage": [Function],
|
|
||||||
"storage": [Function],
|
|
||||||
"throughputDatabase": [Function],
|
|
||||||
"throughputMultiPartition": [Function],
|
|
||||||
"throughputRangeText": [Function],
|
|
||||||
"throughputSinglePartition": [Function],
|
|
||||||
"throughputSpendAck": [Function],
|
|
||||||
"throughputSpendAckText": [Function],
|
|
||||||
"throughputSpendAckVisible": [Function],
|
|
||||||
"title": [Function],
|
|
||||||
"ttl90DaysEnabled": [Function],
|
|
||||||
"uniqueKeys": [Function],
|
|
||||||
"uniqueKeysPlaceholder": [Function],
|
|
||||||
"uniqueKeysVisible": [Function],
|
|
||||||
"upsellAnchorText": [Function],
|
|
||||||
"upsellAnchorUrl": [Function],
|
|
||||||
"upsellMessage": [Function],
|
|
||||||
"upsellMessageAriaLabel": [Function],
|
|
||||||
"useIndexingForSharedThroughput": [Function],
|
|
||||||
"visible": [Function],
|
|
||||||
},
|
|
||||||
GraphStylingPane {
|
|
||||||
"container": [Circular],
|
|
||||||
"firstFieldHasFocus": [Function],
|
|
||||||
"formErrors": [Function],
|
|
||||||
"formErrorsDetails": [Function],
|
|
||||||
"graphConfigUIData": Object {
|
|
||||||
"nodeCaptionChoice": [Function],
|
|
||||||
"nodeColorKeyChoice": [Function],
|
|
||||||
"nodeIconChoice": [Function],
|
|
||||||
"nodeIconSet": [Function],
|
|
||||||
"nodeProperties": [Function],
|
|
||||||
"nodePropertiesWithNone": [Function],
|
|
||||||
"showNeighborType": [Function],
|
|
||||||
},
|
|
||||||
"id": "graphstylingpane",
|
|
||||||
"isExecuting": [Function],
|
|
||||||
"isTemplateReady": [Function],
|
|
||||||
"title": [Function],
|
|
||||||
"visible": [Function],
|
|
||||||
},
|
|
||||||
CassandraAddCollectionPane {
|
|
||||||
"autoPilotUsageCost": [Function],
|
|
||||||
"canConfigureThroughput": [Function],
|
|
||||||
"canExceedMaximumValue": [Function],
|
|
||||||
"canRequestSupport": [Function],
|
|
||||||
"container": [Circular],
|
|
||||||
"costsVisible": [Function],
|
|
||||||
"createTableQuery": [Function],
|
|
||||||
"dedicateTableThroughput": [Function],
|
|
||||||
"firstFieldHasFocus": [Function],
|
|
||||||
"formErrors": [Function],
|
|
||||||
"formErrorsDetails": [Function],
|
|
||||||
"id": "cassandraaddcollectionpane",
|
|
||||||
"isAutoPilotSelected": [Function],
|
|
||||||
"isExecuting": [Function],
|
|
||||||
"isFreeTierAccount": [Function],
|
|
||||||
"isSharedAutoPilotSelected": [Function],
|
|
||||||
"isTemplateReady": [Function],
|
|
||||||
"keyspaceCreateNew": [Function],
|
|
||||||
"keyspaceHasSharedOffer": [Function],
|
|
||||||
"keyspaceId": [Function],
|
|
||||||
"keyspaceIds": [Function],
|
|
||||||
"keyspaceOffers": Map {},
|
|
||||||
"keyspaceThroughput": [Function],
|
|
||||||
"maxThroughputRU": [Function],
|
|
||||||
"minThroughputRU": [Function],
|
|
||||||
"requestUnitsUsageCostDedicated": [Function],
|
|
||||||
"requestUnitsUsageCostShared": [Function],
|
|
||||||
"ruToolTipText": [Function],
|
|
||||||
"selectedAutoPilotThroughput": [Function],
|
|
||||||
"sharedAutoPilotThroughput": [Function],
|
|
||||||
"sharedThroughputRangeText": [Function],
|
|
||||||
"sharedThroughputSpendAck": [Function],
|
|
||||||
"sharedThroughputSpendAckText": [Function],
|
|
||||||
"sharedThroughputSpendAckVisible": [Function],
|
|
||||||
"tableId": [Function],
|
|
||||||
"throughput": [Function],
|
|
||||||
"throughputRangeText": [Function],
|
|
||||||
"throughputSpendAck": [Function],
|
|
||||||
"throughputSpendAckText": [Function],
|
|
||||||
"throughputSpendAckVisible": [Function],
|
|
||||||
"title": [Function],
|
|
||||||
"userTableQuery": [Function],
|
|
||||||
"visible": [Function],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"_refreshSparkEnabledStateForAccount": [Function],
|
|
||||||
"_resetNotebookWorkspace": [Function],
|
|
||||||
"addCollectionPane": AddCollectionPane {
|
|
||||||
"_isSynapseLinkEnabled": [Function],
|
|
||||||
"autoPilotThroughput": [Function],
|
|
||||||
"autoPilotUsageCost": [Function],
|
|
||||||
"canConfigureThroughput": [Function],
|
|
||||||
"canExceedMaximumValue": [Function],
|
|
||||||
"canRequestSupport": [Function],
|
|
||||||
"collectionId": [Function],
|
|
||||||
"collectionIdTitle": [Function],
|
|
||||||
"collectionWithThroughputInShared": [Function],
|
|
||||||
"collectionWithThroughputInSharedTitle": [Function],
|
|
||||||
"container": [Circular],
|
|
||||||
"costsVisible": [Function],
|
|
||||||
"databaseCreateNew": [Function],
|
|
||||||
"databaseCreateNewShared": [Function],
|
|
||||||
"databaseHasSharedOffer": [Function],
|
|
||||||
"databaseId": [Function],
|
|
||||||
"databaseIds": [Function],
|
|
||||||
"dedicatedRequestUnitsUsageCost": [Function],
|
|
||||||
"displayCollectionThroughput": [Function],
|
|
||||||
"firstFieldHasFocus": [Function],
|
|
||||||
"formErrors": [Function],
|
|
||||||
"formErrorsDetails": [Function],
|
|
||||||
"formWarnings": [Function],
|
|
||||||
"freeTierExceedThroughputTooltip": [Function],
|
|
||||||
"id": "addcollectionpane",
|
|
||||||
"isAnalyticalStorageOn": [Function],
|
|
||||||
"isAutoPilotSelected": [Function],
|
|
||||||
"isExecuting": [Function],
|
|
||||||
"isFixedStorageSelected": [Function],
|
|
||||||
"isFreeTierAccount": [Function],
|
|
||||||
"isNonTableApi": [Function],
|
|
||||||
"isPreferredApiTable": [Function],
|
|
||||||
"isSharedAutoPilotSelected": [Function],
|
|
||||||
"isSynapseLinkSupported": [Function],
|
|
||||||
"isSynapseLinkUpdating": [Function],
|
|
||||||
"isTemplateReady": [Function],
|
|
||||||
"isTryCosmosDBSubscription": [Function],
|
|
||||||
"isUnlimitedStorageSelected": [Function],
|
|
||||||
"largePartitionKey": [Function],
|
|
||||||
"lowerCasePartitionKeyName": [Function],
|
|
||||||
"maxCollectionsReached": [Function],
|
|
||||||
"maxCollectionsReachedMessage": [Function],
|
|
||||||
"maxThroughputRU": [Function],
|
|
||||||
"minThroughputRU": [Function],
|
|
||||||
"onMoreDetailsKeyPress": [Function],
|
|
||||||
"partitionKey": [Function],
|
|
||||||
"partitionKeyName": [Function],
|
|
||||||
"partitionKeyPattern": [Function],
|
|
||||||
"partitionKeyPlaceholder": [Function],
|
|
||||||
"partitionKeyTitle": [Function],
|
|
||||||
"partitionKeyVisible": [Function],
|
|
||||||
"requestUnitsUsageCost": [Function],
|
|
||||||
"ruToolTipText": [Function],
|
|
||||||
"sharedAutoPilotThroughput": [Function],
|
|
||||||
"sharedThroughputRangeText": [Function],
|
|
||||||
"shouldCreateMongoWildcardIndex": [Function],
|
|
||||||
"shouldUseDatabaseThroughput": [Function],
|
|
||||||
"showAnalyticalStore": [Function],
|
|
||||||
"showEnableSynapseLink": [Function],
|
|
||||||
"showIndexingOptionsForSharedThroughput": [Function],
|
|
||||||
"showUpsellMessage": [Function],
|
|
||||||
"storage": [Function],
|
|
||||||
"throughputDatabase": [Function],
|
|
||||||
"throughputMultiPartition": [Function],
|
|
||||||
"throughputRangeText": [Function],
|
|
||||||
"throughputSinglePartition": [Function],
|
|
||||||
"throughputSpendAck": [Function],
|
|
||||||
"throughputSpendAckText": [Function],
|
|
||||||
"throughputSpendAckVisible": [Function],
|
|
||||||
"title": [Function],
|
|
||||||
"ttl90DaysEnabled": [Function],
|
|
||||||
"uniqueKeys": [Function],
|
|
||||||
"uniqueKeysPlaceholder": [Function],
|
|
||||||
"uniqueKeysVisible": [Function],
|
|
||||||
"upsellAnchorText": [Function],
|
|
||||||
"upsellAnchorUrl": [Function],
|
|
||||||
"upsellMessage": [Function],
|
|
||||||
"upsellMessageAriaLabel": [Function],
|
|
||||||
"useIndexingForSharedThroughput": [Function],
|
|
||||||
"visible": [Function],
|
|
||||||
},
|
|
||||||
"addCollectionText": [Function],
|
|
||||||
"addDatabasePane": AddDatabasePane {
|
|
||||||
"autoPilotUsageCost": [Function],
|
|
||||||
"canConfigureThroughput": [Function],
|
|
||||||
"canExceedMaximumValue": [Function],
|
|
||||||
"canRequestSupport": [Function],
|
|
||||||
"container": [Circular],
|
|
||||||
"costsVisible": [Function],
|
|
||||||
"databaseCreateNewShared": [Function],
|
|
||||||
"databaseId": [Function],
|
|
||||||
"databaseIdLabel": [Function],
|
|
||||||
"databaseIdPlaceHolder": [Function],
|
|
||||||
"databaseIdTooltipText": [Function],
|
|
||||||
"databaseLevelThroughputTooltipText": [Function],
|
|
||||||
"firstFieldHasFocus": [Function],
|
|
||||||
"formErrors": [Function],
|
|
||||||
"formErrorsDetails": [Function],
|
|
||||||
"freeTierExceedThroughputTooltip": [Function],
|
|
||||||
"id": "adddatabasepane",
|
|
||||||
"isAutoPilotSelected": [Function],
|
|
||||||
"isExecuting": [Function],
|
|
||||||
"isFreeTierAccount": [Function],
|
|
||||||
"isTemplateReady": [Function],
|
|
||||||
"maxAutoPilotThroughputSet": [Function],
|
|
||||||
"maxThroughputRU": [Function],
|
|
||||||
"maxThroughputRUText": [Function],
|
|
||||||
"minThroughputRU": [Function],
|
|
||||||
"onMoreDetailsKeyPress": [Function],
|
|
||||||
"requestUnitsUsageCost": [Function],
|
|
||||||
"ruToolTipText": [Function],
|
|
||||||
"showUpsellMessage": [Function],
|
|
||||||
"throughput": [Function],
|
|
||||||
"throughputRangeText": [Function],
|
|
||||||
"throughputSpendAck": [Function],
|
|
||||||
"throughputSpendAckText": [Function],
|
|
||||||
"throughputSpendAckVisible": [Function],
|
|
||||||
"title": [Function],
|
|
||||||
"upsellAnchorText": [Function],
|
|
||||||
"upsellAnchorUrl": [Function],
|
|
||||||
"upsellMessage": [Function],
|
|
||||||
"upsellMessageAriaLabel": [Function],
|
|
||||||
"visible": [Function],
|
|
||||||
},
|
|
||||||
"addDatabaseText": [Function],
|
|
||||||
"arcadiaToken": [Function],
|
|
||||||
"canExceedMaximumValue": [Function],
|
|
||||||
"canSaveQueries": [Function],
|
|
||||||
"cassandraAddCollectionPane": CassandraAddCollectionPane {
|
|
||||||
"autoPilotUsageCost": [Function],
|
|
||||||
"canConfigureThroughput": [Function],
|
|
||||||
"canExceedMaximumValue": [Function],
|
|
||||||
"canRequestSupport": [Function],
|
|
||||||
"container": [Circular],
|
|
||||||
"costsVisible": [Function],
|
|
||||||
"createTableQuery": [Function],
|
|
||||||
"dedicateTableThroughput": [Function],
|
|
||||||
"firstFieldHasFocus": [Function],
|
|
||||||
"formErrors": [Function],
|
|
||||||
"formErrorsDetails": [Function],
|
|
||||||
"id": "cassandraaddcollectionpane",
|
|
||||||
"isAutoPilotSelected": [Function],
|
|
||||||
"isExecuting": [Function],
|
|
||||||
"isFreeTierAccount": [Function],
|
|
||||||
"isSharedAutoPilotSelected": [Function],
|
|
||||||
"isTemplateReady": [Function],
|
|
||||||
"keyspaceCreateNew": [Function],
|
|
||||||
"keyspaceHasSharedOffer": [Function],
|
|
||||||
"keyspaceId": [Function],
|
|
||||||
"keyspaceIds": [Function],
|
|
||||||
"keyspaceOffers": Map {},
|
|
||||||
"keyspaceThroughput": [Function],
|
|
||||||
"maxThroughputRU": [Function],
|
|
||||||
"minThroughputRU": [Function],
|
|
||||||
"requestUnitsUsageCostDedicated": [Function],
|
|
||||||
"requestUnitsUsageCostShared": [Function],
|
|
||||||
"ruToolTipText": [Function],
|
|
||||||
"selectedAutoPilotThroughput": [Function],
|
|
||||||
"sharedAutoPilotThroughput": [Function],
|
|
||||||
"sharedThroughputRangeText": [Function],
|
|
||||||
"sharedThroughputSpendAck": [Function],
|
|
||||||
"sharedThroughputSpendAckText": [Function],
|
|
||||||
"sharedThroughputSpendAckVisible": [Function],
|
|
||||||
"tableId": [Function],
|
|
||||||
"throughput": [Function],
|
|
||||||
"throughputRangeText": [Function],
|
|
||||||
"throughputSpendAck": [Function],
|
|
||||||
"throughputSpendAckText": [Function],
|
|
||||||
"throughputSpendAckVisible": [Function],
|
|
||||||
"title": [Function],
|
|
||||||
"userTableQuery": [Function],
|
|
||||||
"visible": [Function],
|
|
||||||
},
|
|
||||||
"clickHostedAccountSwitch": [Function],
|
|
||||||
"clickHostedDirectorySwitch": [Function],
|
|
||||||
"closeDialog": undefined,
|
|
||||||
"closeSidePanel": undefined,
|
|
||||||
"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 [],
|
|
||||||
},
|
|
||||||
"databaseAccount": [Function],
|
|
||||||
"databases": [Function],
|
|
||||||
"defaultExperience": [Function],
|
|
||||||
"deleteCollectionText": [Function],
|
|
||||||
"deleteDatabaseText": [Function],
|
|
||||||
"graphStylingPane": GraphStylingPane {
|
|
||||||
"container": [Circular],
|
|
||||||
"firstFieldHasFocus": [Function],
|
|
||||||
"formErrors": [Function],
|
|
||||||
"formErrorsDetails": [Function],
|
|
||||||
"graphConfigUIData": Object {
|
|
||||||
"nodeCaptionChoice": [Function],
|
|
||||||
"nodeColorKeyChoice": [Function],
|
|
||||||
"nodeIconChoice": [Function],
|
|
||||||
"nodeIconSet": [Function],
|
|
||||||
"nodeProperties": [Function],
|
|
||||||
"nodePropertiesWithNone": [Function],
|
|
||||||
"showNeighborType": [Function],
|
|
||||||
},
|
|
||||||
"id": "graphstylingpane",
|
|
||||||
"isExecuting": [Function],
|
|
||||||
"isTemplateReady": [Function],
|
|
||||||
"title": [Function],
|
|
||||||
"visible": [Function],
|
|
||||||
},
|
|
||||||
"hasStorageAnalyticsAfecFeature": [Function],
|
|
||||||
"isAccountReady": [Function],
|
|
||||||
"isAutoscaleDefaultEnabled": [Function],
|
|
||||||
"isEnableMongoCapabilityPresent": [Function],
|
|
||||||
"isFixedCollectionWithSharedThroughputSupported": [Function],
|
|
||||||
"isGitHubPaneEnabled": [Function],
|
|
||||||
"isHostedDataExplorerEnabled": [Function],
|
|
||||||
"isLeftPaneExpanded": [Function],
|
|
||||||
"isMongoIndexingEnabled": [Function],
|
|
||||||
"isNotebookEnabled": [Function],
|
|
||||||
"isNotebooksEnabledForAccount": [Function],
|
|
||||||
"isPublishNotebookPaneEnabled": [Function],
|
|
||||||
"isResourceTokenCollectionNodeSelected": [Function],
|
|
||||||
"isRightPanelV2Enabled": [Function],
|
|
||||||
"isSchemaEnabled": [Function],
|
|
||||||
"isServerlessEnabled": [Function],
|
|
||||||
"isSparkEnabled": [Function],
|
|
||||||
"isSparkEnabledForAccount": [Function],
|
|
||||||
"isSynapseLinkUpdating": [Function],
|
|
||||||
"isTabsContentExpanded": [Function],
|
|
||||||
"memoryUsageInfo": [Function],
|
|
||||||
"notebookBasePath": [Function],
|
|
||||||
"notebookServerInfo": [Function],
|
|
||||||
"onRefreshDatabasesKeyPress": [Function],
|
|
||||||
"onRefreshResourcesClick": [Function],
|
|
||||||
"onSwitchToConnectionString": [Function],
|
|
||||||
"openDialog": undefined,
|
|
||||||
"openSidePanel": undefined,
|
|
||||||
"provideFeedbackEmail": [Function],
|
|
||||||
"queriesClient": QueriesClient {
|
|
||||||
"container": [Circular],
|
|
||||||
},
|
|
||||||
"refreshDatabaseAccount": [Function],
|
|
||||||
"refreshNotebookList": [Function],
|
|
||||||
"refreshTreeTitle": [Function],
|
|
||||||
"resourceTokenCollection": [Function],
|
|
||||||
"resourceTokenCollectionId": [Function],
|
|
||||||
"resourceTokenDatabaseId": [Function],
|
|
||||||
"resourceTokenPartitionKey": [Function],
|
|
||||||
"resourceTree": ResourceTreeAdapter {
|
|
||||||
"container": [Circular],
|
|
||||||
"copyNotebook": [Function],
|
|
||||||
"databaseCollectionIdMap": Map {},
|
|
||||||
"koSubsCollectionIdMap": Map {},
|
|
||||||
"koSubsDatabaseIdMap": Map {},
|
|
||||||
"parameters": [Function],
|
|
||||||
},
|
|
||||||
"resourceTreeForResourceToken": ResourceTreeAdapterForResourceToken {
|
|
||||||
"container": [Circular],
|
|
||||||
"parameters": [Function],
|
|
||||||
},
|
|
||||||
"selectedDatabaseId": [Function],
|
|
||||||
"selectedNode": [Function],
|
|
||||||
"setInProgressConsoleDataIdToBeDeleted": undefined,
|
|
||||||
"setIsNotificationConsoleExpanded": undefined,
|
|
||||||
"setNotificationConsoleData": undefined,
|
|
||||||
"signInAad": [Function],
|
|
||||||
"sparkClusterConnectionInfo": [Function],
|
|
||||||
"splitter": Splitter {
|
|
||||||
"bounds": Object {
|
|
||||||
"max": 400,
|
|
||||||
"min": 240,
|
|
||||||
},
|
|
||||||
"direction": "vertical",
|
|
||||||
"isCollapsed": [Function],
|
|
||||||
"leftSideId": "resourcetree",
|
|
||||||
"onResizeStart": [Function],
|
|
||||||
"onResizeStop": [Function],
|
|
||||||
"splitterId": "h_splitter1",
|
|
||||||
},
|
|
||||||
"tabsManager": TabsManager {
|
|
||||||
"activeTab": [Function],
|
|
||||||
"openedTabs": [Function],
|
|
||||||
},
|
|
||||||
"toggleLeftPaneExpandedKeyPress": [Function],
|
|
||||||
}
|
|
||||||
}
|
|
||||||
formError=""
|
formError=""
|
||||||
formErrorDetail=""
|
formErrorDetail=""
|
||||||
id="uploaditemspane"
|
id="uploaditemspane"
|
||||||
|
|
Loading…
Reference in New Issue