mirror of https://github.com/zulip/zulip.git
159 lines
4.7 KiB
JavaScript
159 lines
4.7 KiB
JavaScript
exports.mobile_deactivate_section = function () {
|
|
const $settings_overlay_container = $("#settings_overlay_container");
|
|
$settings_overlay_container.find(".right").removeClass("show");
|
|
$settings_overlay_container.find(".settings-header.mobile").removeClass("slide-left");
|
|
};
|
|
|
|
exports.make_menu = function (opts) {
|
|
const main_elem = opts.main_elem;
|
|
const hash_prefix = opts.hash_prefix;
|
|
let curr_li = main_elem.children("li").eq(0);
|
|
|
|
const self = {};
|
|
|
|
function two_column_mode() {
|
|
return $("#settings_overlay_container").css("--single-column") === undefined;
|
|
}
|
|
|
|
self.show = function () {
|
|
main_elem.show();
|
|
const section = self.current_tab();
|
|
if (two_column_mode()) {
|
|
// In one colum mode want to show the settings list, not the first settings section.
|
|
self.activate_section_or_default(section);
|
|
}
|
|
curr_li.trigger("focus");
|
|
};
|
|
|
|
self.hide = function () {
|
|
main_elem.hide();
|
|
};
|
|
|
|
self.current_tab = function () {
|
|
return curr_li.data("section");
|
|
};
|
|
|
|
self.li_for_section = function (section) {
|
|
const li = $("#settings_overlay_container li[data-section='" + section + "']");
|
|
return li;
|
|
};
|
|
|
|
self.set_key_handlers = function (toggler) {
|
|
keydown_util.handle({
|
|
elem: main_elem,
|
|
handlers: {
|
|
left_arrow: toggler.maybe_go_left,
|
|
right_arrow: toggler.maybe_go_right,
|
|
enter_key: self.enter_panel,
|
|
up_arrow: self.prev,
|
|
down_arrow: self.next,
|
|
},
|
|
});
|
|
};
|
|
|
|
self.prev = function () {
|
|
curr_li.prevAll(":visible:first").trigger("focus").trigger("click");
|
|
return true;
|
|
};
|
|
|
|
self.next = function () {
|
|
curr_li.nextAll(":visible:first").trigger("focus").trigger("click");
|
|
return true;
|
|
};
|
|
|
|
self.enter_panel = function () {
|
|
const panel = self.get_panel();
|
|
const sel = "input:visible,button:visible,select:visible";
|
|
const panel_elem = panel.find(sel).first();
|
|
|
|
panel_elem.trigger("focus");
|
|
return true;
|
|
};
|
|
|
|
self.activate_section_or_default = function (section) {
|
|
if (!section) {
|
|
// No section is given so we display the default.
|
|
|
|
if (two_column_mode()) {
|
|
// In two column mode we resume to the last active section.
|
|
section = self.current_tab();
|
|
} else {
|
|
// In single column mode we close the active section
|
|
// so that you always start at the settings list.
|
|
exports.mobile_deactivate_section();
|
|
return;
|
|
}
|
|
}
|
|
|
|
curr_li = self.li_for_section(section);
|
|
|
|
main_elem.children("li").removeClass("active");
|
|
curr_li.addClass("active");
|
|
|
|
const settings_section_hash = "#" + hash_prefix + section;
|
|
hashchange.update_browser_history(settings_section_hash);
|
|
|
|
$(".settings-section").removeClass("show");
|
|
|
|
settings_sections.load_settings_section(section);
|
|
|
|
self.get_panel().addClass("show");
|
|
|
|
ui.reset_scrollbar($("#settings_content"));
|
|
|
|
const $settings_overlay_container = $("#settings_overlay_container");
|
|
$settings_overlay_container.find(".right").addClass("show");
|
|
$settings_overlay_container.find(".settings-header.mobile").addClass("slide-left");
|
|
|
|
settings.set_settings_header(section);
|
|
};
|
|
|
|
self.get_panel = function () {
|
|
const section = curr_li.data("section");
|
|
const sel = "[data-name='" + section + "']";
|
|
const panel = $(".settings-section" + sel);
|
|
return panel;
|
|
};
|
|
|
|
main_elem.on("click", "li[data-section]", function (e) {
|
|
const section = $(this).attr("data-section");
|
|
|
|
self.activate_section_or_default(section);
|
|
|
|
// You generally want to add logic to activate_section,
|
|
// not to this click handler.
|
|
|
|
e.stopPropagation();
|
|
});
|
|
|
|
return self;
|
|
};
|
|
|
|
exports.initialize = function () {
|
|
exports.normal_settings = exports.make_menu({
|
|
main_elem: $(".normal-settings-list"),
|
|
hash_prefix: "settings/",
|
|
});
|
|
exports.org_settings = exports.make_menu({
|
|
main_elem: $(".org-settings-list"),
|
|
hash_prefix: "organization/",
|
|
});
|
|
};
|
|
|
|
exports.show_normal_settings = function () {
|
|
exports.org_settings.hide();
|
|
exports.normal_settings.show();
|
|
};
|
|
|
|
exports.show_org_settings = function () {
|
|
exports.normal_settings.hide();
|
|
exports.org_settings.show();
|
|
};
|
|
|
|
exports.set_key_handlers = function (toggler) {
|
|
exports.normal_settings.set_key_handlers(toggler);
|
|
exports.org_settings.set_key_handlers(toggler);
|
|
};
|
|
|
|
window.settings_panel_menu = exports;
|