123456789101112131415161718192021222324252627282930313233343536 |
- import React from 'react';
- import { SelectableValue } from '@grafana/data';
- import { InlineField, InlineFieldRow, Select } from '@grafana/ui';
- import { EditorProps } from '../QueryEditor';
- export const CSVFileEditor = ({ onChange, query }: EditorProps) => {
- const onChangeFileName = ({ value }: SelectableValue<string>) => {
- onChange({ ...query, csvFileName: value });
- };
- const files = [
- 'flight_info_by_state.csv',
- 'population_by_state.csv',
- 'gdp_per_capita.csv',
- 'js_libraries.csv',
- 'ohlc_dogecoin.csv',
- 'weight_height.csv',
- 'browser_marketshare.csv',
- ].map((name) => ({ label: name, value: name }));
- return (
- <InlineFieldRow>
- <InlineField label="File" labelWidth={14}>
- <Select
- width={32}
- onChange={onChangeFileName}
- placeholder="Select csv file"
- options={files}
- value={files.find((f) => f.value === query.csvFileName)}
- />
- </InlineField>
- </InlineFieldRow>
- );
- };
|