BDC Dashboard WIP (#6812)

* Further work on dashboards

* More work on dashboard

* Undo adding manage to context menu until feature is complete

* Update cluster status name
This commit is contained in:
Charles Gagnon
2019-08-20 16:06:05 -07:00
committed by GitHub
parent 8fbbd5127c
commit b7b01fafd0
11 changed files with 2398 additions and 1522 deletions

View File

@@ -23,6 +23,8 @@ export class IconPath {
public static controllerNode: { dark: string, light: string };
public static folderNode: { dark: string, light: string };
public static sqlMasterNode: { dark: string, light: string };
public static copy: { dark: string, light: string };
public static refresh: { dark: string, light: string };
public static setExtensionContext(extensionContext: vscode.ExtensionContext) {
IconPath.extensionContext = extensionContext;
@@ -38,5 +40,13 @@ export class IconPath {
dark: IconPath.extensionContext.asAbsolutePath('resources/dark/sql_bigdata_cluster_inverse.svg'),
light: IconPath.extensionContext.asAbsolutePath('resources/light/sql_bigdata_cluster.svg')
};
IconPath.copy = {
light: IconPath.extensionContext.asAbsolutePath('resources/light/copy.svg'),
dark: IconPath.extensionContext.asAbsolutePath('resources/dark/copy_inverse.svg')
};
IconPath.refresh = {
light: IconPath.extensionContext.asAbsolutePath('resources/light/refresh.svg'),
dark: IconPath.extensionContext.asAbsolutePath('resources/dark/refresh_inverse.svg')
};
}
}
}