mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-15 10:58:31 -05:00
* accept inline nav section contribution * contribution accepted both inline container and registered container * address comments * formatting
69 lines
1.8 KiB
TypeScript
69 lines
1.8 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 { InjectionToken, OnDestroy } from '@angular/core';
|
|
import { NgGridItemConfig } from 'angular2-grid';
|
|
import { Action } from 'vs/base/common/actions';
|
|
import { Disposable } from 'vs/base/common/lifecycle';
|
|
import { IDashboardTab } from 'sql/platform/dashboard/common/dashboardRegistry';
|
|
|
|
export interface IDashboardWidget {
|
|
actions: Array<Action>;
|
|
actionsContext?: any;
|
|
refresh?: () => void;
|
|
layout?: () => void;
|
|
}
|
|
|
|
export const WIDGET_CONFIG = new InjectionToken<WidgetConfig>('widget_config');
|
|
|
|
export interface WidgetConfig {
|
|
id?: string; // used to track the widget lifespan operations
|
|
name?: string;
|
|
icon?: string;
|
|
context: string;
|
|
provider: string | Array<string>;
|
|
edition: number | Array<number>;
|
|
gridItemConfig?: NgGridItemConfig;
|
|
widget: Object;
|
|
background_color?: string;
|
|
border?: string;
|
|
fontSize?: string;
|
|
fontWeight?: string;
|
|
padding?: string;
|
|
}
|
|
|
|
export interface TabConfig extends IDashboardTab {
|
|
context: string;
|
|
originalConfig: Array<WidgetConfig>;
|
|
editable: boolean;
|
|
canClose: boolean;
|
|
actions?: Array<Action>;
|
|
}
|
|
|
|
export type IUserFriendlyIcon = string | { light: string; dark: string; };
|
|
|
|
export interface NavSectionConfig {
|
|
id: string;
|
|
title: string;
|
|
icon?: IUserFriendlyIcon;
|
|
container: object;
|
|
}
|
|
|
|
export interface PinConfig {
|
|
tabId: string;
|
|
isPinned?: boolean;
|
|
}
|
|
|
|
export abstract class DashboardWidget extends Disposable implements OnDestroy {
|
|
protected _config: WidgetConfig;
|
|
|
|
get actions(): Array<Action> {
|
|
return [];
|
|
}
|
|
|
|
ngOnDestroy() {
|
|
this.dispose();
|
|
}
|
|
}
|