Submit
Path:
~
/
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
geo
/
editor
/
File Content:
locationEditor.ts
import { Field, FieldType, PanelOptionsEditorBuilder, DataFrame } from '@grafana/data'; import { FrameGeometrySource, FrameGeometrySourceMode } from '@grafana/schema'; import { GazetteerPathEditor } from 'app/features/geo/editor/GazetteerPathEditor'; import { LocationModeEditor } from './locationModeEditor'; export function addLocationFields<TOptions>( title: string, prefix: string, builder: PanelOptionsEditorBuilder<TOptions>, // ??? Perhaps pass in the filtered data? source?: FrameGeometrySource, data?: DataFrame[] ) { builder.addCustomEditor({ id: 'modeEditor', path: `${prefix}mode`, name: 'Location Mode', editor: LocationModeEditor, settings: { data, source }, }); // TODO apply data filter to field pickers switch (source?.mode) { case FrameGeometrySourceMode.Coords: builder .addFieldNamePicker({ path: `${prefix}latitude`, name: 'Latitude field', settings: { filter: (f: Field) => f.type === FieldType.number, noFieldsMessage: 'No numeric fields found', }, }) .addFieldNamePicker({ path: `${prefix}longitude`, name: 'Longitude field', settings: { filter: (f: Field) => f.type === FieldType.number, noFieldsMessage: 'No numeric fields found', }, }); break; case FrameGeometrySourceMode.Geohash: builder.addFieldNamePicker({ path: `${prefix}geohash`, name: 'Geohash field', settings: { filter: (f: Field) => f.type === FieldType.string, noFieldsMessage: 'No strings fields found', }, }); break; case FrameGeometrySourceMode.Lookup: builder .addFieldNamePicker({ path: `${prefix}lookup`, name: 'Lookup field', settings: { filter: (f: Field) => f.type === FieldType.string, noFieldsMessage: 'No strings fields found', }, }) .addCustomEditor({ id: 'gazetteer', path: `${prefix}gazetteer`, name: 'Gazetteer', editor: GazetteerPathEditor, }); } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
GazetteerPathEditor.tsx
2557 bytes
0644
locationEditor.ts
2196 bytes
0644
locationModeEditor.tsx
3542 bytes
0644
N4ST4R_ID | Naxtarrr