From 8cc04bab87ba2f557398e64222505f9b6341e65a Mon Sep 17 00:00:00 2001 From: Jordi Bunster Date: Thu, 25 Mar 2021 15:24:43 -0700 Subject: [PATCH] MongoDocumentsTab.html was not used here (#582) --- src/Explorer/ComponentRegisterer.ts | 2 - src/Explorer/Tabs/MongoDocumentsTab.html | 426 ----------------------- src/Explorer/Tabs/MongoDocumentsTab.ts | 2 - 3 files changed, 430 deletions(-) delete mode 100644 src/Explorer/Tabs/MongoDocumentsTab.html diff --git a/src/Explorer/ComponentRegisterer.ts b/src/Explorer/ComponentRegisterer.ts index 67c2777fa..b67717c0e 100644 --- a/src/Explorer/ComponentRegisterer.ts +++ b/src/Explorer/ComponentRegisterer.ts @@ -11,7 +11,6 @@ import { NewVertexComponent } from "./Graph/NewVertexComponent/NewVertexComponen import { ThroughputInputComponentAutoPilotV3 } from "./Controls/ThroughputInput/ThroughputInputComponentAutoPilotV3"; import DocumentsTab from "./Tabs/DocumentsTab"; -import MongoDocumentsTab from "./Tabs/MongoDocumentsTab"; import StoredProcedureTab from "./Tabs/StoredProcedureTab"; import TriggerTab from "./Tabs/TriggerTab"; import UserDefinedFunctionTab from "./Tabs/UserDefinedFunctionTab"; @@ -42,7 +41,6 @@ ko.components.register("tabs-manager", { template: TabsManagerTemplate }); // Collection Tabs [ DocumentsTab, - MongoDocumentsTab, StoredProcedureTab, TriggerTab, UserDefinedFunctionTab, diff --git a/src/Explorer/Tabs/MongoDocumentsTab.html b/src/Explorer/Tabs/MongoDocumentsTab.html deleted file mode 100644 index 00e2a6685..000000000 --- a/src/Explorer/Tabs/MongoDocumentsTab.html +++ /dev/null @@ -1,426 +0,0 @@ -
- -
-
- - - New Document - - - New Document - - - - - - New SQL Query - - - New Query - - - - - - Save - - - Save - - - - - - Discard - - - Discard - - - - - - Update - - - Update - - - - - - Discard - - - Discard - - - - - - Delete - - - Delete - - -
-
- - - - -
-
-

Title

-
Text
-
-
- - -
-
-
-
- - - - -
- -
- SELECT * FROM c - - -
-
- Filter : - - No filter applied - - -
- - - -
-
-
- - SELECT * FROM c - - - - - - - - - - - - - - -
-
-
- -
- - - -
-
-
- - - - - - - - - - - - - -
_idid - -
- - - - - - - - - - - -
_id - -
- -
- -
- - - - - - - - - - - -
- -
- -
- Load more -
-
- - - -
-
-
- -
-
- -
diff --git a/src/Explorer/Tabs/MongoDocumentsTab.ts b/src/Explorer/Tabs/MongoDocumentsTab.ts index e72f0c2e3..61fce5059 100644 --- a/src/Explorer/Tabs/MongoDocumentsTab.ts +++ b/src/Explorer/Tabs/MongoDocumentsTab.ts @@ -20,10 +20,8 @@ import { extractPartitionKey } from "@azure/cosmos"; import * as Logger from "../../Common/Logger"; import { PartitionKeyDefinition } from "@azure/cosmos"; import { getErrorMessage, getErrorStack } from "../../Common/ErrorHandlingUtils"; -import template from "./MongoDocumentsTab.html"; export default class MongoDocumentsTab extends DocumentsTab { - public static readonly component = { name: "mongo-documents-tab", template }; public collection: ViewModels.Collection; private continuationToken: string;