mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
* Playing around * This is getting interesting * Updates * Updated * Observable experiments * This is tricky * VizPanel panel renderer * New model progress * Maybe this could be something * Updated * Rename * updates * Updated * Query runners? not sure * Updated * updates * flex box layout starting to work * Testing * Tested an action * Parent context sort of working * Progress * Progress * Updated * Starting to work * Things are working * Scene list, nested scene demo * Progress on repeats * Moving things * Pretty big progress * More things working * Great progress * Progress * Name changing * Minor tweaks * Simplified sizing * Move toggleDirection to SceneFlexLayout * add feature flag (#50990) * removed new useObservable hook * Rename folder and feature toggle to scenes * Caching scenes so you can go back to another scene without having to re-query data * Fix issue with subs on re-mount * Fixing test * Added SceneCanvasText to play around with layout elements with size based on content * Scene: Edit mode and component edit wrapper that handles selection (#51078) * First step for scene variables * Started playing around with a scene edit mode * Better way to set component * Progress on edit mode * Update * Progress on edit mode * Progress on editor * Progress on editor * Updates * More working * Progress * Minor update * removed unnessary file * Moving things around * Updated * Making time range separate from time picker * minor rename of methods * The most basic variable start * Minor renames * Fixed interpolate issue if not found at closest level * An embryo of event model and url sync handling * Update url sync types * Removed unnessary any type arg Co-authored-by: Ryan McKinley <ryantxu@gmail.com> Co-authored-by: Dominik Prokop <dominik.prokop@grafana.com>
81 lines
2.3 KiB
TypeScript
81 lines
2.3 KiB
TypeScript
import React from 'react';
|
|
import AutoSizer from 'react-virtualized-auto-sizer';
|
|
|
|
import { AbsoluteTimeRange, FieldConfigSource, toUtc } from '@grafana/data';
|
|
import { PanelRenderer } from '@grafana/runtime';
|
|
import { Field, PanelChrome, Input } from '@grafana/ui';
|
|
|
|
import { SceneObjectBase } from '../core/SceneObjectBase';
|
|
import { SceneComponentProps, SceneObjectState } from '../core/types';
|
|
|
|
export interface VizPanelState extends SceneObjectState {
|
|
title?: string;
|
|
pluginId: string;
|
|
options?: object;
|
|
fieldConfig?: FieldConfigSource;
|
|
}
|
|
|
|
export class VizPanel extends SceneObjectBase<VizPanelState> {
|
|
static Component = ScenePanelRenderer;
|
|
static Editor = VizPanelEditor;
|
|
|
|
onSetTimeRange = (timeRange: AbsoluteTimeRange) => {
|
|
const sceneTimeRange = this.getTimeRange();
|
|
sceneTimeRange.setState({
|
|
raw: {
|
|
from: toUtc(timeRange.from),
|
|
to: toUtc(timeRange.to),
|
|
},
|
|
from: toUtc(timeRange.from),
|
|
to: toUtc(timeRange.to),
|
|
});
|
|
};
|
|
}
|
|
|
|
function ScenePanelRenderer({ model }: SceneComponentProps<VizPanel>) {
|
|
const { title, pluginId, options, fieldConfig } = model.useState();
|
|
const { data } = model.getData().useState();
|
|
|
|
return (
|
|
<AutoSizer>
|
|
{({ width, height }) => {
|
|
if (width < 3 || height < 3) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<PanelChrome title={title} width={width} height={height}>
|
|
{(innerWidth, innerHeight) => (
|
|
<>
|
|
<PanelRenderer
|
|
title="Raw data"
|
|
pluginId={pluginId}
|
|
width={innerWidth}
|
|
height={innerHeight}
|
|
data={data}
|
|
options={options}
|
|
fieldConfig={fieldConfig}
|
|
onOptionsChange={() => {}}
|
|
onChangeTimeRange={model.onSetTimeRange}
|
|
/>
|
|
</>
|
|
)}
|
|
</PanelChrome>
|
|
);
|
|
}}
|
|
</AutoSizer>
|
|
);
|
|
}
|
|
|
|
ScenePanelRenderer.displayName = 'ScenePanelRenderer';
|
|
|
|
function VizPanelEditor({ model }: SceneComponentProps<VizPanel>) {
|
|
const { title } = model.useState();
|
|
|
|
return (
|
|
<Field label="Title">
|
|
<Input defaultValue={title} onBlur={(evt) => model.setState({ title: evt.currentTarget.value })} />
|
|
</Field>
|
|
);
|
|
}
|