Add SQL settings into the settings editor (#5524)

- Initial stab at a hierarchy for all Azure Data Studio settings
- Will revisit later, but this covers all built-in settings
This commit is contained in:
Kevin Cunnane
2019-05-20 12:27:14 -07:00
committed by GitHub
parent 71b6e35231
commit 162dfbaab0
2 changed files with 56 additions and 1 deletions

View File

@@ -0,0 +1,52 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { localize } from 'vs/nls';
import { tocData as vstocData, ITOCEntry } from 'vs/workbench/contrib/preferences/browser/settingsLayout';
// Copy existing table of contents and append
export const tocData: ITOCEntry = Object.assign({}, vstocData);
let sqlTocItems: ITOCEntry[] = [{
id: 'data',
label: localize('data', "Data"),
children: [
{
id: 'data/connection',
label: localize('connection', "Connection"),
settings: ['startup.alwaysShowServersView', 'connection.*', 'serverGroup.*', 'datasource.*']
},
{
id: 'data/query',
label: localize('query', "Query"),
settings: ['sql.query.*', 'resultsGrid.*']
},
{
id: 'data/notebook',
label: localize('notebook', "Notebook"),
settings: ['notebook.*']
},
{
id: 'data/sql',
label: localize('sql', "SQL"),
settings: ['sql.*']
},
{
id: 'data/mssql',
label: localize('mssql', "Microsoft SQL Server"),
settings: ['mssql.*']
},
{
id: 'data/dashboard',
label: localize('dashboard', "Dashboard"),
settings: ['dashboard.*']
},
{
id: 'data/profiler',
label: localize('profiler', "Profiler"),
settings: ['profiler.*']
}
]
}];
tocData.children.push(...sqlTocItems);