mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Rewrite angular segments for filter and group by in react * wip: refactoring * Update metric find queries * Remove old maps used to create labels - use one map for all types instead * Use value as label (again) for filters ang groupby * Remove old filter * Remove not used code * Fixes after pr feedback * Fix broken tests and add new metadata tests * Add index file to make imports cleaner * Cleanup. Remove old angular filter code * Fix broken tests * Use type switching instead of if statements * Use globals for regex * Updates after pr feedback * Make sure it's possible to filter using the same key multiple times * Replace metric select with segment component * Pass template vars as props * Refactor meta labels code * Reorder template variables * Fix broken tests * Reset metric value when changing service * Fix lint issue. * Make tests independant of element order * Include kubernetes.io in regex * Add instruction in help section
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
import React, { FC } from 'react';
|
|
|
|
import { SelectableValue } from '@grafana/data';
|
|
import { Segment } from '@grafana/ui';
|
|
|
|
export interface Props {
|
|
onChange: (perSeriesAligner: any) => void;
|
|
templateVariableOptions: Array<SelectableValue<string>>;
|
|
alignOptions: Array<SelectableValue<string>>;
|
|
perSeriesAligner: string;
|
|
}
|
|
|
|
export const Alignments: FC<Props> = ({ perSeriesAligner, templateVariableOptions, onChange, alignOptions }) => {
|
|
return (
|
|
<>
|
|
<div className="gf-form-inline">
|
|
<div className="gf-form offset-width-9">
|
|
<label className="gf-form-label query-keyword width-15">Aligner</label>
|
|
<Segment
|
|
onChange={({ value }) => onChange(value)}
|
|
value={[...alignOptions, ...templateVariableOptions].find(s => s.value === perSeriesAligner)}
|
|
options={[
|
|
{
|
|
label: 'Template Variables',
|
|
options: templateVariableOptions,
|
|
},
|
|
{
|
|
label: 'Alignment options',
|
|
expanded: true,
|
|
options: alignOptions,
|
|
},
|
|
]}
|
|
placeholder="Select Alignment"
|
|
></Segment>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|