2021-03-11 05:43:45 +01:00
|
|
|
import $ from "jquery";
|
|
|
|
|
2021-06-21 11:01:44 +02:00
|
|
|
import render_settings_deactivation_stream_modal from "../templates/confirm_dialog/confirm_deactivate_stream.hbs";
|
2022-08-04 19:41:55 +02:00
|
|
|
import render_stream_privacy from "../templates/stream_privacy.hbs";
|
2021-07-18 14:53:17 +02:00
|
|
|
import render_change_stream_info_modal from "../templates/stream_settings/change_stream_info_modal.hbs";
|
2021-07-17 21:24:41 +02:00
|
|
|
import render_stream_description from "../templates/stream_settings/stream_description.hbs";
|
2021-07-18 13:49:31 +02:00
|
|
|
import render_stream_settings from "../templates/stream_settings/stream_settings.hbs";
|
2021-07-20 14:53:33 +02:00
|
|
|
import render_stream_types from "../templates/stream_settings/stream_types.hbs";
|
2021-02-28 00:55:38 +01:00
|
|
|
|
2021-03-16 23:38:59 +01:00
|
|
|
import * as blueslip from "./blueslip";
|
2021-03-22 16:09:12 +01:00
|
|
|
import * as browser_history from "./browser_history";
|
2021-02-28 00:55:38 +01:00
|
|
|
import * as channel from "./channel";
|
2021-06-26 15:28:24 +02:00
|
|
|
import * as components from "./components";
|
2020-08-07 00:38:19 +02:00
|
|
|
import * as confirm_dialog from "./confirm_dialog";
|
2021-07-17 16:44:31 +02:00
|
|
|
import * as dialog_widget from "./dialog_widget";
|
2021-02-28 01:07:13 +01:00
|
|
|
import * as hash_util from "./hash_util";
|
2021-04-13 06:51:54 +02:00
|
|
|
import {$t, $t_html} from "./i18n";
|
2021-02-28 00:55:38 +01:00
|
|
|
import * as narrow_state from "./narrow_state";
|
2021-03-25 22:35:45 +01:00
|
|
|
import {page_params} from "./page_params";
|
2021-02-28 00:55:38 +01:00
|
|
|
import * as settings_config from "./settings_config";
|
|
|
|
import * as settings_ui from "./settings_ui";
|
|
|
|
import * as stream_color from "./stream_color";
|
|
|
|
import * as stream_data from "./stream_data";
|
2022-02-21 18:42:35 +01:00
|
|
|
import * as stream_edit_subscribers from "./stream_edit_subscribers";
|
2021-12-15 15:07:39 +01:00
|
|
|
import * as stream_settings_containers from "./stream_settings_containers";
|
2021-04-04 15:15:18 +02:00
|
|
|
import * as stream_settings_data from "./stream_settings_data";
|
2021-07-09 15:51:31 +02:00
|
|
|
import * as stream_settings_ui from "./stream_settings_ui";
|
2021-02-28 00:55:38 +01:00
|
|
|
import * as stream_ui_updates from "./stream_ui_updates";
|
2021-04-15 17:02:54 +02:00
|
|
|
import * as sub_store from "./sub_store";
|
2021-02-28 21:33:10 +01:00
|
|
|
import * as ui from "./ui";
|
2021-02-28 00:58:55 +01:00
|
|
|
import * as ui_report from "./ui_report";
|
2021-07-28 16:00:58 +02:00
|
|
|
import {user_settings} from "./user_settings";
|
2021-02-28 00:55:38 +01:00
|
|
|
import * as util from "./util";
|
|
|
|
|
2021-06-26 15:28:24 +02:00
|
|
|
export let toggler;
|
|
|
|
export let select_tab = "personal_settings";
|
2019-07-09 21:24:00 +02:00
|
|
|
|
2017-10-03 00:15:42 +02:00
|
|
|
function setup_subscriptions_stream_hash(sub) {
|
2022-03-01 19:14:26 +01:00
|
|
|
const hash = hash_util.stream_edit_url(sub);
|
2021-03-22 16:09:12 +01:00
|
|
|
browser_history.update(hash);
|
2017-04-24 04:11:25 +02:00
|
|
|
}
|
|
|
|
|
2021-02-28 00:55:38 +01:00
|
|
|
export function setup_subscriptions_tab_hash(tab_key_value) {
|
2019-04-06 12:55:16 +02:00
|
|
|
if (tab_key_value === "all-streams") {
|
2021-03-22 16:09:12 +01:00
|
|
|
browser_history.update("#streams/all");
|
2019-04-06 12:55:16 +02:00
|
|
|
} else if (tab_key_value === "subscribed") {
|
2021-03-22 16:09:12 +01:00
|
|
|
browser_history.update("#streams/subscribed");
|
2019-04-06 12:55:16 +02:00
|
|
|
} else {
|
|
|
|
blueslip.debug("Unknown tab_key_value: " + tab_key_value);
|
|
|
|
}
|
2021-02-28 00:55:38 +01:00
|
|
|
}
|
2019-04-06 12:55:16 +02:00
|
|
|
|
2021-02-28 00:55:38 +01:00
|
|
|
export function get_retention_policy_text_for_subscription_type(sub) {
|
2020-06-16 13:59:02 +02:00
|
|
|
let message_retention_days = sub.message_retention_days;
|
|
|
|
// If both this stream and the organization-level policy are to retain forever,
|
|
|
|
// there's no need to comment on retention policies when describing the stream.
|
2020-07-15 00:34:28 +02:00
|
|
|
if (
|
|
|
|
page_params.realm_message_retention_days === settings_config.retain_message_forever &&
|
|
|
|
(sub.message_retention_days === null ||
|
|
|
|
sub.message_retention_days === settings_config.retain_message_forever)
|
|
|
|
) {
|
2020-09-24 07:50:36 +02:00
|
|
|
return undefined;
|
2020-06-16 13:59:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Forever for this stream, overriding the organization default
|
2020-06-26 00:10:17 +02:00
|
|
|
if (sub.message_retention_days === settings_config.retain_message_forever) {
|
2021-04-13 06:51:54 +02:00
|
|
|
return $t({defaultMessage: "Messages in this stream will be retained forever."});
|
2020-06-16 13:59:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// If we are deleting messages, even if it's the organization
|
|
|
|
// default, it's worth commenting on the policy.
|
2020-07-16 23:29:01 +02:00
|
|
|
if (message_retention_days === null) {
|
2020-06-16 13:59:02 +02:00
|
|
|
message_retention_days = page_params.realm_message_retention_days;
|
|
|
|
}
|
|
|
|
|
2021-04-13 06:51:54 +02:00
|
|
|
return $t(
|
|
|
|
{
|
|
|
|
defaultMessage:
|
|
|
|
"Messages in this stream will be automatically deleted after {retention_days} days.",
|
|
|
|
},
|
2020-07-15 00:34:28 +02:00
|
|
|
{retention_days: message_retention_days},
|
|
|
|
);
|
2021-02-28 00:55:38 +01:00
|
|
|
}
|
2020-06-16 13:59:02 +02:00
|
|
|
|
2021-02-28 00:55:38 +01:00
|
|
|
export function get_display_text_for_realm_message_retention_setting() {
|
2020-06-15 17:00:00 +02:00
|
|
|
const realm_message_retention_days = page_params.realm_message_retention_days;
|
2020-06-26 00:10:17 +02:00
|
|
|
if (realm_message_retention_days === settings_config.retain_message_forever) {
|
2021-04-13 06:51:54 +02:00
|
|
|
return $t({defaultMessage: "(forever)"});
|
2020-06-15 17:00:00 +02:00
|
|
|
}
|
2021-04-13 06:51:54 +02:00
|
|
|
return $t(
|
|
|
|
{defaultMessage: "({message_retention_days} days)"},
|
|
|
|
{message_retention_days: realm_message_retention_days},
|
|
|
|
);
|
2021-02-28 00:55:38 +01:00
|
|
|
}
|
2020-06-15 17:00:00 +02:00
|
|
|
|
|
|
|
function change_stream_message_retention_days_block_display_property(value) {
|
|
|
|
if (value === "retain_for_period") {
|
stream_edit: Be more specific w/ ".stream_message_retention_setting".
The stream creation form also uses the same stream_types template as
the stream privacy modal, however, it currently does not setup its own
handler for displaying the "N:" input when
".stream_message_retention_setting" is changed.
Previously, if one opened the stream creation form, then opened the
stream edit modal, and then went back to the stream creation form, the
drop down would correctly also .show() the input, because the handler
here would also target that selector. This is incorrect since we can't
always expect the stream_edit modal to be opened first, stream_create
should set up its own handlers.
Hence, as a prep commit to fixing stream_creation, and to ensure we
don't add duplicate handlers, in this commit we change all selectors
that targeted ".stream_message_retention_setting" to
"#stream_privacy_modal .stream_message_retention_setting" in this
file.
2021-11-23 18:34:43 +01:00
|
|
|
$("#stream_privacy_modal .stream-message-retention-days-input").show();
|
2020-06-15 17:00:00 +02:00
|
|
|
} else {
|
stream_edit: Be more specific w/ ".stream_message_retention_setting".
The stream creation form also uses the same stream_types template as
the stream privacy modal, however, it currently does not setup its own
handler for displaying the "N:" input when
".stream_message_retention_setting" is changed.
Previously, if one opened the stream creation form, then opened the
stream edit modal, and then went back to the stream creation form, the
drop down would correctly also .show() the input, because the handler
here would also target that selector. This is incorrect since we can't
always expect the stream_edit modal to be opened first, stream_create
should set up its own handlers.
Hence, as a prep commit to fixing stream_creation, and to ensure we
don't add duplicate handlers, in this commit we change all selectors
that targeted ".stream_message_retention_setting" to
"#stream_privacy_modal .stream_message_retention_setting" in this
file.
2021-11-23 18:34:43 +01:00
|
|
|
$("#stream_privacy_modal .stream-message-retention-days-input").hide();
|
2020-06-15 17:00:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function set_stream_message_retention_setting_dropdown(stream) {
|
|
|
|
let value = "retain_for_period";
|
|
|
|
if (stream.message_retention_days === null) {
|
|
|
|
value = "realm_default";
|
2020-06-26 00:10:17 +02:00
|
|
|
} else if (stream.message_retention_days === settings_config.retain_message_forever) {
|
2021-08-02 18:43:08 +02:00
|
|
|
value = "unlimited";
|
2020-06-15 17:00:00 +02:00
|
|
|
}
|
|
|
|
|
stream_edit: Be more specific w/ ".stream_message_retention_setting".
The stream creation form also uses the same stream_types template as
the stream privacy modal, however, it currently does not setup its own
handler for displaying the "N:" input when
".stream_message_retention_setting" is changed.
Previously, if one opened the stream creation form, then opened the
stream edit modal, and then went back to the stream creation form, the
drop down would correctly also .show() the input, because the handler
here would also target that selector. This is incorrect since we can't
always expect the stream_edit modal to be opened first, stream_create
should set up its own handlers.
Hence, as a prep commit to fixing stream_creation, and to ensure we
don't add duplicate handlers, in this commit we change all selectors
that targeted ".stream_message_retention_setting" to
"#stream_privacy_modal .stream_message_retention_setting" in this
file.
2021-11-23 18:34:43 +01:00
|
|
|
$("#stream_privacy_modal .stream_message_retention_setting").val(value);
|
2020-06-15 17:00:00 +02:00
|
|
|
change_stream_message_retention_days_block_display_property(value);
|
|
|
|
}
|
|
|
|
|
2019-04-03 07:14:10 +02:00
|
|
|
function get_stream_id(target) {
|
2022-01-25 11:36:19 +01:00
|
|
|
const $row = $(target).closest(
|
2021-06-26 15:28:24 +02:00
|
|
|
".stream-row, .stream_settings_header, .subscription_settings, .save-button",
|
|
|
|
);
|
2022-01-25 11:36:19 +01:00
|
|
|
return Number.parseInt($row.attr("data-stream-id"), 10);
|
2019-04-03 07:14:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function get_sub_for_target(target) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_id = get_stream_id(target);
|
2019-04-03 07:14:10 +02:00
|
|
|
if (!stream_id) {
|
2020-07-15 01:29:15 +02:00
|
|
|
blueslip.error("Cannot find stream id for target");
|
2020-09-24 07:50:36 +02:00
|
|
|
return undefined;
|
2019-04-03 07:14:10 +02:00
|
|
|
}
|
|
|
|
|
2021-04-15 17:02:54 +02:00
|
|
|
const sub = sub_store.get(stream_id);
|
2019-04-03 07:14:10 +02:00
|
|
|
if (!sub) {
|
2020-07-15 01:29:15 +02:00
|
|
|
blueslip.error("get_sub_for_target() failed id lookup: " + stream_id);
|
2020-09-24 07:50:36 +02:00
|
|
|
return undefined;
|
2019-04-03 07:14:10 +02:00
|
|
|
}
|
|
|
|
return sub;
|
|
|
|
}
|
|
|
|
|
2021-02-28 00:55:38 +01:00
|
|
|
export function open_edit_panel_for_row(stream_row) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const sub = get_sub_for_target(stream_row);
|
2019-04-03 07:14:10 +02:00
|
|
|
|
2020-07-08 23:54:13 +02:00
|
|
|
$(".stream-row.active").removeClass("active");
|
2022-01-28 11:30:48 +01:00
|
|
|
stream_settings_ui.show_subs_pane.settings(sub);
|
2018-12-01 21:53:09 +01:00
|
|
|
$(stream_row).addClass("active");
|
2019-04-03 07:14:10 +02:00
|
|
|
setup_subscriptions_stream_hash(sub);
|
2021-06-26 15:28:24 +02:00
|
|
|
setup_stream_settings(stream_row);
|
2021-02-28 00:55:38 +01:00
|
|
|
}
|
2018-12-01 21:53:09 +01:00
|
|
|
|
2021-02-28 00:55:38 +01:00
|
|
|
export function open_edit_panel_empty() {
|
2022-08-26 08:01:32 +02:00
|
|
|
const tab_key = stream_settings_ui.get_active_data().$tabs.first().attr("data-tab-key");
|
2020-07-08 23:54:13 +02:00
|
|
|
$(".stream-row.active").removeClass("active");
|
2021-07-09 15:51:31 +02:00
|
|
|
stream_settings_ui.show_subs_pane.nothing_selected();
|
2021-02-28 00:55:38 +01:00
|
|
|
setup_subscriptions_tab_hash(tab_key);
|
|
|
|
}
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2021-02-28 00:55:38 +01:00
|
|
|
export function update_stream_name(sub, new_name) {
|
2022-01-25 11:36:19 +01:00
|
|
|
const $edit_container = stream_settings_containers.get_edit_container(sub);
|
|
|
|
$edit_container.find(".email-address").text(sub.email_address);
|
|
|
|
$edit_container.find(".sub-stream-name").text(new_name);
|
2022-01-27 08:58:28 +01:00
|
|
|
|
|
|
|
const active_data = stream_settings_ui.get_active_data();
|
|
|
|
if (active_data.id === sub.stream_id) {
|
|
|
|
stream_settings_ui.set_right_panel_title(sub);
|
|
|
|
}
|
2021-02-28 00:55:38 +01:00
|
|
|
}
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2021-02-28 00:55:38 +01:00
|
|
|
export function update_stream_description(sub) {
|
2022-01-25 11:36:19 +01:00
|
|
|
const $edit_container = stream_settings_containers.get_edit_container(sub);
|
|
|
|
$edit_container.find("input.description").val(sub.description);
|
2021-07-08 23:21:47 +02:00
|
|
|
const html = render_stream_description({
|
|
|
|
rendered_description: util.clean_user_content_links(sub.rendered_description),
|
|
|
|
});
|
2022-01-25 11:36:19 +01:00
|
|
|
$edit_container.find(".stream-description").html(html);
|
2021-02-28 00:55:38 +01:00
|
|
|
}
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2020-08-28 10:40:00 +02:00
|
|
|
function show_subscription_settings(sub) {
|
2022-01-25 11:36:19 +01:00
|
|
|
const $edit_container = stream_settings_containers.get_edit_container(sub);
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $colorpicker = $edit_container.find(".colorpicker");
|
2019-11-02 00:06:25 +01:00
|
|
|
const color = stream_data.get_color(sub.name);
|
2022-01-25 11:36:19 +01:00
|
|
|
stream_color.set_colorpicker_color($colorpicker, color);
|
2019-05-03 07:59:31 +02:00
|
|
|
stream_ui_updates.update_add_subscriptions_elements(sub);
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2021-05-04 18:47:17 +02:00
|
|
|
if (!sub.render_subscribers) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-19 15:41:15 +01:00
|
|
|
if (!stream_data.can_toggle_subscription(sub)) {
|
|
|
|
stream_ui_updates.initialize_cant_subscribe_popover(sub);
|
|
|
|
}
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $subscriber_container = $edit_container.find(".edit_subscribers_for_stream");
|
2022-02-21 18:42:35 +01:00
|
|
|
stream_edit_subscribers.enable_subscriber_management({
|
2021-12-21 17:39:05 +01:00
|
|
|
sub,
|
2022-01-25 11:36:19 +01:00
|
|
|
$parent_container: $subscriber_container,
|
2021-12-21 17:39:05 +01:00
|
|
|
});
|
2017-04-24 04:11:25 +02:00
|
|
|
}
|
|
|
|
|
2021-02-28 00:55:38 +01:00
|
|
|
export function is_notification_setting(setting_label) {
|
js: Convert a.indexOf(…) !== -1 to a.includes(…).
Babel polyfills this for us for Internet Explorer.
import * as babelParser from "recast/parsers/babel";
import * as recast from "recast";
import * as tsParser from "recast/parsers/typescript";
import { builders as b, namedTypes as n } from "ast-types";
import K from "ast-types/gen/kinds";
import fs from "fs";
import path from "path";
import process from "process";
const checkExpression = (node: n.Node): node is K.ExpressionKind =>
n.Expression.check(node);
for (const file of process.argv.slice(2)) {
console.log("Parsing", file);
const ast = recast.parse(fs.readFileSync(file, { encoding: "utf8" }), {
parser: path.extname(file) === ".ts" ? tsParser : babelParser,
});
let changed = false;
recast.visit(ast, {
visitBinaryExpression(path) {
const { operator, left, right } = path.node;
if (
n.CallExpression.check(left) &&
n.MemberExpression.check(left.callee) &&
!left.callee.computed &&
n.Identifier.check(left.callee.property) &&
left.callee.property.name === "indexOf" &&
left.arguments.length === 1 &&
checkExpression(left.arguments[0]) &&
((["===", "!==", "==", "!=", ">", "<="].includes(operator) &&
n.UnaryExpression.check(right) &&
right.operator == "-" &&
n.Literal.check(right.argument) &&
right.argument.value === 1) ||
([">=", "<"].includes(operator) &&
n.Literal.check(right) &&
right.value === 0))
) {
const test = b.callExpression(
b.memberExpression(left.callee.object, b.identifier("includes")),
[left.arguments[0]]
);
path.replace(
["!==", "!=", ">", ">="].includes(operator)
? test
: b.unaryExpression("!", test)
);
changed = true;
}
this.traverse(path);
},
});
if (changed) {
console.log("Writing", file);
fs.writeFileSync(file, recast.print(ast).code, { encoding: "utf8" });
}
}
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-02-08 04:55:06 +01:00
|
|
|
if (setting_label.includes("_notifications")) {
|
2019-06-14 14:42:48 +02:00
|
|
|
return true;
|
js: Convert a.indexOf(…) !== -1 to a.includes(…).
Babel polyfills this for us for Internet Explorer.
import * as babelParser from "recast/parsers/babel";
import * as recast from "recast";
import * as tsParser from "recast/parsers/typescript";
import { builders as b, namedTypes as n } from "ast-types";
import K from "ast-types/gen/kinds";
import fs from "fs";
import path from "path";
import process from "process";
const checkExpression = (node: n.Node): node is K.ExpressionKind =>
n.Expression.check(node);
for (const file of process.argv.slice(2)) {
console.log("Parsing", file);
const ast = recast.parse(fs.readFileSync(file, { encoding: "utf8" }), {
parser: path.extname(file) === ".ts" ? tsParser : babelParser,
});
let changed = false;
recast.visit(ast, {
visitBinaryExpression(path) {
const { operator, left, right } = path.node;
if (
n.CallExpression.check(left) &&
n.MemberExpression.check(left.callee) &&
!left.callee.computed &&
n.Identifier.check(left.callee.property) &&
left.callee.property.name === "indexOf" &&
left.arguments.length === 1 &&
checkExpression(left.arguments[0]) &&
((["===", "!==", "==", "!=", ">", "<="].includes(operator) &&
n.UnaryExpression.check(right) &&
right.operator == "-" &&
n.Literal.check(right.argument) &&
right.argument.value === 1) ||
([">=", "<"].includes(operator) &&
n.Literal.check(right) &&
right.value === 0))
) {
const test = b.callExpression(
b.memberExpression(left.callee.object, b.identifier("includes")),
[left.arguments[0]]
);
path.replace(
["!==", "!=", ">", ">="].includes(operator)
? test
: b.unaryExpression("!", test)
);
changed = true;
}
this.traverse(path);
},
});
if (changed) {
console.log("Writing", file);
fs.writeFileSync(file, recast.print(ast).code, { encoding: "utf8" });
}
}
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-02-08 04:55:06 +01:00
|
|
|
} else if (setting_label.includes("_notify")) {
|
2019-11-26 02:37:12 +01:00
|
|
|
return true;
|
2019-06-14 14:42:48 +02:00
|
|
|
}
|
|
|
|
return false;
|
2021-02-28 00:55:38 +01:00
|
|
|
}
|
2019-06-14 14:42:48 +02:00
|
|
|
|
2021-02-28 00:55:38 +01:00
|
|
|
export function stream_settings(sub) {
|
2020-04-01 19:43:34 +02:00
|
|
|
const settings_labels = settings_config.general_notifications_table_labels.stream;
|
2021-08-27 15:46:23 +02:00
|
|
|
const check_realm_setting =
|
|
|
|
settings_config.all_notifications(user_settings).show_push_notifications_tooltip;
|
2020-04-01 19:43:34 +02:00
|
|
|
|
2020-01-27 13:18:04 +01:00
|
|
|
const settings = Object.keys(settings_labels).map((setting) => {
|
|
|
|
const ret = {
|
|
|
|
name: setting,
|
|
|
|
label: settings_labels[setting],
|
2020-01-27 18:54:44 +01:00
|
|
|
disabled_realm_setting: check_realm_setting[setting],
|
2020-01-27 18:50:49 +01:00
|
|
|
is_disabled: check_realm_setting[setting],
|
2021-02-28 00:55:38 +01:00
|
|
|
is_notification_setting: is_notification_setting(setting),
|
2020-01-27 13:18:04 +01:00
|
|
|
};
|
2021-02-28 00:55:38 +01:00
|
|
|
if (is_notification_setting(setting)) {
|
2021-04-04 19:35:45 +02:00
|
|
|
// This block ensures we correctly display to users the
|
|
|
|
// current state of stream-level notification settings
|
|
|
|
// with a value of `null`, which inherit the user's global
|
|
|
|
// notification settings for streams.
|
|
|
|
ret.is_checked =
|
|
|
|
stream_data.receives_notifications(sub.stream_id, setting) &&
|
|
|
|
!check_realm_setting[setting];
|
2020-01-27 18:50:49 +01:00
|
|
|
ret.is_disabled = ret.is_disabled || sub.is_muted;
|
2020-01-27 13:18:04 +01:00
|
|
|
return ret;
|
2019-06-14 14:42:48 +02:00
|
|
|
}
|
2020-01-27 18:42:35 +01:00
|
|
|
ret.is_checked = sub[setting] && !check_realm_setting[setting];
|
2020-01-27 13:18:04 +01:00
|
|
|
return ret;
|
2019-06-14 14:42:48 +02:00
|
|
|
});
|
|
|
|
return settings;
|
2021-02-28 00:55:38 +01:00
|
|
|
}
|
2019-06-14 14:42:48 +02:00
|
|
|
|
2021-02-28 00:55:38 +01:00
|
|
|
export function show_settings_for(node) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_id = get_stream_id(node);
|
2021-04-15 17:02:54 +02:00
|
|
|
const slim_sub = sub_store.get(stream_id);
|
2021-04-04 20:00:22 +02:00
|
|
|
stream_data.clean_up_description(slim_sub);
|
|
|
|
const sub = stream_settings_data.get_sub_for_settings(slim_sub);
|
2021-08-06 09:45:45 +02:00
|
|
|
const all_settings = stream_settings(sub);
|
|
|
|
|
|
|
|
const other_settings = [];
|
|
|
|
const notification_settings = all_settings.filter((setting) => {
|
|
|
|
if (setting.is_notification_setting) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
other_settings.push(setting);
|
|
|
|
return false;
|
|
|
|
});
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2021-07-18 13:49:31 +02:00
|
|
|
const html = render_stream_settings({
|
2020-07-20 22:18:43 +02:00
|
|
|
sub,
|
2021-08-06 09:45:45 +02:00
|
|
|
notification_settings,
|
|
|
|
other_settings,
|
2020-02-04 21:50:55 +01:00
|
|
|
stream_post_policy_values: stream_data.stream_post_policy_values,
|
2021-02-28 00:55:38 +01:00
|
|
|
message_retention_text: get_retention_policy_text_for_subscription_type(sub),
|
2019-06-14 14:42:48 +02:00
|
|
|
});
|
2021-06-26 15:28:24 +02:00
|
|
|
ui.get_content_element($("#stream_settings")).html(html);
|
|
|
|
|
|
|
|
$("#stream_settings .tab-container").prepend(toggler.get());
|
|
|
|
stream_ui_updates.update_toggler_for_sub(sub);
|
2017-05-10 20:02:21 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $edit_container = stream_settings_containers.get_edit_container(sub);
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2017-05-10 20:02:21 +02:00
|
|
|
$(".nothing-selected").hide();
|
2021-07-05 11:26:23 +02:00
|
|
|
$("#subscription_overlay .stream_change_property_info").hide();
|
2017-07-28 14:07:58 +02:00
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
$edit_container.addClass("show");
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2020-08-28 10:40:00 +02:00
|
|
|
show_subscription_settings(sub);
|
2021-02-28 00:55:38 +01:00
|
|
|
}
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2021-06-26 15:28:24 +02:00
|
|
|
export function setup_stream_settings(node) {
|
|
|
|
toggler = components.toggle({
|
|
|
|
child_wants_focus: true,
|
|
|
|
values: [
|
|
|
|
{label: $t({defaultMessage: "General"}), key: "general_settings"},
|
|
|
|
{label: $t({defaultMessage: "Personal"}), key: "personal_settings"},
|
|
|
|
{label: $t({defaultMessage: "Subscribers"}), key: "subscriber_settings"},
|
|
|
|
],
|
|
|
|
callback(name, key) {
|
|
|
|
$(".stream_section").hide();
|
|
|
|
$("." + key).show();
|
|
|
|
select_tab = key;
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
show_settings_for(node);
|
|
|
|
}
|
|
|
|
|
2022-03-03 23:03:32 +01:00
|
|
|
export function update_muting_rendering(sub) {
|
2022-01-25 11:36:19 +01:00
|
|
|
const $edit_container = stream_settings_containers.get_edit_container(sub);
|
|
|
|
const $notification_checkboxes = $edit_container.find(".sub_notification_setting");
|
|
|
|
const $is_muted_checkbox = $edit_container.find("#sub_is_muted_setting .sub_setting_control");
|
|
|
|
|
|
|
|
$is_muted_checkbox.prop("checked", sub.is_muted);
|
|
|
|
$edit_container.find(".mute-note").toggleClass("hide-mute-note", !sub.is_muted);
|
|
|
|
$notification_checkboxes.toggleClass("muted-sub", sub.is_muted);
|
|
|
|
$notification_checkboxes.find("input[type='checkbox']").prop("disabled", sub.is_muted);
|
2022-03-03 23:03:32 +01:00
|
|
|
}
|
|
|
|
|
2020-07-22 00:43:11 +02:00
|
|
|
function stream_is_muted_changed(e) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const sub = get_sub_for_target(e.target);
|
2017-04-24 04:11:25 +02:00
|
|
|
if (!sub) {
|
2020-07-22 00:43:11 +02:00
|
|
|
blueslip.error("stream_is_muted_changed() fails");
|
2017-04-24 04:11:25 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-07-09 15:51:31 +02:00
|
|
|
stream_settings_ui.set_muted(
|
2021-02-03 23:23:32 +01:00
|
|
|
sub,
|
|
|
|
e.target.checked,
|
|
|
|
`#stream_change_property_status${CSS.escape(sub.stream_id)}`,
|
|
|
|
);
|
2017-04-24 04:11:25 +02:00
|
|
|
}
|
|
|
|
|
2021-02-28 00:55:38 +01:00
|
|
|
export function stream_setting_changed(e, from_notification_settings) {
|
2020-07-22 00:43:11 +02:00
|
|
|
if (e.target.name === "is_muted") {
|
2020-02-04 11:46:36 +01:00
|
|
|
return;
|
|
|
|
}
|
2020-02-04 13:36:10 +01:00
|
|
|
|
2020-04-06 19:31:58 +02:00
|
|
|
const sub = get_sub_for_target(e.target);
|
2020-07-22 00:43:11 +02:00
|
|
|
const status_element = from_notification_settings
|
|
|
|
? $(e.target).closest(".subsection-parent").find(".alert-notification")
|
2021-02-03 23:23:32 +01:00
|
|
|
: $(`#stream_change_property_status${CSS.escape(sub.stream_id)}`);
|
2020-07-22 00:43:11 +02:00
|
|
|
const setting = e.target.name;
|
2019-06-14 15:41:28 +02:00
|
|
|
if (!sub) {
|
2020-07-22 00:43:11 +02:00
|
|
|
blueslip.error("undefined sub in stream_setting_changed()");
|
2019-06-14 15:41:28 +02:00
|
|
|
return;
|
|
|
|
}
|
2021-02-28 00:55:38 +01:00
|
|
|
if (is_notification_setting(setting) && sub[setting] === null) {
|
2022-08-25 21:09:32 +02:00
|
|
|
sub[setting] =
|
|
|
|
user_settings[settings_config.generalize_stream_notification_setting[setting]];
|
2019-06-14 15:41:28 +02:00
|
|
|
}
|
2021-02-28 00:55:38 +01:00
|
|
|
set_stream_property(sub, setting, e.target.checked, status_element);
|
|
|
|
}
|
2019-06-14 15:41:28 +02:00
|
|
|
|
2021-02-28 00:55:38 +01:00
|
|
|
export function bulk_set_stream_property(sub_data, status_element) {
|
2020-07-15 01:29:15 +02:00
|
|
|
const url = "/json/users/me/subscriptions/properties";
|
2020-03-28 11:16:11 +01:00
|
|
|
const data = {subscription_data: JSON.stringify(sub_data)};
|
|
|
|
if (!status_element) {
|
2020-04-06 19:31:58 +02:00
|
|
|
return channel.post({
|
2020-07-20 22:18:43 +02:00
|
|
|
url,
|
|
|
|
data,
|
2020-04-06 19:31:58 +02:00
|
|
|
timeout: 10 * 1000,
|
|
|
|
});
|
2020-03-28 11:16:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
settings_ui.do_settings_change(channel.post, url, data, status_element);
|
2020-09-24 07:50:36 +02:00
|
|
|
return undefined;
|
2021-02-28 00:55:38 +01:00
|
|
|
}
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2021-02-28 00:55:38 +01:00
|
|
|
export function set_stream_property(sub, property, value, status_element) {
|
2020-07-20 22:18:43 +02:00
|
|
|
const sub_data = {stream_id: sub.stream_id, property, value};
|
2021-02-28 00:55:38 +01:00
|
|
|
bulk_set_stream_property([sub_data], status_element);
|
|
|
|
}
|
2018-02-14 14:53:10 +01:00
|
|
|
|
2020-08-04 16:40:46 +02:00
|
|
|
function get_message_retention_days_from_sub(sub) {
|
|
|
|
if (sub.message_retention_days === null) {
|
|
|
|
return "realm_default";
|
|
|
|
}
|
|
|
|
if (sub.message_retention_days === -1) {
|
2021-08-02 18:43:08 +02:00
|
|
|
return "unlimited";
|
2020-08-04 16:40:46 +02:00
|
|
|
}
|
|
|
|
return sub.message_retention_days;
|
|
|
|
}
|
|
|
|
|
2017-04-24 04:11:25 +02:00
|
|
|
function change_stream_privacy(e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
|
2021-07-08 22:15:28 +02:00
|
|
|
const data = {};
|
2021-07-20 14:53:33 +02:00
|
|
|
const stream_id = $(e.target).closest(".dialog_submit_button").data("stream-id");
|
2021-07-08 22:15:28 +02:00
|
|
|
const url = "/json/streams/" + stream_id;
|
2022-01-25 11:36:19 +01:00
|
|
|
const $status_element = $(".stream_permission_change_info");
|
2021-04-15 17:02:54 +02:00
|
|
|
const sub = sub_store.get(stream_id);
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
const privacy_setting = $("#stream_privacy_modal input[name=privacy]:checked").val();
|
2020-10-07 09:17:30 +02:00
|
|
|
const stream_post_policy = Number.parseInt(
|
2022-03-07 07:43:41 +01:00
|
|
|
$("#stream_privacy_modal select[name=stream-post-policy]").val(),
|
2020-07-15 00:34:28 +02:00
|
|
|
10,
|
|
|
|
);
|
2018-05-03 18:52:39 +02:00
|
|
|
|
2020-08-04 16:40:46 +02:00
|
|
|
if (sub.stream_post_policy !== stream_post_policy) {
|
|
|
|
data.stream_post_policy = JSON.stringify(stream_post_policy);
|
|
|
|
}
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let invite_only;
|
|
|
|
let history_public_to_subscribers;
|
2020-11-10 15:57:14 +01:00
|
|
|
let is_web_public;
|
2018-05-03 18:52:39 +02:00
|
|
|
|
2021-09-20 07:42:24 +02:00
|
|
|
switch (privacy_setting) {
|
|
|
|
case stream_data.stream_privacy_policy_values.public.code: {
|
|
|
|
invite_only = false;
|
|
|
|
history_public_to_subscribers = true;
|
2020-11-10 15:57:14 +01:00
|
|
|
is_web_public = false;
|
2021-09-20 07:42:24 +02:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case stream_data.stream_privacy_policy_values.private.code: {
|
|
|
|
invite_only = true;
|
|
|
|
history_public_to_subscribers = false;
|
2020-11-10 15:57:14 +01:00
|
|
|
is_web_public = false;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case stream_data.stream_privacy_policy_values.web_public.code: {
|
|
|
|
invite_only = false;
|
|
|
|
history_public_to_subscribers = true;
|
|
|
|
is_web_public = true;
|
2021-09-20 07:42:24 +02:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
invite_only = true;
|
|
|
|
history_public_to_subscribers = true;
|
2020-11-10 15:57:14 +01:00
|
|
|
is_web_public = false;
|
2021-09-20 07:42:24 +02:00
|
|
|
}
|
2018-05-03 18:52:39 +02:00
|
|
|
}
|
|
|
|
|
2020-08-04 16:40:46 +02:00
|
|
|
if (
|
|
|
|
sub.invite_only !== invite_only ||
|
2020-11-10 15:57:14 +01:00
|
|
|
sub.history_public_to_subscribers !== history_public_to_subscribers ||
|
|
|
|
sub.is_web_public !== is_web_public
|
2020-08-04 16:40:46 +02:00
|
|
|
) {
|
|
|
|
data.is_private = JSON.stringify(invite_only);
|
|
|
|
data.history_public_to_subscribers = JSON.stringify(history_public_to_subscribers);
|
2020-11-10 15:57:14 +01:00
|
|
|
data.is_web_public = JSON.stringify(is_web_public);
|
2020-08-04 16:40:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
let message_retention_days = $(
|
|
|
|
"#stream_privacy_modal select[name=stream_message_retention_setting]",
|
|
|
|
).val();
|
|
|
|
if (message_retention_days === "retain_for_period") {
|
2020-10-07 09:17:30 +02:00
|
|
|
message_retention_days = Number.parseInt(
|
2020-08-04 16:40:46 +02:00
|
|
|
$("#stream_privacy_modal input[name=stream-message-retention-days]").val(),
|
|
|
|
10,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const message_retention_days_from_sub = get_message_retention_days_from_sub(sub);
|
|
|
|
|
|
|
|
if (message_retention_days_from_sub !== message_retention_days) {
|
2020-06-25 23:26:17 +02:00
|
|
|
data.message_retention_days = JSON.stringify(message_retention_days);
|
|
|
|
}
|
|
|
|
|
2020-08-04 16:40:46 +02:00
|
|
|
if (Object.keys(data).length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
settings_ui.do_settings_change(channel.patch, url, data, $status_element);
|
2017-04-24 04:11:25 +02:00
|
|
|
}
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
export function archive_stream(stream_id, $alert_element, $stream_row) {
|
2018-04-30 14:08:10 +02:00
|
|
|
channel.del({
|
2020-07-15 01:29:15 +02:00
|
|
|
url: "/json/streams/" + stream_id,
|
2020-07-20 22:18:43 +02:00
|
|
|
error(xhr) {
|
2022-01-25 11:36:19 +01:00
|
|
|
ui_report.error($t_html({defaultMessage: "Failed"}), xhr, $alert_element);
|
2018-04-30 14:08:10 +02:00
|
|
|
},
|
2020-07-20 22:18:43 +02:00
|
|
|
success() {
|
2022-01-25 11:36:19 +01:00
|
|
|
$stream_row.remove();
|
2018-04-30 14:08:10 +02:00
|
|
|
},
|
|
|
|
});
|
2021-02-28 00:55:38 +01:00
|
|
|
}
|
2018-04-30 14:08:10 +02:00
|
|
|
|
2021-02-28 00:55:38 +01:00
|
|
|
export function initialize() {
|
2020-07-02 01:45:54 +02:00
|
|
|
$("#main_div").on("click", ".stream_sub_unsub_button", (e) => {
|
2017-04-24 04:11:25 +02:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
2020-07-08 22:45:35 +02:00
|
|
|
const sub = narrow_state.stream_sub();
|
|
|
|
if (sub === undefined) {
|
2017-04-24 04:11:25 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-07-08 22:45:35 +02:00
|
|
|
|
2021-07-09 15:51:31 +02:00
|
|
|
stream_settings_ui.sub_or_unsub(sub);
|
2017-04-24 04:11:25 +02:00
|
|
|
});
|
|
|
|
|
2021-12-21 19:41:13 +01:00
|
|
|
$("#manage_streams_container").on("click", ".change-stream-privacy", (e) => {
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_id = get_stream_id(e.target);
|
2021-04-15 17:02:54 +02:00
|
|
|
const stream = sub_store.get(stream_id);
|
2020-07-10 14:25:21 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const template_data = {
|
2022-03-02 13:42:33 +01:00
|
|
|
ask_to_announce_stream: false,
|
2020-07-10 14:25:21 +02:00
|
|
|
stream_privacy_policy_values: stream_data.stream_privacy_policy_values,
|
|
|
|
stream_privacy_policy: stream_data.get_stream_privacy_policy(stream_id),
|
2020-02-04 21:50:55 +01:00
|
|
|
stream_post_policy_values: stream_data.stream_post_policy_values,
|
|
|
|
stream_post_policy: stream.stream_post_policy,
|
2020-06-25 23:26:17 +02:00
|
|
|
is_owner: page_params.is_owner,
|
2020-06-15 17:00:00 +02:00
|
|
|
zulip_plan_is_not_limited: page_params.zulip_plan_is_not_limited,
|
2020-07-15 00:34:28 +02:00
|
|
|
disable_message_retention_setting:
|
|
|
|
!page_params.zulip_plan_is_not_limited || !page_params.is_owner,
|
2020-06-15 17:00:00 +02:00
|
|
|
stream_message_retention_days: stream.message_retention_days,
|
2021-06-17 22:16:08 +02:00
|
|
|
org_level_message_retention_setting:
|
|
|
|
get_display_text_for_realm_message_retention_setting(),
|
2020-06-15 17:00:00 +02:00
|
|
|
upgrade_text_for_wide_organization_logo:
|
|
|
|
page_params.upgrade_text_for_wide_organization_logo,
|
2022-06-01 16:52:40 +02:00
|
|
|
is_business_type_org:
|
|
|
|
page_params.realm_org_type === settings_config.all_org_type_values.business.code,
|
2020-06-25 23:26:17 +02:00
|
|
|
is_stream_edit: true,
|
2022-07-15 02:09:49 +02:00
|
|
|
max_stream_name_length: page_params.max_stream_name_length,
|
2022-07-15 02:08:53 +02:00
|
|
|
max_stream_description_length: page_params.max_stream_description_length,
|
2017-04-24 04:11:25 +02:00
|
|
|
};
|
2021-07-20 14:53:33 +02:00
|
|
|
const change_privacy_modal = render_stream_types(template_data);
|
|
|
|
|
|
|
|
dialog_widget.launch({
|
|
|
|
html_heading: $t_html(
|
|
|
|
{defaultMessage: "Change stream permissions for #{stream_name}"},
|
|
|
|
{stream_name: stream.name},
|
|
|
|
),
|
|
|
|
html_body: change_privacy_modal,
|
|
|
|
close_on_submit: true,
|
|
|
|
id: "stream_privacy_modal",
|
|
|
|
on_click: change_stream_privacy,
|
|
|
|
post_render: () => {
|
|
|
|
$("#stream_privacy_modal .dialog_submit_button").attr("data-stream-id", stream_id);
|
|
|
|
set_stream_message_retention_setting_dropdown(stream);
|
|
|
|
|
stream_edit: Be more specific w/ ".stream_message_retention_setting".
The stream creation form also uses the same stream_types template as
the stream privacy modal, however, it currently does not setup its own
handler for displaying the "N:" input when
".stream_message_retention_setting" is changed.
Previously, if one opened the stream creation form, then opened the
stream edit modal, and then went back to the stream creation form, the
drop down would correctly also .show() the input, because the handler
here would also target that selector. This is incorrect since we can't
always expect the stream_edit modal to be opened first, stream_create
should set up its own handlers.
Hence, as a prep commit to fixing stream_creation, and to ensure we
don't add duplicate handlers, in this commit we change all selectors
that targeted ".stream_message_retention_setting" to
"#stream_privacy_modal .stream_message_retention_setting" in this
file.
2021-11-23 18:34:43 +01:00
|
|
|
$("#stream_privacy_modal .stream_message_retention_setting").on("change", (e) => {
|
2021-07-20 14:53:33 +02:00
|
|
|
const dropdown_value = e.target.value;
|
|
|
|
change_stream_message_retention_days_block_display_property(dropdown_value);
|
|
|
|
});
|
|
|
|
},
|
2021-11-19 10:29:39 +01:00
|
|
|
on_show: () => {
|
|
|
|
stream_settings_ui.hide_or_disable_stream_privacy_options_if_required(
|
|
|
|
$("#stream_privacy_modal"),
|
|
|
|
);
|
|
|
|
},
|
2021-07-20 14:53:33 +02:00
|
|
|
});
|
2019-06-06 20:45:30 +02:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
2017-04-24 04:11:25 +02:00
|
|
|
});
|
|
|
|
|
2021-12-21 19:41:13 +01:00
|
|
|
$("#manage_streams_container").on("click", "#open_stream_info_modal", (e) => {
|
2021-07-05 11:26:23 +02:00
|
|
|
e.preventDefault();
|
2018-05-31 19:20:23 +02:00
|
|
|
e.stopPropagation();
|
2021-07-05 11:26:23 +02:00
|
|
|
const stream_id = get_stream_id(e.target);
|
|
|
|
const stream = sub_store.get(stream_id);
|
|
|
|
const template_data = {
|
|
|
|
stream_name: stream.name,
|
|
|
|
stream_description: stream.description,
|
|
|
|
};
|
|
|
|
const change_stream_info_modal = render_change_stream_info_modal(template_data);
|
2021-07-17 16:44:31 +02:00
|
|
|
dialog_widget.launch({
|
|
|
|
html_heading: $t_html(
|
|
|
|
{defaultMessage: "Edit #{stream_name}"},
|
|
|
|
{stream_name: stream.name},
|
|
|
|
),
|
|
|
|
html_body: change_stream_info_modal,
|
|
|
|
id: "change_stream_info_modal",
|
|
|
|
on_click: save_stream_info,
|
|
|
|
post_render: () => {
|
|
|
|
$("#change_stream_info_modal .dialog_submit_button")
|
|
|
|
.addClass("save-button")
|
|
|
|
.attr("data-stream-id", stream_id);
|
|
|
|
},
|
|
|
|
});
|
2017-04-24 04:11:25 +02:00
|
|
|
});
|
|
|
|
|
2021-12-21 19:41:13 +01:00
|
|
|
$("#manage_streams_container").on("keypress", "#change_stream_description", (e) => {
|
2021-07-05 11:26:23 +02:00
|
|
|
// Stream descriptions can not be multiline, so disable enter key
|
|
|
|
// to prevent new line
|
|
|
|
if (e.key === "Enter") {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
2021-07-17 16:44:31 +02:00
|
|
|
function save_stream_info(e) {
|
2021-07-05 11:26:23 +02:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
const sub = get_sub_for_target(e.currentTarget);
|
|
|
|
|
|
|
|
const url = `/json/streams/${sub.stream_id}`;
|
|
|
|
const data = {};
|
|
|
|
const new_name = $("#change_stream_name").val().trim();
|
|
|
|
const new_description = $("#change_stream_description").val().trim();
|
|
|
|
|
|
|
|
if (new_name === sub.name && new_description === sub.description) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (new_name !== sub.name) {
|
|
|
|
data.new_name = new_name;
|
|
|
|
}
|
|
|
|
if (new_description !== sub.description) {
|
|
|
|
data.description = new_description;
|
|
|
|
}
|
|
|
|
|
2022-01-25 11:36:19 +01:00
|
|
|
const $status_element = $(".stream_change_property_info");
|
2021-07-17 16:44:31 +02:00
|
|
|
dialog_widget.close_modal();
|
2022-01-25 11:36:19 +01:00
|
|
|
settings_ui.do_settings_change(channel.patch, url, data, $status_element);
|
2021-07-17 16:44:31 +02:00
|
|
|
}
|
2021-07-05 11:26:23 +02:00
|
|
|
|
2021-12-21 19:41:13 +01:00
|
|
|
$("#manage_streams_container").on(
|
2021-07-05 11:26:23 +02:00
|
|
|
"click",
|
|
|
|
".close-modal-btn, .close-change-stream-info-modal",
|
|
|
|
(e) => {
|
|
|
|
// This fixes a weird bug in which, subscription_settings hides
|
|
|
|
// unexpectedly by clicking the cancel button in a modal on top of it.
|
|
|
|
e.stopPropagation();
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2021-12-21 19:41:13 +01:00
|
|
|
$("#manage_streams_container").on(
|
2020-07-22 00:43:11 +02:00
|
|
|
"change",
|
|
|
|
"#sub_is_muted_setting .sub_setting_control",
|
|
|
|
stream_is_muted_changed,
|
|
|
|
);
|
2019-06-14 15:41:28 +02:00
|
|
|
|
2021-12-21 19:41:13 +01:00
|
|
|
$("#manage_streams_container").on(
|
2020-07-22 00:43:11 +02:00
|
|
|
"change",
|
|
|
|
".sub_setting_checkbox .sub_setting_control",
|
2021-02-28 00:55:38 +01:00
|
|
|
stream_setting_changed,
|
2020-07-22 00:43:11 +02:00
|
|
|
);
|
2017-04-24 04:11:25 +02:00
|
|
|
|
|
|
|
// This handler isn't part of the normal edit interface; it's the convenient
|
|
|
|
// checkmark in the subscriber list.
|
2021-12-21 19:41:13 +01:00
|
|
|
$("#manage_streams_container").on("click", ".sub_unsub_button", (e) => {
|
2019-11-02 00:06:25 +01:00
|
|
|
const sub = get_sub_for_target(e.target);
|
2020-04-26 21:36:28 +02:00
|
|
|
// Makes sure we take the correct stream_row.
|
2022-01-25 11:36:19 +01:00
|
|
|
const $stream_row = $(
|
2021-12-21 19:41:13 +01:00
|
|
|
`#manage_streams_container div.stream-row[data-stream-id='${CSS.escape(
|
|
|
|
sub.stream_id,
|
|
|
|
)}']`,
|
2020-07-15 00:34:28 +02:00
|
|
|
);
|
2022-01-25 11:36:19 +01:00
|
|
|
stream_settings_ui.sub_or_unsub(sub, $stream_row);
|
2020-04-23 23:49:50 +02:00
|
|
|
|
2017-04-24 04:11:25 +02:00
|
|
|
if (!sub.subscribed) {
|
2022-01-25 11:36:19 +01:00
|
|
|
open_edit_panel_for_row($stream_row);
|
2017-04-24 04:11:25 +02:00
|
|
|
}
|
2019-04-02 18:37:24 +02:00
|
|
|
stream_ui_updates.update_regular_sub_settings(sub);
|
2017-04-24 04:11:25 +02:00
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
});
|
|
|
|
|
2021-12-21 19:41:13 +01:00
|
|
|
$("#manage_streams_container").on("click", ".deactivate", (e) => {
|
2018-02-13 11:47:17 +01:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_id = get_stream_id(e.target);
|
2018-02-13 11:47:17 +01:00
|
|
|
if (!stream_id) {
|
2021-04-13 05:18:25 +02:00
|
|
|
ui_report.client_error(
|
2022-05-27 14:04:40 +02:00
|
|
|
$t_html({defaultMessage: "Invalid stream ID"}),
|
2021-04-13 05:18:25 +02:00
|
|
|
$(".stream_change_property_info"),
|
|
|
|
);
|
2018-02-13 11:47:17 +01:00
|
|
|
return;
|
|
|
|
}
|
2021-05-26 18:27:48 +02:00
|
|
|
|
|
|
|
function do_archive_stream() {
|
2021-07-05 12:41:37 +02:00
|
|
|
const stream_id = $(".dialog_submit_button").data("stream-id");
|
2021-05-26 18:27:48 +02:00
|
|
|
if (!stream_id) {
|
|
|
|
ui_report.client_error(
|
2022-05-27 14:04:40 +02:00
|
|
|
$t_html({defaultMessage: "Invalid stream ID"}),
|
2021-05-26 18:27:48 +02:00
|
|
|
$(".stream_change_property_info"),
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
2022-01-25 11:36:19 +01:00
|
|
|
const $row = $(".stream-row.active");
|
|
|
|
archive_stream(stream_id, $(".stream_change_property_info"), $row);
|
2021-05-26 18:27:48 +02:00
|
|
|
}
|
|
|
|
|
2022-08-04 19:41:55 +02:00
|
|
|
const stream = sub_store.get(stream_id);
|
|
|
|
const stream_privacy_symbol_html = render_stream_privacy({
|
|
|
|
invite_only: stream.invite_only,
|
|
|
|
is_web_public: stream.is_web_public,
|
|
|
|
});
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_name = stream_data.maybe_get_stream_name(stream_id);
|
2021-05-26 18:27:48 +02:00
|
|
|
const html_body = render_settings_deactivation_stream_modal({
|
2020-07-20 22:18:43 +02:00
|
|
|
stream_name,
|
2022-08-04 19:41:55 +02:00
|
|
|
stream_privacy_symbol_html,
|
2019-06-12 21:01:38 +02:00
|
|
|
});
|
2018-02-13 11:47:17 +01:00
|
|
|
|
2021-05-26 18:27:48 +02:00
|
|
|
confirm_dialog.launch({
|
|
|
|
html_heading: $t_html(
|
2022-08-04 19:41:55 +02:00
|
|
|
{defaultMessage: "Archive <z-link></z-link>{stream}?"},
|
|
|
|
{stream: stream_name, "z-link": () => stream_privacy_symbol_html},
|
2021-05-26 18:27:48 +02:00
|
|
|
),
|
2022-08-04 19:41:55 +02:00
|
|
|
id: "archive-stream-modal",
|
2021-05-26 18:27:48 +02:00
|
|
|
help_link: "/help/archive-a-stream",
|
|
|
|
html_body,
|
|
|
|
on_click: do_archive_stream,
|
|
|
|
});
|
|
|
|
|
2021-07-05 12:41:37 +02:00
|
|
|
$(".dialog_submit_button").attr("data-stream-id", stream_id);
|
2018-02-13 11:47:17 +01:00
|
|
|
});
|
|
|
|
|
2021-12-21 19:41:13 +01:00
|
|
|
$("#manage_streams_container").on("click", ".stream-row", function (e) {
|
2017-04-24 04:11:25 +02:00
|
|
|
if ($(e.target).closest(".check, .subscription_settings").length === 0) {
|
2021-02-28 00:55:38 +01:00
|
|
|
open_edit_panel_for_row(this);
|
2017-04-24 04:11:25 +02:00
|
|
|
}
|
|
|
|
});
|
2021-02-28 00:55:38 +01:00
|
|
|
}
|