mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Initial pass to move panel state to it's own, and make it by key not panel.id * Progress * Not making much progress, having panel.key be mutable is causing a lot of issues * Think this is starting to work * Began fixing tests * Add selector * Bug fixes and changes to cleanup, and fixing all flicking when switching library panels * Removed console.log * fixes after merge * fixing tests * fixing tests * Added new test for changePlugin thunk * Initial struture in place * responding to state changes in another part of the state * bha * going in a different direction * This is getting exciting * minor * More structure * More real * Added builder to reduce boiler plate * Lots of progress * Adding more visualizations * More smarts * tweaks * suggestions * Move to separate view * Refactoring to builder concept * Before hover preview test * Increase line width in preview * More suggestions * Removed old elements of onSuggestVisualizations * Don't call suggestion suppliers if there is no data * Restore card styles to only borders * Changing supplier interface to support data vs option suggestion scenario * Renamed functions * Add dynamic width support * not sure about this * Improve suggestions * Improve suggestions * Single grid/list * Store vis select pane & size * Prep for option suggestions * more suggestions * Name/title option for preview cards * Improve barchart suggestions * Support suggestions when there are no data * Minor change * reverted some changes * Improve suggestions for stacking * Removed size option * starting on unit tests, hit cyclic dependency issue * muuu * First test for getting suggestion seems to work, going to bed * add missing file * A basis for more unit tests * More tests * More unit tests * Fixed unit tests * Update * Some extreme scenarios * Added basic e2e test * Added another unit test for changePanelPlugin action * More cleanup * Minor tweak * add wait to e2e test * Renamed function and cleanup of unused function * Adding search support and adding search test to e2e test
75 lines
2.5 KiB
TypeScript
75 lines
2.5 KiB
TypeScript
import { FieldColorModeId, FieldConfigProperty, PanelPlugin } from '@grafana/data';
|
|
import { PieChartPanel } from './PieChartPanel';
|
|
import { PieChartOptions, PieChartType, PieChartLabels, PieChartLegendValues } from './types';
|
|
import { LegendDisplayMode } from '@grafana/schema';
|
|
import { commonOptionsBuilder } from '@grafana/ui';
|
|
import { PieChartPanelChangedHandler } from './migrations';
|
|
import { addStandardDataReduceOptions } from '../stat/types';
|
|
import { PieChartSuggestionsSupplier } from './suggestions';
|
|
|
|
export const plugin = new PanelPlugin<PieChartOptions>(PieChartPanel)
|
|
.setPanelChangeHandler(PieChartPanelChangedHandler)
|
|
.useFieldConfig({
|
|
disableStandardOptions: [FieldConfigProperty.Thresholds],
|
|
standardOptions: {
|
|
[FieldConfigProperty.Color]: {
|
|
settings: {
|
|
byValueSupport: false,
|
|
bySeriesSupport: true,
|
|
preferThresholdsMode: false,
|
|
},
|
|
defaultValue: {
|
|
mode: FieldColorModeId.PaletteClassic,
|
|
},
|
|
},
|
|
},
|
|
useCustomConfig: (builder) => {
|
|
commonOptionsBuilder.addHideFrom(builder);
|
|
},
|
|
})
|
|
.setPanelOptions((builder) => {
|
|
addStandardDataReduceOptions(builder);
|
|
builder
|
|
.addRadio({
|
|
name: 'Piechart type',
|
|
description: 'How the piechart should be rendered',
|
|
path: 'pieType',
|
|
settings: {
|
|
options: [
|
|
{ value: PieChartType.Pie, label: 'Pie' },
|
|
{ value: PieChartType.Donut, label: 'Donut' },
|
|
],
|
|
},
|
|
defaultValue: PieChartType.Pie,
|
|
})
|
|
.addMultiSelect({
|
|
name: 'Labels',
|
|
path: 'displayLabels',
|
|
description: 'Select the labels to be displayed in the pie chart',
|
|
settings: {
|
|
options: [
|
|
{ value: PieChartLabels.Percent, label: 'Percent' },
|
|
{ value: PieChartLabels.Name, label: 'Name' },
|
|
{ value: PieChartLabels.Value, label: 'Value' },
|
|
],
|
|
},
|
|
});
|
|
|
|
commonOptionsBuilder.addTooltipOptions(builder);
|
|
commonOptionsBuilder.addLegendOptions(builder, false);
|
|
|
|
builder.addMultiSelect({
|
|
name: 'Legend values',
|
|
path: 'legend.values',
|
|
category: ['Legend'],
|
|
settings: {
|
|
options: [
|
|
{ value: PieChartLegendValues.Percent, label: 'Percent' },
|
|
{ value: PieChartLegendValues.Value, label: 'Value' },
|
|
],
|
|
},
|
|
showIf: (c) => c.legend.displayMode !== LegendDisplayMode.Hidden,
|
|
});
|
|
})
|
|
.setSuggestionsSupplier(new PieChartSuggestionsSupplier());
|