mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
25 lines
662 B
TypeScript
25 lines
662 B
TypeScript
import { DataFrame, getFieldDisplayName } from '@grafana/data';
|
|
import { useMemo } from 'react';
|
|
|
|
export function useAllFieldNamesFromDataFrames(input: DataFrame[]): string[] {
|
|
return useMemo(() => {
|
|
if (!Array.isArray(input)) {
|
|
return [];
|
|
}
|
|
|
|
return Object.keys(
|
|
input.reduce((names, frame) => {
|
|
if (!frame || !Array.isArray(frame.fields)) {
|
|
return names;
|
|
}
|
|
|
|
return frame.fields.reduce((names, field) => {
|
|
const t = getFieldDisplayName(field, frame, input);
|
|
names[t] = true;
|
|
return names;
|
|
}, names);
|
|
}, {} as Record<string, boolean>)
|
|
);
|
|
}, [input]);
|
|
}
|