mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
140 lines
3.5 KiB
TypeScript
140 lines
3.5 KiB
TypeScript
import { css } from '@emotion/css';
|
|
import React, { PureComponent } from 'react';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
import { stylesFactory } from '@grafana/ui';
|
|
import { config } from 'app/core/config';
|
|
import { DimensionContext } from 'app/features/dimensions/context';
|
|
import { ColorDimensionEditor } from 'app/features/dimensions/editors/ColorDimensionEditor';
|
|
import { TextDimensionEditor } from 'app/features/dimensions/editors/TextDimensionEditor';
|
|
|
|
import { CanvasElementItem, CanvasElementProps, defaultBgColor, defaultTextColor } from '../element';
|
|
import { Align, TextConfig, TextData, VAlign } from '../types';
|
|
|
|
class RectangleDisplay extends PureComponent<CanvasElementProps<TextConfig, TextData>> {
|
|
render() {
|
|
const { data } = this.props;
|
|
const styles = getStyles(config.theme2, data);
|
|
return (
|
|
<div className={styles.container}>
|
|
<span className={styles.span}>{data?.text}</span>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
const getStyles = stylesFactory((theme: GrafanaTheme2, data) => ({
|
|
container: css`
|
|
position: absolute;
|
|
height: 100%;
|
|
width: 100%;
|
|
display: table;
|
|
`,
|
|
span: css`
|
|
display: table-cell;
|
|
vertical-align: ${data.valign};
|
|
text-align: ${data.align};
|
|
font-size: ${data?.size}px;
|
|
color: ${data?.color};
|
|
`,
|
|
}));
|
|
export const rectangleItem: CanvasElementItem<TextConfig, TextData> = {
|
|
id: 'rectangle',
|
|
name: 'Rectangle',
|
|
description: 'Rectangle',
|
|
|
|
display: RectangleDisplay,
|
|
|
|
defaultSize: {
|
|
width: 240,
|
|
height: 160,
|
|
},
|
|
|
|
getNewOptions: (options) => ({
|
|
...options,
|
|
config: {
|
|
align: Align.Center,
|
|
valign: VAlign.Middle,
|
|
color: {
|
|
fixed: defaultTextColor,
|
|
},
|
|
},
|
|
background: {
|
|
color: {
|
|
fixed: defaultBgColor,
|
|
},
|
|
},
|
|
}),
|
|
|
|
// Called when data changes
|
|
prepareData: (ctx: DimensionContext, cfg: TextConfig) => {
|
|
const data: TextData = {
|
|
text: cfg.text ? ctx.getText(cfg.text).value() : '',
|
|
align: cfg.align ?? Align.Center,
|
|
valign: cfg.valign ?? VAlign.Middle,
|
|
size: cfg.size,
|
|
};
|
|
|
|
if (cfg.color) {
|
|
data.color = ctx.getColor(cfg.color).value();
|
|
}
|
|
|
|
return data;
|
|
},
|
|
|
|
// Heatmap overlay options
|
|
registerOptionsUI: (builder) => {
|
|
const category = ['Rectangle'];
|
|
builder
|
|
.addCustomEditor({
|
|
category,
|
|
id: 'textSelector',
|
|
path: 'config.text',
|
|
name: 'Text',
|
|
editor: TextDimensionEditor,
|
|
})
|
|
.addCustomEditor({
|
|
category,
|
|
id: 'config.color',
|
|
path: 'config.color',
|
|
name: 'Text color',
|
|
editor: ColorDimensionEditor,
|
|
settings: {},
|
|
defaultValue: {},
|
|
})
|
|
.addRadio({
|
|
category,
|
|
path: 'config.align',
|
|
name: 'Align text',
|
|
settings: {
|
|
options: [
|
|
{ value: Align.Left, label: 'Left' },
|
|
{ value: Align.Center, label: 'Center' },
|
|
{ value: Align.Right, label: 'Right' },
|
|
],
|
|
},
|
|
defaultValue: Align.Left,
|
|
})
|
|
.addRadio({
|
|
category,
|
|
path: 'config.valign',
|
|
name: 'Vertical align',
|
|
settings: {
|
|
options: [
|
|
{ value: VAlign.Top, label: 'Top' },
|
|
{ value: VAlign.Middle, label: 'Middle' },
|
|
{ value: VAlign.Bottom, label: 'Bottom' },
|
|
],
|
|
},
|
|
defaultValue: VAlign.Middle,
|
|
})
|
|
.addNumberInput({
|
|
category,
|
|
path: 'config.size',
|
|
name: 'Text size',
|
|
settings: {
|
|
placeholder: 'Auto',
|
|
},
|
|
});
|
|
},
|
|
};
|