2021-03-11 05:43:45 +01:00
|
|
|
import $ from "jquery";
|
|
|
|
|
2021-02-28 01:23:16 +01:00
|
|
|
import timezones from "../generated/timezones.json";
|
|
|
|
import render_settings_tab from "../templates/settings_tab.hbs";
|
2020-08-01 03:43:15 +02:00
|
|
|
|
2021-02-28 01:23:35 +01:00
|
|
|
import * as admin from "./admin";
|
2021-03-16 23:38:59 +01:00
|
|
|
import * as blueslip from "./blueslip";
|
2021-02-28 01:23:16 +01:00
|
|
|
import * as overlays from "./overlays";
|
|
|
|
import * as people from "./people";
|
|
|
|
import * as settings_account from "./settings_account";
|
|
|
|
import * as settings_bots from "./settings_bots";
|
|
|
|
import * as settings_config from "./settings_config";
|
|
|
|
import * as settings_notifications from "./settings_notifications";
|
|
|
|
import * as settings_panel_menu from "./settings_panel_menu";
|
|
|
|
import * as settings_sections from "./settings_sections";
|
|
|
|
import * as settings_toggle from "./settings_toggle";
|
2019-07-09 21:24:00 +02:00
|
|
|
|
2021-02-28 01:23:16 +01:00
|
|
|
export let settings_label;
|
2020-07-24 06:02:07 +02:00
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$("body").ready(() => {
|
2020-07-20 21:26:58 +02:00
|
|
|
$("#settings_overlay_container").on("click", (e) => {
|
2017-08-29 19:06:31 +02:00
|
|
|
if (!overlays.is_modal_open()) {
|
|
|
|
return;
|
|
|
|
}
|
2017-09-16 12:44:42 +02:00
|
|
|
if ($(e.target).closest(".modal").length > 0) {
|
|
|
|
return;
|
|
|
|
}
|
2017-08-29 19:06:31 +02:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
2018-05-23 22:29:00 +02:00
|
|
|
// Whenever opening a modal(over settings overlay) in an event handler
|
|
|
|
// attached to a click event, make sure to stop the propagation of the
|
|
|
|
// event to the parent container otherwise the modal will not open. This
|
|
|
|
// is so because this event handler will get fired on any click in settings
|
|
|
|
// overlay and subsequently close any open modal.
|
2017-08-29 19:06:31 +02:00
|
|
|
overlays.close_active_modal();
|
|
|
|
});
|
2017-03-01 01:31:33 +01:00
|
|
|
});
|
|
|
|
|
2018-03-24 13:44:16 +01:00
|
|
|
function setup_settings_label() {
|
2021-02-28 01:23:16 +01:00
|
|
|
settings_label = {
|
2018-03-24 13:44:16 +01:00
|
|
|
// settings_notification
|
2020-07-15 00:34:28 +02:00
|
|
|
enable_online_push_notifications: i18n.t(
|
|
|
|
"Send mobile notifications even if I'm online (useful for testing)",
|
|
|
|
),
|
|
|
|
pm_content_in_desktop_notifications: i18n.t(
|
|
|
|
"Include content of private messages in desktop notifications",
|
|
|
|
),
|
|
|
|
desktop_icon_count_display: i18n.t(
|
|
|
|
"Unread count summary (appears in desktop sidebar and browser tab)",
|
|
|
|
),
|
2018-03-24 13:44:16 +01:00
|
|
|
enable_digest_emails: i18n.t("Send digest emails when I'm away"),
|
2018-08-24 07:28:51 +02:00
|
|
|
enable_login_emails: i18n.t("Send email notifications for new logins to my account"),
|
2020-07-15 00:34:28 +02:00
|
|
|
message_content_in_email_notifications: i18n.t(
|
|
|
|
"Include message content in missed message emails",
|
|
|
|
),
|
|
|
|
realm_name_in_notifications: i18n.t(
|
|
|
|
"Include organization name in subject of missed message emails",
|
|
|
|
),
|
2020-05-01 20:39:26 +02:00
|
|
|
presence_enabled: i18n.t("Display my availability to other users when online"),
|
2018-04-17 21:52:25 +02:00
|
|
|
|
|
|
|
// display settings
|
2018-05-24 20:53:26 +02:00
|
|
|
dense_mode: i18n.t("Dense mode"),
|
2019-06-13 15:21:20 +02:00
|
|
|
fluid_layout_width: i18n.t("Use full width on wide screens"),
|
2018-04-17 21:52:25 +02:00
|
|
|
high_contrast_mode: i18n.t("High contrast mode"),
|
2020-03-20 22:11:17 +01:00
|
|
|
left_side_userlist: i18n.t("Show user list on left sidebar in narrow windows"),
|
2018-08-17 08:48:12 +02:00
|
|
|
starred_message_counts: i18n.t("Show counts for starred messages"),
|
2019-07-28 11:47:45 +02:00
|
|
|
twenty_four_hour_time: i18n.t("Time format"),
|
2020-07-15 00:34:28 +02:00
|
|
|
translate_emoticons: i18n.t(
|
|
|
|
"Convert emoticons before sending (<code>:)</code> becomes 😃)",
|
|
|
|
),
|
2018-03-24 13:44:16 +01:00
|
|
|
};
|
|
|
|
}
|
2017-03-01 01:31:33 +01:00
|
|
|
|
2021-02-28 01:23:16 +01:00
|
|
|
export function build_page() {
|
2018-03-24 13:44:16 +01:00
|
|
|
setup_settings_label();
|
2018-01-29 16:10:54 +01:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const rendered_settings_tab = render_settings_tab({
|
2017-01-20 23:49:20 +01:00
|
|
|
full_name: people.my_full_name(),
|
2020-07-20 22:18:43 +02:00
|
|
|
page_params,
|
2020-07-15 00:34:28 +02:00
|
|
|
enable_sound_select:
|
|
|
|
page_params.enable_sounds || page_params.enable_stream_audible_notifications,
|
2020-07-15 01:29:15 +02:00
|
|
|
zuliprc: "zuliprc",
|
|
|
|
botserverrc: "botserverrc",
|
2020-09-29 22:20:46 +02:00
|
|
|
timezones: timezones.timezones,
|
2018-06-13 16:59:15 +02:00
|
|
|
can_create_new_bots: settings_bots.can_create_new_bots(),
|
2021-02-28 01:23:16 +01:00
|
|
|
settings_label,
|
2020-02-21 14:26:11 +01:00
|
|
|
demote_inactive_streams_values: settings_config.demote_inactive_streams_values,
|
2020-05-16 13:13:59 +02:00
|
|
|
color_scheme_values: settings_config.color_scheme_values,
|
2021-03-10 13:56:10 +01:00
|
|
|
default_view_values: settings_config.default_view_values,
|
2020-02-21 14:26:11 +01:00
|
|
|
twenty_four_hour_time_values: settings_config.twenty_four_hour_time_values,
|
2020-03-28 18:03:43 +01:00
|
|
|
general_settings: settings_config.all_notifications().general_settings,
|
|
|
|
notification_settings: settings_config.all_notifications().settings,
|
2019-06-29 22:00:44 +02:00
|
|
|
desktop_icon_count_display_values: settings_notifications.desktop_icon_count_display_values,
|
2020-07-15 00:34:28 +02:00
|
|
|
show_push_notifications_tooltip: settings_config.all_notifications()
|
|
|
|
.show_push_notifications_tooltip,
|
2020-02-21 14:26:11 +01:00
|
|
|
display_settings: settings_config.get_all_display_settings(),
|
2019-07-15 23:12:31 +02:00
|
|
|
user_can_change_name: settings_account.user_can_change_name(),
|
2019-08-11 16:34:42 +02:00
|
|
|
user_can_change_avatar: settings_account.user_can_change_avatar(),
|
2017-01-20 23:49:20 +01:00
|
|
|
});
|
|
|
|
|
2018-03-22 22:10:08 +01:00
|
|
|
$(".settings-box").html(rendered_settings_tab);
|
2021-02-28 01:23:16 +01:00
|
|
|
}
|
2018-12-06 01:59:07 +01:00
|
|
|
|
2021-02-28 01:23:16 +01:00
|
|
|
export function launch(section) {
|
|
|
|
build_page();
|
2018-12-06 20:18:56 +01:00
|
|
|
admin.build_page();
|
2018-12-08 19:28:26 +01:00
|
|
|
settings_sections.reset_sections();
|
2018-12-06 01:59:07 +01:00
|
|
|
|
2017-05-27 15:40:54 +02:00
|
|
|
overlays.open_settings();
|
2020-06-25 00:51:20 +02:00
|
|
|
settings_panel_menu.normal_settings.activate_section_or_default(section);
|
2020-07-15 01:29:15 +02:00
|
|
|
settings_toggle.highlight_toggle("settings");
|
2021-02-28 01:23:16 +01:00
|
|
|
}
|
2016-12-03 01:12:52 +01:00
|
|
|
|
2021-02-28 01:23:16 +01:00
|
|
|
export function set_settings_header(key) {
|
2021-02-03 23:23:32 +01:00
|
|
|
const header_text = $(
|
|
|
|
`#settings_page .sidebar-list [data-section='${CSS.escape(key)}'] .text`,
|
|
|
|
).text();
|
2019-08-22 13:08:24 +02:00
|
|
|
if (header_text) {
|
|
|
|
$(".settings-header h1 .section").text(" / " + header_text);
|
2017-05-09 22:09:13 +02:00
|
|
|
} else {
|
2020-07-15 00:34:28 +02:00
|
|
|
blueslip.warn(
|
|
|
|
"Error: the key '" +
|
|
|
|
key +
|
|
|
|
"' does not exist in the settings" +
|
|
|
|
" sidebar list. Please add it.",
|
|
|
|
);
|
2017-05-09 22:09:13 +02:00
|
|
|
}
|
2021-02-28 01:23:16 +01:00
|
|
|
}
|