mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Add ModelView ImageComponent (#7106)
* Add ModelView ImageComponent * Remove duplicate property declarations * Fix sqlops too
This commit is contained in:
45
src/sql/azdata.d.ts
vendored
45
src/sql/azdata.d.ts
vendored
@@ -2471,6 +2471,7 @@ declare module 'azdata' {
|
|||||||
editor(): ComponentBuilder<EditorComponent>;
|
editor(): ComponentBuilder<EditorComponent>;
|
||||||
diffeditor(): ComponentBuilder<DiffEditorComponent>;
|
diffeditor(): ComponentBuilder<DiffEditorComponent>;
|
||||||
text(): ComponentBuilder<TextComponent>;
|
text(): ComponentBuilder<TextComponent>;
|
||||||
|
image(): ComponentBuilder<ImageComponent>;
|
||||||
button(): ComponentBuilder<ButtonComponent>;
|
button(): ComponentBuilder<ButtonComponent>;
|
||||||
dropDown(): ComponentBuilder<DropDownComponent>;
|
dropDown(): ComponentBuilder<DropDownComponent>;
|
||||||
tree<T>(): ComponentBuilder<TreeComponent<T>>;
|
tree<T>(): ComponentBuilder<TreeComponent<T>>;
|
||||||
@@ -3057,6 +3058,12 @@ declare module 'azdata' {
|
|||||||
CSSStyles?: { [key: string]: string };
|
CSSStyles?: { [key: string]: string };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ImageComponentProperties {
|
||||||
|
src: string;
|
||||||
|
alt?: string;
|
||||||
|
height?: number | string;
|
||||||
|
width?: number | string;
|
||||||
|
}
|
||||||
export interface LinkArea {
|
export interface LinkArea {
|
||||||
text: string;
|
text: string;
|
||||||
url: string;
|
url: string;
|
||||||
@@ -3092,7 +3099,6 @@ declare module 'azdata' {
|
|||||||
export interface ListBoxProperties {
|
export interface ListBoxProperties {
|
||||||
selectedRow?: number;
|
selectedRow?: number;
|
||||||
values?: string[];
|
values?: string[];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface WebViewProperties extends ComponentProperties {
|
export interface WebViewProperties extends ComponentProperties {
|
||||||
@@ -3136,10 +3142,25 @@ declare module 'azdata' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface ButtonProperties extends ComponentProperties, ComponentWithIcon {
|
export interface ButtonProperties extends ComponentProperties, ComponentWithIcon {
|
||||||
|
/**
|
||||||
|
* The label for the button
|
||||||
|
*/
|
||||||
label?: string;
|
label?: string;
|
||||||
|
/**
|
||||||
|
* Whether the button opens the file browser dialog
|
||||||
|
*/
|
||||||
isFile?: boolean;
|
isFile?: boolean;
|
||||||
|
/**
|
||||||
|
* The content of the currently selected file
|
||||||
|
*/
|
||||||
fileContent?: string;
|
fileContent?: string;
|
||||||
|
/**
|
||||||
|
* The title for the button. This title will show when hovered over
|
||||||
|
*/
|
||||||
title?: string;
|
title?: string;
|
||||||
|
/**
|
||||||
|
* The accessibility aria label for this component
|
||||||
|
*/
|
||||||
ariaLabel?: string;
|
ariaLabel?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -3182,9 +3203,10 @@ declare module 'azdata' {
|
|||||||
onDidClick: vscode.Event<any>;
|
onDidClick: vscode.Event<any>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ImageComponent extends Component, ImageComponentProperties {
|
||||||
|
}
|
||||||
|
|
||||||
export interface HyperlinkComponent extends Component, HyperlinkComponentProperties {
|
export interface HyperlinkComponent extends Component, HyperlinkComponentProperties {
|
||||||
label: string;
|
|
||||||
url: string;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface InputBoxComponent extends Component, InputBoxProperties {
|
export interface InputBoxComponent extends Component, InputBoxProperties {
|
||||||
@@ -3205,8 +3227,6 @@ declare module 'azdata' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface DropDownComponent extends Component, DropDownProperties {
|
export interface DropDownComponent extends Component, DropDownProperties {
|
||||||
value: string | CategoryValue;
|
|
||||||
values: string[] | CategoryValue[];
|
|
||||||
onValueChanged: vscode.Event<any>;
|
onValueChanged: vscode.Event<any>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -3221,8 +3241,6 @@ declare module 'azdata' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface ListBoxComponent extends Component, ListBoxProperties {
|
export interface ListBoxComponent extends Component, ListBoxProperties {
|
||||||
selectedRow?: number;
|
|
||||||
values: string[];
|
|
||||||
onRowSelected: vscode.Event<any>;
|
onRowSelected: vscode.Event<any>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -3343,19 +3361,6 @@ declare module 'azdata' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface ButtonComponent extends Component, ButtonProperties {
|
export interface ButtonComponent extends Component, ButtonProperties {
|
||||||
/**
|
|
||||||
* The label for the button
|
|
||||||
*/
|
|
||||||
label: string;
|
|
||||||
/**
|
|
||||||
* The title for the button. This title will show when it hovers
|
|
||||||
*/
|
|
||||||
title: string;
|
|
||||||
/**
|
|
||||||
* Icon Path for the button.
|
|
||||||
*/
|
|
||||||
iconPath: string | vscode.Uri | { light: string | vscode.Uri; dark: string | vscode.Uri };
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An event called when the button is clicked
|
* An event called when the button is clicked
|
||||||
*/
|
*/
|
||||||
|
|||||||
31
src/sql/sqlops.proposed.d.ts
vendored
31
src/sql/sqlops.proposed.d.ts
vendored
@@ -627,9 +627,21 @@ declare module 'sqlops' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface ButtonProperties extends ComponentProperties, ComponentWithIcon {
|
export interface ButtonProperties extends ComponentProperties, ComponentWithIcon {
|
||||||
|
/**
|
||||||
|
* The label for the button
|
||||||
|
*/
|
||||||
label?: string;
|
label?: string;
|
||||||
|
/**
|
||||||
|
* Whether the button opens the file browser dialog
|
||||||
|
*/
|
||||||
isFile?: boolean;
|
isFile?: boolean;
|
||||||
|
/**
|
||||||
|
* The content of the currently selected file
|
||||||
|
*/
|
||||||
fileContent?: string;
|
fileContent?: string;
|
||||||
|
/**
|
||||||
|
* The title for the button. This title will show when hovered over
|
||||||
|
*/
|
||||||
title?: string;
|
title?: string;
|
||||||
fileType?: string;
|
fileType?: string;
|
||||||
}
|
}
|
||||||
@@ -665,8 +677,6 @@ declare module 'sqlops' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface HyperlinkComponent extends Component, HyperlinkComponentProperties {
|
export interface HyperlinkComponent extends Component, HyperlinkComponentProperties {
|
||||||
label: string;
|
|
||||||
url: string;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface InputBoxComponent extends Component, InputBoxProperties {
|
export interface InputBoxComponent extends Component, InputBoxProperties {
|
||||||
@@ -684,8 +694,6 @@ declare module 'sqlops' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface DropDownComponent extends Component, DropDownProperties {
|
export interface DropDownComponent extends Component, DropDownProperties {
|
||||||
value: string | CategoryValue;
|
|
||||||
values: string[] | CategoryValue[];
|
|
||||||
onValueChanged: vscode.Event<any>;
|
onValueChanged: vscode.Event<any>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -700,8 +708,6 @@ declare module 'sqlops' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface ListBoxComponent extends Component, ListBoxProperties {
|
export interface ListBoxComponent extends Component, ListBoxProperties {
|
||||||
selectedRow?: number;
|
|
||||||
values: string[];
|
|
||||||
onRowSelected: vscode.Event<any>;
|
onRowSelected: vscode.Event<any>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -765,19 +771,6 @@ declare module 'sqlops' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface ButtonComponent extends Component, ButtonProperties {
|
export interface ButtonComponent extends Component, ButtonProperties {
|
||||||
/**
|
|
||||||
* The label for the button
|
|
||||||
*/
|
|
||||||
label: string;
|
|
||||||
/**
|
|
||||||
* The title for the button. This title will show when it hovers
|
|
||||||
*/
|
|
||||||
title: string;
|
|
||||||
/**
|
|
||||||
* Icon Path for the button.
|
|
||||||
*/
|
|
||||||
iconPath: string | vscode.Uri | { light: string | vscode.Uri; dark: string | vscode.Uri };
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An event called when the button is clicked
|
* An event called when the button is clicked
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -107,6 +107,13 @@ class ModelBuilderImpl implements azdata.ModelBuilder {
|
|||||||
return builder;
|
return builder;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
image(): azdata.ComponentBuilder<azdata.ImageComponent> {
|
||||||
|
let id = this.getNextComponentId();
|
||||||
|
let builder: ComponentBuilderImpl<azdata.ImageComponent> = this.getComponentBuilder(new ImageComponentWrapper(this._proxy, this._handle, id), id);
|
||||||
|
this._componentBuilders.set(id, builder);
|
||||||
|
return builder;
|
||||||
|
}
|
||||||
|
|
||||||
radioButton(): azdata.ComponentBuilder<azdata.RadioButtonComponent> {
|
radioButton(): azdata.ComponentBuilder<azdata.RadioButtonComponent> {
|
||||||
let id = this.getNextComponentId();
|
let id = this.getNextComponentId();
|
||||||
let builder: ComponentBuilderImpl<azdata.RadioButtonComponent> = this.getComponentBuilder(new RadioButtonWrapper(this._proxy, this._handle, id), id);
|
let builder: ComponentBuilderImpl<azdata.RadioButtonComponent> = this.getComponentBuilder(new RadioButtonWrapper(this._proxy, this._handle, id), id);
|
||||||
@@ -1118,6 +1125,42 @@ class TextComponentWrapper extends ComponentWrapper implements azdata.TextCompon
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class ImageComponentWrapper extends ComponentWrapper implements azdata.ImageComponentProperties {
|
||||||
|
|
||||||
|
constructor(proxy: MainThreadModelViewShape, handle: number, id: string) {
|
||||||
|
super(proxy, handle, ModelComponentTypes.Image, id);
|
||||||
|
this.properties = {};
|
||||||
|
}
|
||||||
|
|
||||||
|
public get src(): string {
|
||||||
|
return this.properties['src'];
|
||||||
|
}
|
||||||
|
public set src(v: string) {
|
||||||
|
this.setProperty('src', v);
|
||||||
|
}
|
||||||
|
|
||||||
|
public get alt(): string {
|
||||||
|
return this.properties['alt'];
|
||||||
|
}
|
||||||
|
public set alt(v: string) {
|
||||||
|
this.setProperty('alt', v);
|
||||||
|
}
|
||||||
|
|
||||||
|
public get height(): number | string {
|
||||||
|
return this.properties['height'];
|
||||||
|
}
|
||||||
|
public set height(v: number | string) {
|
||||||
|
this.setProperty('height', v);
|
||||||
|
}
|
||||||
|
|
||||||
|
public get width(): number | string {
|
||||||
|
return this.properties['width'];
|
||||||
|
}
|
||||||
|
public set width(v: number | string) {
|
||||||
|
this.setProperty('width', v);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
class TableComponentWrapper extends ComponentWrapper implements azdata.TableComponent {
|
class TableComponentWrapper extends ComponentWrapper implements azdata.TableComponent {
|
||||||
|
|
||||||
constructor(proxy: MainThreadModelViewShape, handle: number, id: string) {
|
constructor(proxy: MainThreadModelViewShape, handle: number, id: string) {
|
||||||
|
|||||||
@@ -166,7 +166,8 @@ export enum ModelComponentTypes {
|
|||||||
Editor,
|
Editor,
|
||||||
DiffEditor,
|
DiffEditor,
|
||||||
Dom,
|
Dom,
|
||||||
Hyperlink
|
Hyperlink,
|
||||||
|
Image
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum ColumnSizingMode {
|
export enum ColumnSizingMode {
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ import RadioButtonComponent from './radioButton.component';
|
|||||||
import WebViewComponent from './webview.component';
|
import WebViewComponent from './webview.component';
|
||||||
import TableComponent from './table.component';
|
import TableComponent from './table.component';
|
||||||
import TextComponent from './text.component';
|
import TextComponent from './text.component';
|
||||||
|
import ImageComponent from './image.component';
|
||||||
import LoadingComponent from './loadingComponent.component';
|
import LoadingComponent from './loadingComponent.component';
|
||||||
import FileBrowserTreeComponent from './fileBrowserTree.component';
|
import FileBrowserTreeComponent from './fileBrowserTree.component';
|
||||||
import EditorComponent from './editor.component';
|
import EditorComponent from './editor.component';
|
||||||
@@ -78,6 +79,9 @@ registerComponentType(WEBVIEW_COMPONENT, ModelComponentTypes.WebView, WebViewCom
|
|||||||
export const TEXT_COMPONENT = 'text-component';
|
export const TEXT_COMPONENT = 'text-component';
|
||||||
registerComponentType(TEXT_COMPONENT, ModelComponentTypes.Text, TextComponent);
|
registerComponentType(TEXT_COMPONENT, ModelComponentTypes.Text, TextComponent);
|
||||||
|
|
||||||
|
export const IMAGE_COMPONENT = 'image-component';
|
||||||
|
registerComponentType(IMAGE_COMPONENT, ModelComponentTypes.Image, ImageComponent);
|
||||||
|
|
||||||
export const TABLE_COMPONENT = 'table-component';
|
export const TABLE_COMPONENT = 'table-component';
|
||||||
registerComponentType(TABLE_COMPONENT, ModelComponentTypes.Table, TableComponent);
|
registerComponentType(TABLE_COMPONENT, ModelComponentTypes.Table, TableComponent);
|
||||||
|
|
||||||
|
|||||||
63
src/sql/workbench/browser/modelComponents/image.component.ts
Normal file
63
src/sql/workbench/browser/modelComponents/image.component.ts
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
/*---------------------------------------------------------------------------------------------
|
||||||
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||||
|
*--------------------------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
import {
|
||||||
|
Component, Input, Inject, ChangeDetectorRef, forwardRef,
|
||||||
|
OnDestroy, AfterViewInit, ElementRef
|
||||||
|
} from '@angular/core';
|
||||||
|
|
||||||
|
import * as azdata from 'azdata';
|
||||||
|
|
||||||
|
import { ComponentBase } from 'sql/workbench/browser/modelComponents/componentBase';
|
||||||
|
import { IComponent, IComponentDescriptor, IModelStore } from 'sql/workbench/browser/modelComponents/interfaces';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'modelview-image',
|
||||||
|
template: `
|
||||||
|
<img [style.width]="getWidth()" [style.height]="getHeight()" [src]="src" [alt]="alt">`
|
||||||
|
})
|
||||||
|
export default class ImageComponent extends ComponentBase implements IComponent, OnDestroy, AfterViewInit {
|
||||||
|
@Input() descriptor: IComponentDescriptor;
|
||||||
|
@Input() modelStore: IModelStore;
|
||||||
|
|
||||||
|
constructor(
|
||||||
|
@Inject(forwardRef(() => ChangeDetectorRef)) changeRef: ChangeDetectorRef,
|
||||||
|
@Inject(forwardRef(() => ElementRef)) el: ElementRef) {
|
||||||
|
super(changeRef, el);
|
||||||
|
}
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
this.baseInit();
|
||||||
|
}
|
||||||
|
|
||||||
|
ngAfterViewInit(): void {
|
||||||
|
}
|
||||||
|
|
||||||
|
ngOnDestroy(): void {
|
||||||
|
this.baseDestroy();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// IComponent implementation
|
||||||
|
|
||||||
|
public setLayout(layout: any): void {
|
||||||
|
this.layout();
|
||||||
|
}
|
||||||
|
|
||||||
|
public set src(newValue: string) {
|
||||||
|
this.setPropertyFromUI<azdata.ImageComponentProperties, string>((properties, value) => { properties.src = value; }, newValue);
|
||||||
|
}
|
||||||
|
|
||||||
|
public get src(): string {
|
||||||
|
return this.getPropertyOrDefault<azdata.ImageComponentProperties, string>((props) => props.src, '');
|
||||||
|
}
|
||||||
|
|
||||||
|
public set alt(newValue: string) {
|
||||||
|
this.setPropertyFromUI<azdata.ImageComponentProperties, string>((properties, value) => { properties.alt = value; }, newValue);
|
||||||
|
}
|
||||||
|
|
||||||
|
public get alt(): string {
|
||||||
|
return this.getPropertyOrDefault<azdata.ImageComponentProperties, string>((props) => props.alt, '');
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user