mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-19 08:51:24 +00:00
Updated document dB text changes (#2223)
* updated documentdb text changes * updated documentdb text changes * updated shall value --------- Co-authored-by: Sakshi Gupta <sakshig@microsoft.com>
This commit is contained in:
@@ -1016,7 +1016,7 @@ export default class Explorer {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case ViewModels.TerminalKind.VCoreMongo:
|
case ViewModels.TerminalKind.VCoreMongo:
|
||||||
title = "VCoreMongo Shell";
|
title = "Mongo Shell";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|||||||
@@ -136,7 +136,7 @@ describe("CommandBarComponentButtonFactory tests", () => {
|
|||||||
|
|
||||||
describe("Open Postgres and vCore Mongo buttons", () => {
|
describe("Open Postgres and vCore Mongo buttons", () => {
|
||||||
const openPostgresShellButtonLabel = "Open PSQL shell";
|
const openPostgresShellButtonLabel = "Open PSQL shell";
|
||||||
const openVCoreMongoShellButtonLabel = "Open MongoDB (vCore) shell";
|
const openVCoreMongoShellButtonLabel = "Open MongoDB (DocumentDB) shell";
|
||||||
|
|
||||||
beforeAll(() => {
|
beforeAll(() => {
|
||||||
mockExplorer = {} as Explorer;
|
mockExplorer = {} as Explorer;
|
||||||
|
|||||||
@@ -450,7 +450,7 @@ function createOpenTerminalButtonByKind(
|
|||||||
case ViewModels.TerminalKind.Postgres:
|
case ViewModels.TerminalKind.Postgres:
|
||||||
return "PSQL";
|
return "PSQL";
|
||||||
case ViewModels.TerminalKind.VCoreMongo:
|
case ViewModels.TerminalKind.VCoreMongo:
|
||||||
return "MongoDB (vCore)";
|
return "MongoDB (DocumentDB)";
|
||||||
default:
|
default:
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ export const VcoreMongoQuickstartGuide: React.FC = (): JSX.Element => {
|
|||||||
<Stack style={{ paddingTop: 8, height: "100%", width: "100%" }}>
|
<Stack style={{ paddingTop: 8, height: "100%", width: "100%" }}>
|
||||||
<Stack style={{ flexGrow: 1, padding: "0 20px", overflow: "auto" }}>
|
<Stack style={{ flexGrow: 1, padding: "0 20px", overflow: "auto" }}>
|
||||||
<Text variant="xxLarge">Quick start guide</Text>
|
<Text variant="xxLarge">Quick start guide</Text>
|
||||||
<Text variant="small">Getting started in Cosmos DB Mongo DB (vCore)</Text>
|
<Text variant="small">Getting started in Azure DocumentDB (with MongoDB compatibility)</Text>
|
||||||
{currentStep < 5 && (
|
{currentStep < 5 && (
|
||||||
<Pivot
|
<Pivot
|
||||||
style={{ marginTop: 10, width: "100%" }}
|
style={{ marginTop: 10, width: "100%" }}
|
||||||
@@ -68,13 +68,13 @@ export const VcoreMongoQuickstartGuide: React.FC = (): JSX.Element => {
|
|||||||
This tutorial guides you to create and query distributed tables using a sample dataset.
|
This tutorial guides you to create and query distributed tables using a sample dataset.
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
To start, input the admin password you used during the cluster creation process into the MongoDB vCore
|
To start, input the admin password you used during the cluster creation process into the Document DB
|
||||||
terminal.
|
terminal.
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
Note: If you navigate out of the Quick start blade (MongoDB vCore Shell), the session will be
|
Note: If you navigate out of the Quick start blade (MongoDB Shell), the session will be closed
|
||||||
closed and all ongoing commands might be interrupted.
|
and all ongoing commands might be interrupted.
|
||||||
</Text>
|
</Text>
|
||||||
</Stack>
|
</Stack>
|
||||||
</PivotItem>
|
</PivotItem>
|
||||||
@@ -295,7 +295,7 @@ export const VcoreMongoQuickstartGuide: React.FC = (): JSX.Element => {
|
|||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
Modernize your data seamlessly from an existing MongoDB cluster, whether it's on-premises or
|
Modernize your data seamlessly from an existing MongoDB cluster, whether it's on-premises or
|
||||||
hosted in the cloud, to Azure Cosmos DB for MongoDB vCore.
|
hosted in the cloud, to Azure DocumentDB.
|
||||||
<Link
|
<Link
|
||||||
target="_blank"
|
target="_blank"
|
||||||
href="https://learn.microsoft.com/azure/cosmos-db/mongodb/vcore/migration-options"
|
href="https://learn.microsoft.com/azure/cosmos-db/mongodb/vcore/migration-options"
|
||||||
|
|||||||
@@ -273,7 +273,7 @@ export class SplashScreen extends React.Component<SplashScreenProps> {
|
|||||||
subtitle = "Get started with our sample datasets, documentation, and additional tools.";
|
subtitle = "Get started with our sample datasets, documentation, and additional tools.";
|
||||||
break;
|
break;
|
||||||
case "VCoreMongo":
|
case "VCoreMongo":
|
||||||
title = "Welcome to Azure Cosmos DB for MongoDB (vCore)";
|
title = "Welcome to Azure DocumentDB (with MongoDB compatibility)";
|
||||||
subtitle = "Get started with our sample datasets, documentation, and additional tools.";
|
subtitle = "Get started with our sample datasets, documentation, and additional tools.";
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@@ -456,7 +456,7 @@ export class SplashScreen extends React.Component<SplashScreenProps> {
|
|||||||
if (userContext.apiType === "VCoreMongo") {
|
if (userContext.apiType === "VCoreMongo") {
|
||||||
icon = VisualStudioIcon;
|
icon = VisualStudioIcon;
|
||||||
title = "Connect with VS Code";
|
title = "Connect with VS Code";
|
||||||
description = "Query and Manage your MongoDB cluster in Visual Studio Code";
|
description = "Query and Manage your MongoDB and DocumentDB clusters in Visual Studio Code";
|
||||||
onClick = () => this.container.openInVsCode();
|
onClick = () => this.container.openInVsCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user