Initial Code Layering (#3788)

* working on formatting

* fixed basic lint errors; starting moving things to their appropriate location

* formatting

* update tslint to match the version of vscode we have

* remove unused code

* work in progress fixing layering

* formatting

* moved connection management service to platform

* formatting

* add missing file

* moving more servies

* formatting

* moving more services

* formatting

* wip

* moving more services

* formatting

* revert back tslint rules

* move css file

* add missing svgs
This commit is contained in:
Anthony Dresser
2019-01-25 14:52:35 -08:00
committed by GitHub
parent c8986464ec
commit ea67859de7
338 changed files with 2036 additions and 7386 deletions

View File

@@ -19,7 +19,7 @@ declare module 'sqlops' {
navContainer(): ContainerBuilder<NavContainer, any, any>;
divContainer(): DivBuilder;
flexContainer(): FlexBuilder;
dom(): ComponentBuilder<DomComponent>
dom(): ComponentBuilder<DomComponent>;
card(): ComponentBuilder<CardComponent>;
inputBox(): ComponentBuilder<InputBoxComponent>;
checkBox(): ComponentBuilder<CheckBoxComponent>;
@@ -47,8 +47,8 @@ declare module 'sqlops' {
}
export interface NodeCheckedEventParameters<T> {
element: T,
checked: boolean
element: T;
checked: boolean;
}
export interface TreeComponentView<T> extends vscode.Disposable {
@@ -922,13 +922,13 @@ declare module 'sqlops' {
/**
* The title of the dialog
*/
title: string,
title: string;
/**
* The content of the dialog. If multiple tabs are given they will be displayed with tabs
* If a string is given, it should be the ID of the dialog's model view content
*/
content: string | DialogTab[],
content: string | DialogTab[];
/**
* The ok button
@@ -1011,12 +1011,12 @@ declare module 'sqlops' {
/**
* The page number that the wizard changed from
*/
lastPage: number,
lastPage: number;
/**
* The new page number or undefined if the user is closing the wizard
*/
newPage: number
newPage: number;
}
export interface WizardPage extends ModelViewPanel {
@@ -1153,7 +1153,7 @@ declare module 'sqlops' {
* Set the informational message shown in the wizard. Hidden when the message is
* undefined or the text is empty or undefined. The default level is error.
*/
message: DialogMessage
message: DialogMessage;
/**
* Register an operation to run in the background when the wizard is done
@@ -1337,7 +1337,7 @@ declare module 'sqlops' {
/**
* The actual operation to execute
*/
operation: (operation: BackgroundOperation) => void
operation: (operation: BackgroundOperation) => void;
}
namespace tasks {