import $ from "jquery"; import render_announce_stream_docs from "../templates/announce_stream_docs.hbs"; import render_new_stream_user from "../templates/new_stream_user.hbs"; import render_new_stream_users from "../templates/new_stream_users.hbs"; import render_subscription_invites_warning_modal from "../templates/subscription_invites_warning_modal.hbs"; import * as channel from "./channel"; import {$t, $t_html} from "./i18n"; import * as ListWidget from "./list_widget"; import * as loading from "./loading"; import {page_params} from "./page_params"; import * as peer_data from "./peer_data"; import * as people from "./people"; import * as stream_data from "./stream_data"; import * as stream_settings_data from "./stream_settings_data"; import * as subs from "./subs"; import * as ui_report from "./ui_report"; let created_stream; let all_users; let all_users_list_widget; export function reset_created_stream() { created_stream = undefined; } export function set_name(stream) { created_stream = stream; } export function get_name() { return created_stream; } class StreamSubscriptionError { report_no_subs_to_stream() { $("#stream_subscription_error").text( $t({defaultMessage: "You cannot create a stream with no subscribers!"}), ); $("#stream_subscription_error").show(); } cant_create_stream_without_susbscribing() { $("#stream_subscription_error").text( $t({ defaultMessage: "You must be an organization administrator to create a stream without subscribing.", }), ); $("#stream_subscription_error").show(); } clear_errors() { $("#stream_subscription_error").hide(); } } const stream_subscription_error = new StreamSubscriptionError(); class StreamNameError { report_already_exists() { $("#stream_name_error").text( $t({defaultMessage: "A stream with this name already exists"}), ); $("#stream_name_error").show(); } clear_errors() { $("#stream_name_error").hide(); } report_empty_stream() { $("#stream_name_error").text($t({defaultMessage: "A stream needs to have a name"})); $("#stream_name_error").show(); } select() { $("#create_stream_name").trigger("focus").trigger("select"); } pre_validate(stream_name) { // Don't worry about empty strings...we just want to call this // to warn users early before they start doing too much work // after they make the effort to type in a stream name. (The // use case here is that I go to create a stream, only to find // out it already exists, and I was just too lazy to look at // the public streams that I'm not subscribed to yet. Once I // realize the stream already exists, I may want to cancel.) if (stream_name && stream_data.get_sub(stream_name)) { this.report_already_exists(); return; } this.clear_errors(); } validate_for_submit(stream_name) { if (!stream_name) { this.report_empty_stream(); this.select(); return false; } if (stream_data.get_sub(stream_name)) { this.report_already_exists(); this.select(); return false; } // If we got this far, then we think we have a new unique stream // name, so we'll submit to the server. (It's still plausible, // however, that there's some invite-only stream that we don't // know about locally that will cause a name collision.) return true; } } const stream_name_error = new StreamNameError(); // Within the new stream modal... function update_announce_stream_state() { // If there is no notifications_stream, we simply hide the widget. if (!stream_data.realm_has_notifications_stream()) { $("#announce-new-stream").hide(); return; } // If the stream is invite only, disable the "Announce stream" option. // Otherwise enable it. const announce_stream_checkbox = $("#announce-new-stream input"); const announce_stream_label = $("#announce-new-stream"); let disable_it = false; const privacy_type = $("input:radio[name=privacy]:checked").val(); const is_invite_only = privacy_type === "invite-only" || privacy_type === "invite-only-public-history"; announce_stream_label.removeClass("control-label-disabled"); if (is_invite_only) { disable_it = true; announce_stream_checkbox.prop("checked", false); announce_stream_label.addClass("control-label-disabled"); } announce_stream_checkbox.prop("disabled", disable_it); $("#announce-new-stream").show(); } function get_principals() { // Return list of user ids which were selected by user. return all_users.filter((user) => user.checked === true).map((user) => user.user_id); } function create_stream() { const data = {}; const stream_name = $("#create_stream_name").val().trim(); const description = $("#create_stream_description").val().trim(); created_stream = stream_name; // Even though we already check to make sure that while typing the user cannot enter // newline characters (by pressing the Enter key) it would still be possible to copy // and paste over a description with newline characters in it. Prevent that. if (description.includes("\n")) { ui_report.client_error( $t_html({defaultMessage: "The stream description cannot contain newline characters."}), $(".stream_create_info"), ); return undefined; } data.subscriptions = JSON.stringify([{name: stream_name, description}]); let invite_only; let history_public_to_subscribers; const privacy_setting = $("#stream_creation_form input[name=privacy]:checked").val(); if (privacy_setting === "invite-only") { invite_only = true; history_public_to_subscribers = false; } else if (privacy_setting === "invite-only-public-history") { invite_only = true; history_public_to_subscribers = true; } else { invite_only = false; history_public_to_subscribers = true; } data.invite_only = JSON.stringify(invite_only); data.history_public_to_subscribers = JSON.stringify(history_public_to_subscribers); const stream_post_policy = Number.parseInt( $("#stream_creation_form input[name=stream-post-policy]:checked").val(), 10, ); data.stream_post_policy = JSON.stringify(stream_post_policy); let message_retention_selection = $( "#stream_creation_form select[name=stream_message_retention_setting]", ).val(); if (message_retention_selection === "retain_for_period") { message_retention_selection = Number.parseInt( $("#stream_creation_form input[name=stream-message-retention-days]").val(), 10, ); } data.message_retention_days = JSON.stringify(message_retention_selection); const announce = stream_data.realm_has_notifications_stream() && $("#announce-new-stream input").prop("checked"); data.announce = JSON.stringify(announce); // TODO: We can eliminate the user_ids -> principals conversion // once we upgrade the backend to accept user_ids. const user_ids = get_principals(); data.principals = JSON.stringify(user_ids); loading.make_indicator($("#stream_creating_indicator"), { text: $t({defaultMessage: "Creating stream..."}), }); // Subscribe yourself and possible other people to a new stream. return channel.post({ url: "/json/users/me/subscriptions", data, success() { $("#create_stream_name").val(""); $("#create_stream_description").val(""); ui_report.success( $t_html({defaultMessage: "Stream successfully created!"}), $(".stream_create_info"), ); loading.destroy_indicator($("#stream_creating_indicator")); // The rest of the work is done via the subscribe event we will get }, error(xhr) { const msg = JSON.parse(xhr.responseText).msg; if (msg.includes("access")) { // If we can't access the stream, we can safely assume it's // a duplicate stream that we are not invited to. // // BUG: This check should be using error codes, not // parsing the error string, so it works correctly // with i18n. And likely we should be reporting the // error text directly rather than turning it into // "Error creating stream"? stream_name_error.report_already_exists(stream_name); stream_name_error.trigger("select"); } ui_report.error( $t_html({defaultMessage: "Error creating stream"}), xhr, $(".stream_create_info"), ); loading.destroy_indicator($("#stream_creating_indicator")); }, }); } export function new_stream_clicked(stream_name) { // this changes the tab switcher (settings/preview) which isn't necessary // to a add new stream title. subs.show_subs_pane.create_stream(); $(".stream-row.active").removeClass("active"); if (stream_name !== "") { $("#create_stream_name").val(stream_name); } show_new_stream_modal(); $("#create_stream_name").trigger("focus"); } function clear_error_display() { stream_name_error.clear_errors(); $(".stream_create_info").hide(); stream_subscription_error.clear_errors(); } export function show_new_stream_modal() { $("#stream-creation").removeClass("hide"); $(".right .settings").hide(); const add_people_container = $("#people_to_add"); add_people_container.html( render_new_stream_users({ streams: stream_settings_data.get_streams_for_settings_page(), }), ); all_users = people.get_people_for_stream_create(); // Add current user on top of list const current_user = people.get_by_user_id(page_params.user_id); all_users.unshift({ email: current_user.email, user_id: current_user.user_id, full_name: current_user.full_name, checked: true, disabled: !page_params.is_admin, }); all_users_list_widget = ListWidget.create($("#user-checkboxes"), all_users, { name: "new_stream_add_users", parent_container: add_people_container, modifier(item) { return render_new_stream_user(item); }, filter: { element: $("#people_to_add .add-user-list-filter"), predicate(user, search_term) { return people.build_person_matcher(search_term)(user); }, }, simplebar_container: $("#user-checkboxes-simplebar-wrapper"), html_selector: (user) => $(`#${CSS.escape("user_checkbox_" + user.user_id)}`), }); create_handlers_for_users(add_people_container); // Make the options default to the same each time: // public, "announce stream" on. $("#make-invite-only input:radio[value=public]").prop("checked", true); $("#stream_creation_form .stream-message-retention-days-input").hide(); $("#stream_creation_form select[name=stream_message_retention_setting]").val("realm_default"); update_announce_stream_state(); if (stream_data.realm_has_notifications_stream()) { $("#announce-new-stream").show(); $("#announce-new-stream input").prop("disabled", false); $("#announce-new-stream input").prop("checked", true); } else { $("#announce-new-stream").hide(); } clear_error_display(); } export function create_handlers_for_users(container) { // container should be $('#people_to_add')...see caller to verify function update_checked_state_for_users(value, users) { // Update the all_users backing data structure for // which users will be submitted should the user click save, // and also ensure that any visible checkboxes reflect // the state of that data structure. // If we have to rerender a very large number of users, it's // eventually faster to just do a full redraw rather than // many hundreds of single-item rerenders. const full_redraw = !users || users.length > 250; for (const user of all_users) { // We don't want to uncheck the user creating the stream if it is not admin. if (user.user_id === page_params.user_id && value === false && !page_params.is_admin) { continue; } // We update for all users if `users` parameter is empty. if (users === undefined || users.includes(user.user_id)) { user.checked = value; if (!full_redraw) { all_users_list_widget.render_item(user); } } } if (full_redraw) { all_users_list_widget.hard_redraw(); } } container.on("change", "#user-checkboxes input", (e) => { const elem = $(e.target); const user_id = Number.parseInt(elem.attr("data-user-id"), 10); const checked = elem.prop("checked"); update_checked_state_for_users(checked, [user_id]); }); // 'Check all' and 'Uncheck all' visible users container.on("click", ".subs_set_all_users, .subs_unset_all_users", (e) => { e.preventDefault(); // Only `check / uncheck` users who are displayed. const mark_checked = e.target.classList.contains("subs_set_all_users"); const users_displayed = all_users_list_widget.get_current_list(); if (all_users.length !== users_displayed.length) { update_checked_state_for_users( mark_checked, users_displayed.map((user) => user.user_id), ); } else { update_checked_state_for_users(mark_checked); } }); container.on("click", "#copy-from-stream-expand-collapse", (e) => { e.preventDefault(); $("#stream-checkboxes").toggle(); $("#copy-from-stream-expand-collapse .toggle").toggleClass("fa-caret-right fa-caret-down"); }); $("#stream-checkboxes label.checkbox").on("change", (e) => { e.preventDefault(); const elem = $(e.target).closest("[data-stream-id]"); const stream_id = Number.parseInt(elem.attr("data-stream-id"), 10); const checked = elem.find("input").prop("checked"); const subscriber_ids = peer_data.get_subscribers(stream_id); update_checked_state_for_users(checked, subscriber_ids); }); } export function set_up_handlers() { const container = $("#stream-creation").expectOne(); container.on("change", "#make-invite-only input", update_announce_stream_state); container.on("submit", "#stream_creation_form", (e) => { e.preventDefault(); clear_error_display(); const stream_name = $("#create_stream_name").val().trim(); const name_ok = stream_name_error.validate_for_submit(stream_name); if (!name_ok) { return; } const principals = get_principals(); if (principals.length === 0) { stream_subscription_error.report_no_subs_to_stream(); return; } if (!principals.includes(people.my_current_user_id()) && !page_params.is_admin) { stream_subscription_error.cant_create_stream_without_susbscribing(); return; } if (principals.length >= 50) { const invites_warning_modal = render_subscription_invites_warning_modal({ stream_name, count: principals.length, }); $("#stream-creation").append(invites_warning_modal); } else { create_stream(); } }); container.on("click", ".close-invites-warning-modal", () => { $("#invites-warning-overlay").remove(); }); container.on("click", ".confirm-invites-warning-modal", () => { create_stream(); $("#invites-warning-overlay").remove(); }); container.on("input", "#create_stream_name", () => { const stream_name = $("#create_stream_name").val().trim(); // This is an inexpensive check. stream_name_error.pre_validate(stream_name); }); container.on("mouseover", "#announce-stream-docs", (e) => { const announce_stream_docs = $("#announce-stream-docs"); announce_stream_docs.popover({ placement: "right", content: render_announce_stream_docs({ notifications_stream: stream_data.get_notifications_stream(), }), html: true, trigger: "manual", }); announce_stream_docs.popover("show"); announce_stream_docs.data("popover").tip().css("z-index", 2000); announce_stream_docs .data("popover") .tip() .find(".popover-content") .css("margin", "9px 14px"); e.stopPropagation(); }); container.on("mouseout", "#announce-stream-docs", (e) => { $("#announce-stream-docs").popover("hide"); e.stopPropagation(); }); // Do not allow the user to enter newline characters while typing out the // stream's description during it's creation. container.on("keydown", "#create_stream_description", (e) => { if ((e.keyCode || e.which) === 13) { e.preventDefault(); } }); }