mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-20 01:25:37 -05:00
* another commmit * Now shows blank grid, nullcheck in queryhistory * renamed onAngularLoaded to onComponentLoaded * removed whitespace * removed unused dataservice import * now displays data, need to fix contextmenu actions * minor changes * another small commit * added timeout for context menu * updated queryhistoryserviceimpl * removed log * added commented out contextmenuregistrations * context menu now shows up need to test * added plugin registration WIP * another commit * yet another commit * added wip function * Clean up commit * more cleaning up * removed accessor * renamed instances of parts * updated * fixed merge conflicts * refactored bootstrapparams * fixed code * small changes to format * set editable to true for testing * added more options * moved options to separate variable * added texteditorclass for later * added rudimentary create editor support * changed grid.resize.emit to fire * added formatterfactory * added tslint disable * removed debug message * added more functions from Slickgrid.ts * added wip handlechanges function * another change * added columndefinitions * Managed to display table using handlechange * added ability to edit for now * added changes to table creation * added setupevents * added onInit * fixed sql.xlf * minor changes * tidying up * more cleaning up * changed console.log messages to debug ones. * added this.enableEditing * made changes to getoverridabletexteditor * fixed opencontextmenu * added timeout for detectChange * need to find way to run oncontext asynchronously * check stuff * oncontextmenu now no longer constantly refreshes * added oldDataRows for future use * add check for datarows * small changes made * set enableediting to true * more changes * added additional information for handlechanges * another change * more changes * set enableediting to true * fixed rerender * added small test mssage for jquery * text editor is in getOverridableTextEditorClass() * removed debug messages * added transparency for input.editor for table. * need to find out how to add editing for input * Added grid div to make slickgrid style work * reinstated selected. * disabled selectedcellcssclass * restored selected * removed selectionmodel due to not being found in the original code * Added externalSelectionModel for correct results * removed selectionmodel as its not used. * WIP work on refreshresultsets * temporarily bringing back selection model for now * added getSelectedRanges from slickgrid into Table * added getselectedranges from slickgrid into table * small cleanup changes * removed detectchanges * removed last of detectchanges * return of toprownumber * no need for toprownumber * removed isColumnLoading * some small formatting * fixed null check * added back todo comment * Added fix for context menu * small change * added missing value to getFormatter in grid panel * added fix for last row italics * added fix for null inconsistencies * Some consolidation * added new check for null cells * minor change * add check for selections (usually undefined) * removed null check in formatters * Some changes made * changed plugins array * removed todo * renamed some variables * deleted html file * Moved height and width to editData.css * added box-sizing for slickgridcontainer * fixed editdatagridpanel css * added small changes * More minor changes * removed params * renamed refreshResultsets to refreshDatasets * removed the stylesheet.remove lines * added fix for null * removed tables * removed spaces in refreshGrid * More minor changes * optimization and formatting * removal of unnecessary lines * replaced firstRender in some parts with firstLoad * Added timeout fix * minor changes * Still testing * cleanup * restored 200 timeout * added styling changes for editdata * removed angular2-slickgrid and added styling * Small formatting changes to editDataGridPanel * consolidation
91 lines
3.6 KiB
TypeScript
91 lines
3.6 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import QueryRunner, { IQueryMessage } from 'sql/platform/query/common/queryRunner';
|
|
import { DataService } from 'sql/workbench/contrib/grid/common/dataService';
|
|
import { createDecorator } from 'vs/platform/instantiation/common/instantiation';
|
|
import { Event } from 'vs/base/common/event';
|
|
import { QueryEditorInput } from 'sql/workbench/contrib/query/common/queryEditorInput';
|
|
import {
|
|
ISelectionData,
|
|
ResultSetSubset,
|
|
EditUpdateCellResult,
|
|
EditSessionReadyParams,
|
|
EditSubsetResult,
|
|
EditCreateRowResult,
|
|
EditRevertCellResult,
|
|
ExecutionPlanOptions,
|
|
queryeditor
|
|
} from 'azdata';
|
|
import { QueryInfo } from 'sql/platform/query/common/queryModelService';
|
|
|
|
export const SERVICE_ID = 'queryModelService';
|
|
|
|
export const IQueryModelService = createDecorator<IQueryModelService>(SERVICE_ID);
|
|
|
|
export interface IQueryPlanInfo {
|
|
providerId: string;
|
|
fileUri: string;
|
|
planXml: string;
|
|
}
|
|
|
|
export interface IQueryInfo {
|
|
selection: ISelectionData[];
|
|
messages: IQueryMessage[];
|
|
}
|
|
|
|
export interface IQueryEvent {
|
|
type: queryeditor.QueryEventType;
|
|
uri: string;
|
|
queryInfo: IQueryInfo;
|
|
params?: any;
|
|
}
|
|
|
|
/**
|
|
* Interface for the logic of handling running queries and grid interactions for all URIs.
|
|
*/
|
|
export interface IQueryModelService {
|
|
_serviceBrand: undefined;
|
|
|
|
getQueryRunner(uri: string): QueryRunner | undefined;
|
|
|
|
getQueryRows(uri: string, rowStart: number, numberOfRows: number, batchId: number, resultId: number): Promise<ResultSetSubset | undefined>;
|
|
runQuery(uri: string, selection: ISelectionData | undefined, queryInput: QueryEditorInput, runOptions?: ExecutionPlanOptions): void;
|
|
runQueryStatement(uri: string, selection: ISelectionData | undefined, queryInput: QueryEditorInput): void;
|
|
runQueryString(uri: string, selection: string | undefined, queryInput: QueryEditorInput): void;
|
|
cancelQuery(input: QueryRunner | string): void;
|
|
disposeQuery(uri: string): void;
|
|
isRunningQuery(uri: string): boolean;
|
|
|
|
getDataService(uri: string): DataService;
|
|
refreshResultsets(uri: string): void;
|
|
sendGridContentEvent(uri: string, eventName: string): void;
|
|
resizeResultsets(uri: string): void;
|
|
onLoaded(uri: string): void;
|
|
|
|
copyResults(uri: string, selection: Slick.Range[], batchId: number, resultId: number, includeHeaders?: boolean): void;
|
|
showCommitError(error: string): void;
|
|
|
|
onRunQueryStart: Event<string>;
|
|
onRunQueryUpdate: Event<string>;
|
|
onRunQueryComplete: Event<string>;
|
|
onQueryEvent: Event<IQueryEvent>;
|
|
|
|
// Edit Data Functions
|
|
initializeEdit(ownerUri: string, schemaName: string, objectName: string, objectType: string, rowLimit: number, queryString: string): void;
|
|
disposeEdit(ownerUri: string): Promise<void>;
|
|
updateCell(ownerUri: string, rowId: number, columnId: number, newValue: string): Promise<EditUpdateCellResult | undefined>;
|
|
commitEdit(ownerUri: string): Promise<void>;
|
|
createRow(ownerUri: string): Promise<EditCreateRowResult | undefined>;
|
|
deleteRow(ownerUri: string, rowId: number): Promise<void>;
|
|
revertCell(ownerUri: string, rowId: number, columnId: number): Promise<EditRevertCellResult | undefined>;
|
|
revertRow(ownerUri: string, rowId: number): Promise<void>;
|
|
getEditRows(ownerUri: string, rowStart: number, numberOfRows: number): Promise<EditSubsetResult | undefined>;
|
|
|
|
_getQueryInfo(uri: string): QueryInfo | undefined;
|
|
// Edit Data Callbacks
|
|
onEditSessionReady: Event<EditSessionReadyParams>;
|
|
}
|