mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
66 lines
1.5 KiB
TypeScript
66 lines
1.5 KiB
TypeScript
import React from 'react';
|
|
import { Props } from './DataSourcePicker';
|
|
|
|
interface State {
|
|
selected: number;
|
|
}
|
|
|
|
const withKeyboardNavigation = WrappedComponent => {
|
|
return class extends React.Component<Props, State> {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
selected: 0,
|
|
};
|
|
}
|
|
|
|
goToNext = (maxSelectedIndex: number) => {
|
|
const nextIndex = this.state.selected >= maxSelectedIndex ? 0 : this.state.selected + 1;
|
|
this.setState({
|
|
selected: nextIndex,
|
|
});
|
|
};
|
|
|
|
goToPrev = (maxSelectedIndex: number) => {
|
|
const nextIndex = this.state.selected <= 0 ? maxSelectedIndex : this.state.selected - 1;
|
|
this.setState({
|
|
selected: nextIndex,
|
|
});
|
|
};
|
|
|
|
onKeyDown = (evt: KeyboardEvent, maxSelectedIndex: number, onEnterAction: any) => {
|
|
if (evt.key === 'ArrowDown') {
|
|
evt.preventDefault();
|
|
this.goToNext(maxSelectedIndex);
|
|
}
|
|
if (evt.key === 'ArrowUp') {
|
|
evt.preventDefault();
|
|
this.goToPrev(maxSelectedIndex);
|
|
}
|
|
if (evt.key === 'Enter' && onEnterAction) {
|
|
onEnterAction();
|
|
}
|
|
};
|
|
|
|
onMouseEnter = (mouseEnterIndex: number) => {
|
|
this.setState({
|
|
selected: mouseEnterIndex,
|
|
});
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<WrappedComponent
|
|
selected={this.state.selected}
|
|
onKeyDown={this.onKeyDown}
|
|
onMouseEnter={this.onMouseEnter}
|
|
{...this.props}
|
|
/>
|
|
);
|
|
}
|
|
};
|
|
};
|
|
|
|
export default withKeyboardNavigation;
|