Room List v2 Enter in the filter field should select the first result
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
31f1fbd962
commit
d253c58830
2 changed files with 12 additions and 0 deletions
|
@ -274,6 +274,14 @@ export default class LeftPanel2 extends React.Component<IProps, IState> {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
private onEnter = () => {
|
||||||
|
const firstRoom = this.listContainerRef.current.querySelector<HTMLDivElement>(".mx_RoomTile2");
|
||||||
|
if (firstRoom) {
|
||||||
|
firstRoom.click();
|
||||||
|
this.onSearch(""); // clear the search field
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
private onMoveFocus = (up: boolean) => {
|
private onMoveFocus = (up: boolean) => {
|
||||||
let element = this.focusedElement;
|
let element = this.focusedElement;
|
||||||
|
|
||||||
|
@ -346,6 +354,7 @@ export default class LeftPanel2 extends React.Component<IProps, IState> {
|
||||||
onQueryUpdate={this.onSearch}
|
onQueryUpdate={this.onSearch}
|
||||||
isMinimized={this.props.isMinimized}
|
isMinimized={this.props.isMinimized}
|
||||||
onVerticalArrow={this.onKeyDown}
|
onVerticalArrow={this.onKeyDown}
|
||||||
|
onEnter={this.onEnter}
|
||||||
/>
|
/>
|
||||||
<AccessibleButton
|
<AccessibleButton
|
||||||
className="mx_LeftPanel2_exploreButton"
|
className="mx_LeftPanel2_exploreButton"
|
||||||
|
|
|
@ -39,6 +39,7 @@ interface IProps {
|
||||||
onQueryUpdate: (newQuery: string) => void;
|
onQueryUpdate: (newQuery: string) => void;
|
||||||
isMinimized: boolean;
|
isMinimized: boolean;
|
||||||
onVerticalArrow(ev: React.KeyboardEvent);
|
onVerticalArrow(ev: React.KeyboardEvent);
|
||||||
|
onEnter(ev: React.KeyboardEvent);
|
||||||
}
|
}
|
||||||
|
|
||||||
interface IState {
|
interface IState {
|
||||||
|
@ -115,6 +116,8 @@ export default class RoomSearch extends React.PureComponent<IProps, IState> {
|
||||||
defaultDispatcher.fire(Action.FocusComposer);
|
defaultDispatcher.fire(Action.FocusComposer);
|
||||||
} else if (ev.key === Key.ARROW_UP || ev.key === Key.ARROW_DOWN) {
|
} else if (ev.key === Key.ARROW_UP || ev.key === Key.ARROW_DOWN) {
|
||||||
this.props.onVerticalArrow(ev);
|
this.props.onVerticalArrow(ev);
|
||||||
|
} else if (ev.key === Key.ENTER) {
|
||||||
|
this.props.onEnter(ev);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue