Commit 26f15233 by Torkel Ödegaard Committed by GitHub

Graph: Improves graph edit options in side pane (#24352)

* Graph: Improves graph edit options in side pane

* Fixed spell issue and order

* Fixed ts issue
parent 58000099
......@@ -7,5 +7,5 @@ export const UnitValueEditor: React.FC<FieldConfigEditorProps<string, UnitFieldC
value,
onChange,
}) => {
return <UnitPicker value={value} onChange={onChange} useNewForms />;
return <UnitPicker value={value} onChange={onChange} />;
};
......@@ -13,5 +13,4 @@ export default {
},
};
export const simple = () => <UnitPicker useNewForms onChange={val => console.log(val)} />;
export const old = () => <UnitPicker onChange={val => console.log(val)} />;
export const simple = () => <UnitPicker onChange={val => console.log(val)} />;
import React, { PureComponent } from 'react';
import { Select } from '../Forms/Legacy/Select/Select';
import { Cascader, CascaderOption } from '../Cascader/Cascader';
import { getValueFormats, SelectableValue } from '@grafana/data';
......@@ -8,8 +6,6 @@ interface Props {
onChange: (item?: string) => void;
value?: string;
width?: number;
/** Temporary flag that uses the new form styles. */
useNewForms?: boolean;
}
function formatCreateLabel(input: string) {
......@@ -17,16 +13,12 @@ function formatCreateLabel(input: string) {
}
export class UnitPicker extends PureComponent<Props> {
static defaultProps = {
width: 12,
};
onChange = (value: SelectableValue<string>) => {
this.props.onChange(value.value);
};
render() {
const { value, width, useNewForms } = this.props;
const { value, width } = this.props;
// Set the current selection
let current: SelectableValue<string> | undefined = undefined;
......@@ -46,16 +38,11 @@ export class UnitPicker extends PureComponent<Props> {
}
return sel;
});
if (useNewForms) {
return {
label: group.text,
value: group.text,
items: options,
};
}
return {
label: group.text,
options,
value: group.text,
items: options,
};
});
......@@ -64,8 +51,9 @@ export class UnitPicker extends PureComponent<Props> {
current = { value, label: value };
}
return useNewForms ? (
return (
<Cascader
width={width}
initialValue={current && current.label}
allowCustomValue
formatCreateLabel={formatCreateLabel}
......@@ -73,17 +61,6 @@ export class UnitPicker extends PureComponent<Props> {
placeholder="Choose"
onSelect={this.props.onChange}
/>
) : (
<Select
width={width}
defaultValue={current}
isSearchable={true}
allowCustomValue={true}
formatCreateLabel={formatCreateLabel}
options={groupOptions}
placeholder="Choose"
onChange={this.onChange}
/>
);
}
}
......@@ -159,7 +159,7 @@ $scrollbarBorder: black;
// Tables
// -------------------------
$table-bg-accent: $dark-6; // for striping
$table-bg-accent: ${styleMixins.hoverColor(theme.colors.bg1, theme)}; // for striping
$table-border: $dark-6; // table and cell border
$table-bg-odd: $dark-3;
......
......@@ -152,7 +152,7 @@ $scrollbarBorder: $gray-7;
// Tables
// -------------------------
$table-bg-accent: $gray-5; // for striping
$table-bg-accent: ${styleMixins.hoverColor(theme.colors.bg1, theme)};
$table-border: $gray-3; // table and cell border
$table-bg-odd: $gray-6;
......
......@@ -167,7 +167,7 @@ class GraphCtrl extends MetricsPanelCtrl {
onInitEditMode() {
this.addEditorTab('Display', 'public/app/plugins/panel/graph/tab_display.html');
this.addEditorTab('Series overides', 'public/app/plugins/panel/graph/tab_series_overrides.html');
this.addEditorTab('Series overrides', 'public/app/plugins/panel/graph/tab_series_overrides.html');
this.addEditorTab('Axes', axesEditorComponent);
this.addEditorTab('Legend', 'public/app/plugins/panel/graph/tab_legend.html');
this.addEditorTab('Thresholds', 'public/app/plugins/panel/graph/tab_thresholds.html');
......
......@@ -117,7 +117,7 @@
<gf-form-switch
class="gf-form"
label="With only nulls"
label-class="width-10"
label-class="width-7"
checked="ctrl.panel.legend.hideEmpty"
on-change="ctrl.render()"
>
......@@ -125,7 +125,7 @@
<gf-form-switch
class="gf-form"
label="With only zeros"
label-class="width-10"
label-class="width-7"
checked="ctrl.panel.legend.hideZero"
on-change="ctrl.render()"
>
......
......@@ -161,7 +161,7 @@ $scrollbarBorder: black;
// Tables
// -------------------------
$table-bg-accent: $dark-6; // for striping
$table-bg-accent: #191b1e; // for striping
$table-border: $dark-6; // table and cell border
$table-bg-odd: $dark-3;
......
......@@ -154,7 +154,7 @@ $scrollbarBorder: $gray-7;
// Tables
// -------------------------
$table-bg-accent: $gray-5; // for striping
$table-bg-accent: #fafafa;
$table-border: $gray-3; // table and cell border
$table-bg-odd: $gray-6;
......
......@@ -171,7 +171,7 @@
overflow: hidden;
}
.graph-legend-series:nth-child(odd) {
.graph-legend-series:nth-child(even) {
background: $table-bg-accent;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment