mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
22 lines
591 B
TypeScript
22 lines
591 B
TypeScript
import React, { FunctionComponent, useState } from 'react';
|
|
import { debounce } from 'lodash';
|
|
import { Input } from '@grafana/ui';
|
|
|
|
export interface Props {
|
|
onChange: (alias: any) => void;
|
|
value: string;
|
|
}
|
|
|
|
export const Alias: FunctionComponent<Props> = ({ value = '', onChange }) => {
|
|
const [alias, setAlias] = useState(value);
|
|
|
|
const propagateOnChange = debounce(onChange, 1500);
|
|
|
|
onChange = (e: any) => {
|
|
setAlias(e.target.value);
|
|
propagateOnChange(e.target.value);
|
|
};
|
|
|
|
return <Input type="text" value={alias} onChange={onChange} aria-label="Optional alias" />;
|
|
};
|