mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 20:52:10 +08:00

* more friday any/type assertion improvements * Apply suggestions from code review Co-authored-by: Marcus Andersson <marcus.andersson@grafana.com> * Update public/app/angular/promiseToDigest.test.ts Co-authored-by: Marcus Andersson <marcus.andersson@grafana.com> Co-authored-by: Marcus Andersson <marcus.andersson@grafana.com>
28 lines
844 B
TypeScript
28 lines
844 B
TypeScript
import React, { useCallback } from 'react';
|
|
|
|
import { SelectableValue, StandardEditorProps } from '@grafana/data';
|
|
import { DashboardPicker as BasePicker, DashboardPickerDTO } from 'app/core/components/Select/DashboardPicker';
|
|
|
|
export interface DashboardPickerOptions {
|
|
placeholder?: string;
|
|
isClearable?: boolean;
|
|
}
|
|
|
|
type Props = StandardEditorProps<string, DashboardPickerOptions>;
|
|
|
|
/** This will return the item UID */
|
|
export const DashboardPicker = ({ value, onChange, item }: Props) => {
|
|
const { placeholder, isClearable } = item?.settings ?? {};
|
|
|
|
const onPicked = useCallback(
|
|
(sel?: SelectableValue<DashboardPickerDTO>) => {
|
|
onChange(sel?.value?.uid);
|
|
},
|
|
[onChange]
|
|
);
|
|
|
|
return (
|
|
<BasePicker isClearable={isClearable} defaultOptions onChange={onPicked} placeholder={placeholder} value={value} />
|
|
);
|
|
};
|