2021-03-11 05:43:45 +01:00
|
|
|
import $ from "jquery";
|
|
|
|
|
2021-06-14 12:38:43 +02:00
|
|
|
import render_gear_menu from "../templates/gear_menu.hbs";
|
|
|
|
|
2023-10-13 11:50:18 +02:00
|
|
|
import * as popover_menus_data from "./popover_menus_data";
|
2021-02-28 00:42:00 +01:00
|
|
|
|
2018-08-29 19:50:12 +02:00
|
|
|
/*
|
|
|
|
For various historical reasons there isn't one
|
|
|
|
single chunk of code that really makes our gear
|
|
|
|
menu function. In this comment I try to help
|
|
|
|
you know where to look for relevant code.
|
|
|
|
|
|
|
|
The module that you're reading now doesn't
|
2020-12-20 13:03:32 +01:00
|
|
|
actually do much of the work.
|
2018-08-29 19:50:12 +02:00
|
|
|
|
|
|
|
Our gear menu has these choices:
|
|
|
|
|
|
|
|
=================
|
|
|
|
hash: Manage streams
|
|
|
|
hash: Settings
|
|
|
|
hash: Organization settings
|
2021-05-12 16:56:51 +02:00
|
|
|
link: Usage statistics
|
2018-08-29 19:50:12 +02:00
|
|
|
---
|
|
|
|
link: Help center
|
|
|
|
info: Keyboard shortcuts
|
|
|
|
info: Message formatting
|
2022-12-09 04:13:09 +01:00
|
|
|
info: Search filters
|
2021-02-09 11:16:52 +01:00
|
|
|
hash: About Zulip
|
2018-08-29 19:50:12 +02:00
|
|
|
---
|
|
|
|
link: Desktop & mobile apps
|
|
|
|
link: Integrations
|
|
|
|
link: API documentation
|
2021-05-12 16:56:51 +02:00
|
|
|
link: Sponsor Zulip
|
|
|
|
link: Plans and pricing
|
2018-08-29 19:50:12 +02:00
|
|
|
---
|
|
|
|
hash: Invite users
|
|
|
|
---
|
|
|
|
misc: Logout
|
|
|
|
=================
|
|
|
|
|
|
|
|
Depending on settings, there may also be choices
|
|
|
|
like "Feedback" or "Debug".
|
|
|
|
|
|
|
|
The menu items get built in a server-side template called
|
|
|
|
templates/zerver/app/navbar.html. Each item is
|
|
|
|
an HTML anchor tag with a "role" of "menuitem".
|
|
|
|
|
|
|
|
The menu itself has the selector
|
|
|
|
"settings-dropdown".
|
|
|
|
|
|
|
|
The items with the prefix of "hash:" are in-page
|
|
|
|
links:
|
|
|
|
|
|
|
|
#streams
|
|
|
|
#settings
|
|
|
|
#organization
|
2021-02-09 11:16:52 +01:00
|
|
|
#about-zulip
|
2018-08-29 19:50:12 +02:00
|
|
|
#invite
|
|
|
|
|
|
|
|
When you click on the links there is a function
|
2023-02-22 23:03:47 +01:00
|
|
|
called hashchanged() in web/src/hashchange.js
|
2021-05-20 01:50:32 +02:00
|
|
|
that gets invoked. (We register this as a listener
|
|
|
|
for the hashchange event.) This function then
|
2018-08-29 19:50:12 +02:00
|
|
|
launches the appropriate modal for each menu item.
|
|
|
|
Look for things like subs.launch(...) or
|
|
|
|
invite.launch() in that code.
|
|
|
|
|
|
|
|
Some items above are prefixed with "link:". Those
|
|
|
|
items, when clicked, just use the normal browser
|
|
|
|
mechanism to link to external pages, and they
|
|
|
|
have a target of "_blank".
|
|
|
|
|
|
|
|
The "info:" items use our info overlay system
|
2023-02-22 23:03:47 +01:00
|
|
|
in web/src/info_overlay.js. They are dispatched
|
|
|
|
using a click handler in web/src/click_handlers.js.
|
2018-08-29 19:50:12 +02:00
|
|
|
The click handler uses "[data-overlay-trigger]" as
|
2021-03-22 16:09:12 +01:00
|
|
|
the selector and then calls browser_history.go_to_location.
|
2018-08-29 19:50:12 +02:00
|
|
|
*/
|
|
|
|
|
2023-10-13 11:49:21 +02:00
|
|
|
export function initialize() {
|
2023-10-13 11:50:18 +02:00
|
|
|
const rendered_gear_menu = render_gear_menu(popover_menus_data.get_gear_menu_content_context());
|
2021-06-14 12:38:43 +02:00
|
|
|
$("#navbar-buttons").html(rendered_gear_menu);
|
2021-02-28 01:02:12 +01:00
|
|
|
}
|
2014-03-13 21:55:47 +01:00
|
|
|
|
2023-10-13 11:49:21 +02:00
|
|
|
export function open() {
|
2020-07-20 21:24:26 +02:00
|
|
|
$("#settings-dropdown").trigger("click");
|
2017-05-22 04:29:24 +02:00
|
|
|
// there are invisible li tabs, which should not be clicked.
|
2020-07-20 21:24:26 +02:00
|
|
|
$("#gear-menu").find("li:not(.invisible) a").eq(0).trigger("focus");
|
2021-02-28 01:02:12 +01:00
|
|
|
}
|
2017-03-18 20:30:20 +01:00
|
|
|
|
2023-10-13 11:49:21 +02:00
|
|
|
export function is_open() {
|
2017-05-22 04:28:52 +02:00
|
|
|
return $(".dropdown").hasClass("open");
|
2021-02-28 01:02:12 +01:00
|
|
|
}
|
2017-05-22 04:28:52 +02:00
|
|
|
|
2023-10-13 11:49:21 +02:00
|
|
|
export function close() {
|
2021-02-28 01:02:12 +01:00
|
|
|
if (is_open()) {
|
2017-05-22 04:28:52 +02:00
|
|
|
$(".dropdown").removeClass("open");
|
|
|
|
}
|
2021-02-28 01:02:12 +01:00
|
|
|
}
|