mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-29 09:35:38 -05:00
* extension recommendation on application launch * Introducing Visualizer (SandDance) to the SQL Query Editor. (#6347) * Created Visualizer icon in the results grid. Utilized a context key so that the icon only shows if Visualizer extensions (currently, just SandDance) is installed. Visualizer icon open up SandDance in a top-level document. * When the user clicks on Charts, visualizer recommendation popup appears. User can click on "Install Extensions" to download the visualizer extensions. * Enabled SQL Query Editor to pass query data to SandDance extension. * Introducing Visualizer (SandDance) to the SQL Query Editor. (#6347) * Created Visualizer icon in the results grid. Utilized a context key so that the icon only shows if Visualizer extensions (currently, just SandDance) is installed. Visualizer icon open up SandDance in a top-level document. * When the user clicks on Charts, visualizer recommendation popup appears. User can click on "Install Extensions" to download the visualizer extensions. * Enabled SQL Query Editor to pass query data to SandDance extension. * Cleaned code; made changes according to PR comments * removed the test service for extensions gallary * Cleaned up code according to PR changes * unid changes to build/azure-piplines * Removed all the build/azure-pipelines changes * removed changes on media/language.svg * refactored extension recommendation system to allow it to be generic * updated extensionsViews to support generic extension query search; added localized constants for visualizer extensions * Made syntax and error message changes acccording to PR comments. * Updated recommendation message according to scenario type
23 lines
1.1 KiB
TypeScript
23 lines
1.1 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
export const ResizeContents = 'ResizeContents';
|
|
export const RefreshContents = 'RefreshContents';
|
|
export const ToggleResultPane = 'ToggleResultPane';
|
|
export const ToggleMessagePane = 'ToggleMessagePane';
|
|
export const CopySelection = 'CopySelection';
|
|
export const CopyWithHeaders = 'CopyWithHeaders';
|
|
export const CopyMessagesSelection = 'CopyMessagesSelection';
|
|
export const SelectAll = 'SelectAll';
|
|
export const SelectAllMessages = 'SelectAllMessages';
|
|
export const SaveAsCsv = 'SaveAsCSV';
|
|
export const SaveAsJSON = 'SaveAsJSON';
|
|
export const SaveAsExcel = 'SaveAsExcel';
|
|
export const SaveAsXML = 'SaveAsXML';
|
|
export const ViewAsChart = 'ViewAsChart';
|
|
export const ViewAsVisualizer = 'ViewAsVisualizer';
|
|
export const GoToNextQueryOutputTab = 'GoToNextQueryOutputTab';
|
|
export const GoToNextGrid = 'GoToNextGrid';
|