fixes #3303 by stopping event propagation for left and right arrow keys in the search bar
This commit is contained in:
parent
2659ad17eb
commit
fb7fa5a19e
1 changed files with 14 additions and 0 deletions
|
@ -29,6 +29,8 @@ const PAGE_VIEW_QUERY = `view`;
|
||||||
const ABOUT_PAGE = `about`;
|
const ABOUT_PAGE = `about`;
|
||||||
const DISCUSSION_PAGE = `discussion`;
|
const DISCUSSION_PAGE = `discussion`;
|
||||||
const LIGHTHOUSE_URL = 'https://lighthouse.lbry.com/search';
|
const LIGHTHOUSE_URL = 'https://lighthouse.lbry.com/search';
|
||||||
|
const ARROW_LEFT_KEYCODE = 37;
|
||||||
|
const ARROW_RIGHT_KEYCODE = 39;
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
uri: string,
|
uri: string,
|
||||||
|
@ -146,6 +148,17 @@ function ChannelPage(props: Props) {
|
||||||
setSearchQuery(value);
|
setSearchQuery(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Since the search is inside of TabList, the left and right arrow keys change the tabIndex.
|
||||||
|
This results in the user not being able to navigate the search string by using arrow keys.
|
||||||
|
This function allows the event to change cursor position and then stops propagation to prevent tab changing.
|
||||||
|
*/
|
||||||
|
function handleSearchArrowKeys(e) {
|
||||||
|
if (e.keyCode === ARROW_LEFT_KEYCODE || e.keyCode === ARROW_RIGHT_KEYCODE) {
|
||||||
|
e.stopPropagation();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
let channelIsBlackListed = false;
|
let channelIsBlackListed = false;
|
||||||
|
|
||||||
if (claim && blackListedOutpoints) {
|
if (claim && blackListedOutpoints) {
|
||||||
|
@ -235,6 +248,7 @@ function ChannelPage(props: Props) {
|
||||||
className="wunderbar__input"
|
className="wunderbar__input"
|
||||||
value={searchQuery}
|
value={searchQuery}
|
||||||
onChange={handleInputChange}
|
onChange={handleInputChange}
|
||||||
|
onKeyDown={handleSearchArrowKeys}
|
||||||
type="text"
|
type="text"
|
||||||
placeholder={__('Search')}
|
placeholder={__('Search')}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Add table
Reference in a new issue