mirror of https://github.com/zulip/zulip.git
25 lines
716 B
TypeScript
25 lines
716 B
TypeScript
import $ from "jquery";
|
|
|
|
const list_selectors = [
|
|
"#stream_filters",
|
|
"#global_filters",
|
|
"#user_presences",
|
|
"#send_later_options",
|
|
];
|
|
|
|
export function inside_list(e: JQuery.KeyDownEvent | JQuery.KeyPressEvent): boolean {
|
|
const $target = $(e.target);
|
|
const in_list = $target.closest(list_selectors.join(", ")).length > 0;
|
|
return in_list;
|
|
}
|
|
|
|
export function go_down(e: JQuery.KeyDownEvent | JQuery.KeyPressEvent): void {
|
|
const $target = $(e.target);
|
|
$target.closest("li").next().find("a").trigger("focus");
|
|
}
|
|
|
|
export function go_up(e: JQuery.KeyDownEvent | JQuery.KeyPressEvent): void {
|
|
const $target = $(e.target);
|
|
$target.closest("li").prev().find("a").trigger("focus");
|
|
}
|