Users/bogercraig/add cdb live show link (#1391)
* Exchanged links on DE home page with link to the Azure Cosmos DB Live TV show. * Adding back accidentally removed terminating , * Added cdb TV to Postgres quick start splash page. * Removing cdb tv description from next steps and moved up. * Moved cdb tv to the tips and learn more column on postgres getting started page. * Shortening postgrest cdb tv line. * Removing link from PG since only 1 episode so far for PG. * Adding terminating comma back. Formatting. * Consolidating Cosmos DB Live TV to a single variable. * Updating prettier formatting.
This commit is contained in:
parent
31cc129aa7
commit
49d9f489d8
|
@ -563,7 +563,17 @@ export class SplashScreen extends React.Component<SplashScreenProps> {
|
||||||
}
|
}
|
||||||
|
|
||||||
private getLearningResourceItems(): JSX.Element {
|
private getLearningResourceItems(): JSX.Element {
|
||||||
let items: { link: string; title: string; description: string }[];
|
interface item {
|
||||||
|
link: string;
|
||||||
|
title: string;
|
||||||
|
description: string;
|
||||||
|
}
|
||||||
|
const cdbLiveTv: item = {
|
||||||
|
link: "https://developer.azurecosmosdb.com/tv",
|
||||||
|
title: "Learn the Fundamentals",
|
||||||
|
description: "Watch Azure Cosmos DB Live TV show introductory and how to videos.",
|
||||||
|
};
|
||||||
|
let items: item[];
|
||||||
switch (userContext.apiType) {
|
switch (userContext.apiType) {
|
||||||
case "SQL":
|
case "SQL":
|
||||||
case "Postgres":
|
case "Postgres":
|
||||||
|
@ -573,11 +583,7 @@ export class SplashScreen extends React.Component<SplashScreenProps> {
|
||||||
title: "Get Started using an SDK",
|
title: "Get Started using an SDK",
|
||||||
description: "Learn about the Azure Cosmos DB SDK.",
|
description: "Learn about the Azure Cosmos DB SDK.",
|
||||||
},
|
},
|
||||||
{
|
cdbLiveTv,
|
||||||
link: "https://aka.ms/msl-complex-queries",
|
|
||||||
title: "Master Complex Queries",
|
|
||||||
description: "Learn how to author complex queries.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
link: "https://aka.ms/msl-move-data",
|
link: "https://aka.ms/msl-move-data",
|
||||||
title: "Migrate Your Data",
|
title: "Migrate Your Data",
|
||||||
|
@ -597,11 +603,7 @@ export class SplashScreen extends React.Component<SplashScreenProps> {
|
||||||
title: "Getting Started Guide",
|
title: "Getting Started Guide",
|
||||||
description: "Learn the basics to get started.",
|
description: "Learn the basics to get started.",
|
||||||
},
|
},
|
||||||
{
|
cdbLiveTv,
|
||||||
link: "http://aka.ms/mongodotnet",
|
|
||||||
title: "Build a web API",
|
|
||||||
description: "Create a web API with the.NET SDK.",
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
break;
|
break;
|
||||||
case "Cassandra":
|
case "Cassandra":
|
||||||
|
@ -611,11 +613,7 @@ export class SplashScreen extends React.Component<SplashScreenProps> {
|
||||||
title: "Create a Container",
|
title: "Create a Container",
|
||||||
description: "Get to know the create a container options.",
|
description: "Get to know the create a container options.",
|
||||||
},
|
},
|
||||||
{
|
cdbLiveTv,
|
||||||
link: "https://aka.ms/cassandraserverdiagnostics",
|
|
||||||
title: "Run Server Diagnostics",
|
|
||||||
description: "Learn how to run server diagnostics.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
link: "https://aka.ms/Cassandrathroughput",
|
link: "https://aka.ms/Cassandrathroughput",
|
||||||
title: "Provision Throughput",
|
title: "Provision Throughput",
|
||||||
|
@ -635,11 +633,7 @@ export class SplashScreen extends React.Component<SplashScreenProps> {
|
||||||
title: "Import Graph Data",
|
title: "Import Graph Data",
|
||||||
description: "Learn Bulk ingestion data using BulkExecutor",
|
description: "Learn Bulk ingestion data using BulkExecutor",
|
||||||
},
|
},
|
||||||
{
|
cdbLiveTv,
|
||||||
link: "https://aka.ms/graphoptimize",
|
|
||||||
title: "Optimize your Queries",
|
|
||||||
description: "Learn how to evaluate your Gremlin queries",
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
break;
|
break;
|
||||||
case "Tables":
|
case "Tables":
|
||||||
|
@ -654,11 +648,7 @@ export class SplashScreen extends React.Component<SplashScreenProps> {
|
||||||
title: "Build a Java App",
|
title: "Build a Java App",
|
||||||
description: "Create a Azure Cosmos DB for Table app with Java SDK ",
|
description: "Create a Azure Cosmos DB for Table app with Java SDK ",
|
||||||
},
|
},
|
||||||
{
|
cdbLiveTv,
|
||||||
link: "https://aka.ms/tablenodejs",
|
|
||||||
title: "Build a Node.js App",
|
|
||||||
description: "Create a Azure Cosmos DB for Table app with Node.js SDK",
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue