2020-02-28 23:59:07 +01:00
|
|
|
const util = require("./util");
|
2019-11-02 00:06:25 +01:00
|
|
|
const render_settings_deactivation_stream_modal = require("../templates/settings/deactivation_stream_modal.hbs");
|
|
|
|
const render_stream_member_list_entry = require('../templates/stream_member_list_entry.hbs');
|
|
|
|
const render_subscription_settings = require('../templates/subscription_settings.hbs');
|
|
|
|
const render_subscription_stream_privacy_modal = require("../templates/subscription_stream_privacy_modal.hbs");
|
2020-03-08 18:45:44 +01:00
|
|
|
const settings_data = require("./settings_data");
|
2020-04-01 19:43:34 +02:00
|
|
|
const settings_config = require("./settings_config");
|
2019-07-09 21:24:00 +02:00
|
|
|
|
2017-10-03 00:15:42 +02:00
|
|
|
function setup_subscriptions_stream_hash(sub) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const hash = hash_util.stream_edit_uri(sub);
|
2018-12-01 20:15:50 +01:00
|
|
|
hashchange.update_browser_history(hash);
|
2017-04-24 04:11:25 +02:00
|
|
|
}
|
|
|
|
|
2020-03-08 18:45:44 +01:00
|
|
|
function compare_by_email(a, b) {
|
|
|
|
if (a.delivery_email && b.delivery_email) {
|
|
|
|
return a.delivery_email.localeCompare(b.delivery_email);
|
|
|
|
}
|
|
|
|
return a.email.localeCompare(b.email);
|
|
|
|
}
|
|
|
|
|
|
|
|
function compare_by_name(a, b) {
|
|
|
|
return a.full_name.localeCompare(b.full_name);
|
|
|
|
}
|
|
|
|
|
2019-04-06 12:55:16 +02:00
|
|
|
exports.setup_subscriptions_tab_hash = function (tab_key_value) {
|
|
|
|
if (tab_key_value === "all-streams") {
|
|
|
|
hashchange.update_browser_history('#streams/all');
|
|
|
|
} else if (tab_key_value === "subscribed") {
|
|
|
|
hashchange.update_browser_history('#streams/subscribed');
|
|
|
|
} else {
|
|
|
|
blueslip.debug("Unknown tab_key_value: " + tab_key_value);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-05-02 19:10:10 +02:00
|
|
|
exports.settings_for_sub = function (sub) {
|
2020-01-16 22:27:27 +01:00
|
|
|
return $("#subscription_overlay .subscription_settings[data-stream-id='" + sub.stream_id + "']");
|
2019-05-02 19:10:10 +02:00
|
|
|
};
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2018-04-06 06:48:46 +02:00
|
|
|
exports.is_sub_settings_active = function (sub) {
|
2018-04-10 15:49:03 +02:00
|
|
|
// This function return whether the provided given sub object is
|
|
|
|
// currently being viewed/edited in the stream edit UI. This is
|
|
|
|
// used to determine whether we need to rerender the stream edit
|
|
|
|
// UI when a sub object is modified by an event.
|
2019-11-02 00:06:25 +01:00
|
|
|
const active_stream = subs.active_stream();
|
2018-04-06 06:48:46 +02:00
|
|
|
if (active_stream !== undefined && active_stream.id === sub.stream_id) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2020-03-08 18:45:44 +01:00
|
|
|
exports.get_users_from_subscribers = function (subscribers) {
|
2020-07-02 01:45:54 +02:00
|
|
|
return subscribers.map((user_id) => people.get_by_user_id(user_id));
|
2017-10-11 23:45:03 +02:00
|
|
|
};
|
2017-06-17 22:29:11 +02:00
|
|
|
|
2020-06-16 13:59:02 +02:00
|
|
|
exports.get_retention_policy_text_for_subscription_type = function (sub) {
|
|
|
|
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-06-26 00:10:17 +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-06-16 13:59:02 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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) {
|
2020-06-16 13:59:02 +02:00
|
|
|
return i18n.t("Messages in this stream will be retained forever.");
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we are deleting messages, even if it's the organization
|
|
|
|
// default, it's worth commenting on the policy.
|
|
|
|
if (message_retention_days === null) {
|
|
|
|
message_retention_days = page_params.realm_message_retention_days;
|
|
|
|
}
|
|
|
|
|
|
|
|
return i18n.t("Messages in this stream will be automatically deleted after __retention_days__ days.", {retention_days: message_retention_days});
|
|
|
|
};
|
|
|
|
|
2020-06-15 17:00:00 +02:00
|
|
|
exports.get_display_text_for_realm_message_retention_setting = function () {
|
|
|
|
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) {
|
2020-06-15 17:00:00 +02:00
|
|
|
return i18n.t("(forever)");
|
|
|
|
}
|
|
|
|
return i18n.t("(__message_retention_days__ days)", {message_retention_days: realm_message_retention_days});
|
|
|
|
};
|
|
|
|
|
|
|
|
function change_stream_message_retention_days_block_display_property(value) {
|
|
|
|
if (value === "retain_for_period") {
|
|
|
|
$('.stream-message-retention-days-input').show();
|
|
|
|
} else {
|
|
|
|
$('.stream-message-retention-days-input').hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
2020-06-15 17:00:00 +02:00
|
|
|
value = "forever";
|
|
|
|
}
|
|
|
|
|
|
|
|
$(".stream_message_retention_setting").val(value);
|
|
|
|
change_stream_message_retention_days_block_display_property(value);
|
|
|
|
}
|
|
|
|
|
2018-12-01 21:53:09 +01:00
|
|
|
function clear_edit_panel() {
|
2017-04-24 04:11:25 +02:00
|
|
|
$(".display-type #add_new_stream_title").hide();
|
|
|
|
$(".display-type #stream_settings_title, .right .settings").show();
|
|
|
|
$(".stream-row.active").removeClass("active");
|
2018-12-01 21:53:09 +01:00
|
|
|
}
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2019-04-03 07:14:10 +02:00
|
|
|
function get_stream_id(target) {
|
|
|
|
if (target.constructor !== jQuery) {
|
|
|
|
target = $(target);
|
|
|
|
}
|
2019-12-30 12:51:16 +01:00
|
|
|
const row = target.closest(".stream-row, .subscription_settings");
|
|
|
|
return 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) {
|
|
|
|
blueslip.error('Cannot find stream id for target');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const sub = stream_data.get_sub_by_id(stream_id);
|
2019-04-03 07:14:10 +02:00
|
|
|
if (!sub) {
|
|
|
|
blueslip.error('get_sub_for_target() failed id lookup: ' + stream_id);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
return sub;
|
|
|
|
}
|
|
|
|
|
2018-12-01 21:53:09 +01:00
|
|
|
exports.open_edit_panel_for_row = function (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
|
|
|
|
2018-12-01 21:53:09 +01:00
|
|
|
clear_edit_panel();
|
|
|
|
subs.show_subs_pane.settings();
|
|
|
|
$(stream_row).addClass("active");
|
2019-04-03 07:14:10 +02:00
|
|
|
setup_subscriptions_stream_hash(sub);
|
2019-10-25 09:45:13 +02:00
|
|
|
exports.show_settings_for(stream_row);
|
2018-12-01 21:53:09 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.open_edit_panel_empty = function () {
|
2019-11-02 00:06:25 +01:00
|
|
|
const tab_key = subs.get_active_data().tab.attr("data-tab-key");
|
2018-12-01 21:53:09 +01:00
|
|
|
clear_edit_panel();
|
|
|
|
subs.show_subs_pane.nothing_selected();
|
2019-04-06 13:30:12 +02:00
|
|
|
exports.setup_subscriptions_tab_hash(tab_key);
|
2017-04-24 04:11:25 +02:00
|
|
|
};
|
|
|
|
|
2020-03-08 18:45:44 +01:00
|
|
|
function format_member_list_elem(person) {
|
2019-07-09 21:24:00 +02:00
|
|
|
return render_stream_member_list_entry({
|
2020-03-08 20:37:48 +01:00
|
|
|
name: person.full_name,
|
|
|
|
user_id: person.user_id,
|
2020-03-08 18:45:44 +01:00
|
|
|
email: settings_data.email_for_user_settings(person),
|
2019-07-09 21:24:00 +02:00
|
|
|
displaying_for_admin: page_params.is_admin,
|
2020-03-08 18:45:44 +01:00
|
|
|
show_email: settings_data.show_email(),
|
2019-07-09 21:24:00 +02:00
|
|
|
});
|
2017-04-24 04:11:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function get_subscriber_list(sub_row) {
|
2020-01-16 22:27:27 +01:00
|
|
|
const stream_id_str = sub_row.data("stream-id");
|
|
|
|
return $('.subscription_settings[data-stream-id="' + stream_id_str + '"] .subscriber-list');
|
2017-04-24 04:11:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
exports.update_stream_name = function (sub, new_name) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const sub_settings = exports.settings_for_sub(sub);
|
2017-04-24 04:11:25 +02:00
|
|
|
sub_settings.find(".email-address").text(sub.email_address);
|
|
|
|
sub_settings.find(".stream-name-editable").text(new_name);
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.update_stream_description = function (sub) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_settings = exports.settings_for_sub(sub);
|
2017-04-24 04:11:25 +02:00
|
|
|
stream_settings.find('input.description').val(sub.description);
|
2020-02-28 23:59:07 +01:00
|
|
|
stream_settings.find('.stream-description-editable').html(
|
2020-07-02 02:16:03 +02:00
|
|
|
util.clean_user_content_links(sub.rendered_description),
|
2020-02-28 23:59:07 +01:00
|
|
|
);
|
2017-04-24 04:11:25 +02:00
|
|
|
};
|
|
|
|
|
2020-06-03 21:38:43 +02:00
|
|
|
exports.invite_user_to_stream = function (user_ids, sub, success, failure) {
|
2017-04-24 04:11:25 +02:00
|
|
|
// TODO: use stream_id when backend supports it
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_name = sub.name;
|
2017-04-24 04:11:25 +02:00
|
|
|
return channel.post({
|
|
|
|
url: "/json/users/me/subscriptions",
|
|
|
|
data: {subscriptions: JSON.stringify([{name: stream_name}]),
|
2020-06-03 21:38:43 +02:00
|
|
|
principals: JSON.stringify(user_ids)},
|
2017-04-24 04:11:25 +02:00
|
|
|
success: success,
|
|
|
|
error: failure,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2020-06-21 18:46:53 +02:00
|
|
|
function submit_add_subscriber_form(e) {
|
|
|
|
const settings_row = $(e.target).closest('.subscription_settings');
|
|
|
|
const sub = get_sub_for_target(settings_row);
|
|
|
|
if (!sub) {
|
|
|
|
blueslip.error('.subscriber_list_add form submit fails');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const user_ids = user_pill.get_user_ids(exports.pill_widget);
|
|
|
|
const stream_subscription_info_elem = $('.stream_subscription_info').expectOne();
|
|
|
|
|
|
|
|
if (user_ids.length === 0) {
|
|
|
|
stream_subscription_info_elem.text(i18n.t("No user to subscribe."))
|
|
|
|
.addClass("text-error").removeClass("text-success");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
function invite_success(data) {
|
|
|
|
exports.pill_widget.clear();
|
|
|
|
if (!Object.entries(data.already_subscribed).length) {
|
|
|
|
stream_subscription_info_elem.text(i18n.t("Subscribed successfully!"));
|
|
|
|
// The rest of the work is done via the subscription -> add event we will get
|
|
|
|
} else {
|
|
|
|
stream_subscription_info_elem.text(i18n.t("User already subscribed."));
|
|
|
|
const already_subscribed_users = Object.keys(data.already_subscribed).join(', ');
|
|
|
|
stream_subscription_info_elem.text(i18n.t(
|
|
|
|
" __already_subscribed_users__ are already subscribed.", {already_subscribed_users: already_subscribed_users}));
|
|
|
|
}
|
|
|
|
stream_subscription_info_elem.addClass("text-success")
|
|
|
|
.removeClass("text-error");
|
|
|
|
}
|
|
|
|
|
|
|
|
function invite_failure(xhr) {
|
|
|
|
const error = JSON.parse(xhr.responseText);
|
|
|
|
stream_subscription_info_elem.text(error.msg)
|
|
|
|
.addClass("text-error").removeClass("text-success");
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.invite_user_to_stream(user_ids, sub, invite_success, invite_failure);
|
|
|
|
}
|
|
|
|
|
2020-06-03 21:38:43 +02:00
|
|
|
exports.remove_user_from_stream = function (user_id, sub, success, failure) {
|
2017-04-24 04:11:25 +02:00
|
|
|
// TODO: use stream_id when backend supports it
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_name = sub.name;
|
2017-04-24 04:11:25 +02:00
|
|
|
return channel.del({
|
|
|
|
url: "/json/users/me/subscriptions",
|
|
|
|
data: {subscriptions: JSON.stringify([stream_name]),
|
2020-06-03 21:38:43 +02:00
|
|
|
principals: JSON.stringify([user_id])},
|
2017-04-24 04:11:25 +02:00
|
|
|
success: success,
|
|
|
|
error: failure,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2020-03-08 18:45:44 +01:00
|
|
|
exports.sort_but_pin_current_user_on_top = function (users) {
|
|
|
|
if (users === undefined) {
|
|
|
|
blueslip.error("Undefined users are passed to function sort_but_pin_current_user_on_top");
|
2018-04-10 16:54:36 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-03-08 18:45:44 +01:00
|
|
|
|
|
|
|
const my_user = people.get_by_email(people.my_current_email());
|
|
|
|
let compare_function;
|
|
|
|
if (settings_data.show_email()) {
|
|
|
|
compare_function = compare_by_email;
|
|
|
|
} else {
|
|
|
|
compare_function = compare_by_name;
|
|
|
|
}
|
|
|
|
if (users.includes(my_user)) {
|
|
|
|
users.splice(users.indexOf(my_user), 1);
|
|
|
|
users.sort(compare_function);
|
|
|
|
users.unshift(my_user);
|
2018-04-10 16:54:36 +02:00
|
|
|
} else {
|
2020-03-08 18:45:44 +01:00
|
|
|
users.sort(compare_function);
|
2018-04-10 16:54:36 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-04-24 04:11:25 +02:00
|
|
|
function show_subscription_settings(sub_row) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_id = sub_row.data("stream-id");
|
|
|
|
const sub = stream_data.get_sub_by_id(stream_id);
|
|
|
|
const sub_settings = exports.settings_for_sub(sub);
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const colorpicker = sub_settings.find('.colorpicker');
|
|
|
|
const color = stream_data.get_color(sub.name);
|
2017-04-24 04:11:25 +02: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
|
|
|
|
2020-04-11 21:49:51 +02:00
|
|
|
const container = $("#subscription_overlay .subscription_settings[data-stream-id='" + stream_id + "'] .pill-container");
|
|
|
|
exports.pill_widget = input_pill.create({
|
|
|
|
container: container,
|
|
|
|
create_item_from_text: user_pill.create_item_from_email,
|
|
|
|
get_text_from_item: user_pill.get_email_from_item,
|
|
|
|
});
|
|
|
|
|
2018-03-11 15:05:59 +01:00
|
|
|
if (!sub.render_subscribers) {
|
2017-04-24 04:11:25 +02:00
|
|
|
return;
|
|
|
|
}
|
2019-05-06 14:35:57 +02:00
|
|
|
if (!sub.should_display_subscription_button) {
|
|
|
|
stream_ui_updates.initialize_cant_subscribe_popover(sub);
|
|
|
|
}
|
2017-04-24 04:11:25 +02:00
|
|
|
// fetch subscriber list from memory.
|
2019-11-02 00:06:25 +01:00
|
|
|
const list = get_subscriber_list(sub_settings);
|
2017-04-24 04:11:25 +02:00
|
|
|
list.empty();
|
|
|
|
|
2020-03-08 18:45:44 +01:00
|
|
|
const users = exports.get_users_from_subscribers(sub.subscribers);
|
|
|
|
exports.sort_but_pin_current_user_on_top(users);
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2020-04-11 21:49:51 +02:00
|
|
|
function get_users_for_subscriber_typeahead() {
|
|
|
|
const potential_subscribers = stream_data.potential_subscribers(sub);
|
|
|
|
return user_pill.filter_taken_users(potential_subscribers, exports.pill_widget);
|
|
|
|
}
|
|
|
|
|
2020-03-08 18:45:44 +01:00
|
|
|
list_render.create(list, users, {
|
2017-04-17 23:21:37 +02:00
|
|
|
name: "stream_subscribers/" + stream_id,
|
|
|
|
modifier: function (item) {
|
|
|
|
return format_member_list_elem(item);
|
|
|
|
},
|
|
|
|
filter: {
|
|
|
|
element: $("[data-stream-id='" + stream_id + "'] .search"),
|
2019-12-30 17:44:24 +01:00
|
|
|
predicate: function (item, value) {
|
2020-03-08 18:45:44 +01:00
|
|
|
const person = item;
|
2017-04-17 23:21:37 +02:00
|
|
|
|
|
|
|
if (person) {
|
2020-03-08 18:45:44 +01:00
|
|
|
if (person.email.toLocaleLowerCase().includes(value) &&
|
|
|
|
settings_data.show_email()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return person.full_name.toLowerCase().includes(value);
|
2017-04-17 23:21:37 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
2020-04-11 16:23:29 +02:00
|
|
|
});
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2020-04-11 21:49:51 +02:00
|
|
|
user_pill.set_up_typeahead_on_pills(sub_settings.find('.input'),
|
|
|
|
exports.pill_widget,
|
2020-07-02 01:45:54 +02:00
|
|
|
() => {},
|
2020-04-11 21:49:51 +02:00
|
|
|
get_users_for_subscriber_typeahead);
|
2017-04-24 04:11:25 +02:00
|
|
|
}
|
|
|
|
|
2019-06-14 14:42:48 +02:00
|
|
|
exports.is_notification_setting = function (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;
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.stream_settings = function (sub) {
|
2020-04-01 19:43:34 +02:00
|
|
|
const settings_labels = settings_config.general_notifications_table_labels.stream;
|
|
|
|
const check_realm_setting = settings_config.all_notifications().show_push_notifications_tooltip;
|
|
|
|
|
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],
|
2020-01-27 13:18:04 +01:00
|
|
|
is_notification_setting: exports.is_notification_setting(setting),
|
|
|
|
};
|
2019-06-14 14:42:48 +02:00
|
|
|
if (exports.is_notification_setting(setting)) {
|
2020-01-27 18:42:35 +01:00
|
|
|
ret.is_checked = sub[setting + "_display"] && !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;
|
|
|
|
};
|
|
|
|
|
2017-04-24 04:11:25 +02:00
|
|
|
exports.show_settings_for = function (node) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_id = get_stream_id(node);
|
|
|
|
const sub = stream_data.get_sub_by_id(stream_id);
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2017-05-10 20:02:21 +02:00
|
|
|
stream_data.update_calculated_fields(sub);
|
2019-11-02 00:06:25 +01:00
|
|
|
const html = render_subscription_settings({
|
2019-06-14 14:42:48 +02:00
|
|
|
sub: sub,
|
|
|
|
settings: exports.stream_settings(sub),
|
2020-02-04 21:50:55 +01:00
|
|
|
stream_post_policy_values: stream_data.stream_post_policy_values,
|
2020-06-16 13:59:02 +02:00
|
|
|
message_retention_text: exports.get_retention_policy_text_for_subscription_type(sub),
|
2019-06-14 14:42:48 +02:00
|
|
|
});
|
2019-03-01 01:40:05 +01:00
|
|
|
ui.get_content_element($('.subscriptions .right .settings')).html(html);
|
2017-05-10 20:02:21 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const sub_settings = exports.settings_for_sub(sub);
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2017-05-10 20:02:21 +02:00
|
|
|
$(".nothing-selected").hide();
|
2017-07-28 14:07:58 +02:00
|
|
|
|
2017-04-24 04:11:25 +02:00
|
|
|
sub_settings.addClass("show");
|
|
|
|
|
2017-05-10 20:02:21 +02:00
|
|
|
show_subscription_settings(sub_settings);
|
2017-04-24 04:11:25 +02:00
|
|
|
};
|
|
|
|
|
2019-05-21 10:46:42 +02:00
|
|
|
function stream_is_muted_clicked(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) {
|
2019-05-21 10:46:42 +02:00
|
|
|
blueslip.error('stream_is_muted_clicked() fails');
|
2017-04-24 04:11:25 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const sub_settings = exports.settings_for_sub(sub);
|
|
|
|
const notification_checkboxes = sub_settings.find(".sub_notification_setting");
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2020-05-24 13:43:22 +02:00
|
|
|
subs.toggle_home(sub, `#stream_change_property_status${sub.stream_id}`);
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2019-05-15 08:54:25 +02:00
|
|
|
if (!sub.is_muted) {
|
2017-04-24 04:11:25 +02:00
|
|
|
sub_settings.find(".mute-note").addClass("hide-mute-note");
|
|
|
|
notification_checkboxes.removeClass("muted-sub");
|
2017-06-30 00:57:46 +02:00
|
|
|
notification_checkboxes.find("input[type='checkbox']").prop("disabled", false);
|
2017-04-24 04:11:25 +02:00
|
|
|
} else {
|
|
|
|
sub_settings.find(".mute-note").removeClass("hide-mute-note");
|
|
|
|
notification_checkboxes.addClass("muted-sub");
|
|
|
|
notification_checkboxes.find("input[type='checkbox']").attr("disabled", true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-12 17:40:38 +01:00
|
|
|
exports.stream_setting_clicked = function (e) {
|
2020-02-04 11:46:36 +01:00
|
|
|
if (e.currentTarget.id === 'sub_is_muted_setting') {
|
|
|
|
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-03-12 17:40:38 +01:00
|
|
|
let checkbox = $(e.currentTarget).find('.sub_setting_control');
|
2020-04-06 19:31:58 +02:00
|
|
|
let status_element = "#stream_change_property_status" + sub.stream_id;
|
2020-03-12 17:40:38 +01:00
|
|
|
// sub data is being changed from the notification settings page.
|
|
|
|
if (checkbox.length === 0) {
|
|
|
|
checkbox = $(e.currentTarget);
|
2020-03-28 11:16:11 +01:00
|
|
|
status_element = checkbox.closest('.subsection-parent').find('.alert-notification');
|
2020-03-12 17:40:38 +01:00
|
|
|
}
|
2019-11-02 00:06:25 +01:00
|
|
|
const setting = checkbox.attr('name');
|
2019-06-14 15:41:28 +02:00
|
|
|
if (!sub) {
|
|
|
|
blueslip.error('undefined sub in stream_setting_clicked()');
|
|
|
|
return;
|
|
|
|
}
|
2019-06-24 10:16:02 +02:00
|
|
|
if (checkbox.prop('disabled')) {
|
|
|
|
return false;
|
|
|
|
}
|
2019-06-14 15:41:28 +02:00
|
|
|
if (exports.is_notification_setting(setting) && sub[setting] === null) {
|
2019-11-26 02:37:12 +01:00
|
|
|
if (setting === 'wildcard_mentions_notify') {
|
|
|
|
sub[setting] = page_params[setting];
|
|
|
|
} else {
|
|
|
|
sub[setting] = page_params["enable_stream_" + setting];
|
|
|
|
}
|
2019-06-14 15:41:28 +02:00
|
|
|
}
|
2020-03-28 11:16:11 +01:00
|
|
|
exports.set_stream_property(sub, setting, !sub[setting], status_element);
|
2020-03-12 17:40:38 +01:00
|
|
|
};
|
2019-06-14 15:41:28 +02:00
|
|
|
|
2020-03-28 11:16:11 +01:00
|
|
|
exports.bulk_set_stream_property = function (sub_data, status_element) {
|
|
|
|
const url = '/json/users/me/subscriptions/properties';
|
|
|
|
const data = {subscription_data: JSON.stringify(sub_data)};
|
|
|
|
if (!status_element) {
|
2020-04-06 19:31:58 +02:00
|
|
|
return channel.post({
|
|
|
|
url: url,
|
|
|
|
data: data,
|
|
|
|
timeout: 10 * 1000,
|
|
|
|
});
|
2020-03-28 11:16:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
settings_ui.do_settings_change(channel.post, url, data, status_element);
|
2017-04-24 04:11:25 +02:00
|
|
|
};
|
|
|
|
|
2020-03-28 11:16:11 +01:00
|
|
|
exports.set_stream_property = function (sub, property, value, status_element) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const sub_data = {stream_id: sub.stream_id, property: property, value: value};
|
2020-03-28 11:16:11 +01:00
|
|
|
exports.bulk_set_stream_property([sub_data], status_element);
|
2018-02-14 14:53:10 +01:00
|
|
|
};
|
|
|
|
|
2017-04-24 04:11:25 +02:00
|
|
|
function change_stream_privacy(e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_id = $(e.target).data("stream-id");
|
|
|
|
const sub = stream_data.get_sub_by_id(stream_id);
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const privacy_setting = $('#stream_privacy_modal input[name=privacy]:checked').val();
|
2020-02-04 21:50:55 +01:00
|
|
|
const stream_post_policy = parseInt($('#stream_privacy_modal input[name=stream-post-policy]:checked').val(), 10);
|
2018-05-03 18:52:39 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
let invite_only;
|
|
|
|
let history_public_to_subscribers;
|
2018-05-03 18:52:39 +02:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-01-03 14:24:49 +01:00
|
|
|
$(".stream_change_property_info").hide();
|
2019-11-02 00:06:25 +01:00
|
|
|
const data = {
|
2017-04-24 04:11:25 +02:00
|
|
|
stream_name: sub.name,
|
|
|
|
// toggle the privacy setting
|
2018-05-03 18:52:39 +02:00
|
|
|
is_private: JSON.stringify(invite_only),
|
2020-02-04 21:50:55 +01:00
|
|
|
stream_post_policy: JSON.stringify(stream_post_policy),
|
2018-05-03 18:52:39 +02:00
|
|
|
history_public_to_subscribers: JSON.stringify(history_public_to_subscribers),
|
2017-04-24 04:11:25 +02:00
|
|
|
};
|
|
|
|
|
2020-06-25 23:26:17 +02:00
|
|
|
if (page_params.is_owner) {
|
|
|
|
let message_retention_days = $('#stream_privacy_modal select[name=stream_message_retention_setting]').val();
|
|
|
|
if (message_retention_days === 'retain_for_period') {
|
|
|
|
message_retention_days = parseInt($('#stream_privacy_modal input[name=stream-message-retention-days]').val(), 10);
|
|
|
|
}
|
|
|
|
data.message_retention_days = JSON.stringify(message_retention_days);
|
|
|
|
}
|
|
|
|
|
2017-04-24 04:11:25 +02:00
|
|
|
channel.patch({
|
|
|
|
url: "/json/streams/" + stream_id,
|
|
|
|
data: data,
|
|
|
|
success: function () {
|
2020-05-09 15:45:54 +02:00
|
|
|
overlays.close_modal('#stream_privacy_modal');
|
2017-04-24 04:11:25 +02:00
|
|
|
$("#stream_privacy_modal").remove();
|
2019-05-02 19:43:27 +02:00
|
|
|
// The rest will be done by update stream event we will get.
|
2017-04-24 04:11:25 +02:00
|
|
|
},
|
|
|
|
error: function () {
|
|
|
|
$("#change-stream-privacy-button").text(i18n.t("Try again"));
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.change_stream_name = function (e) {
|
|
|
|
e.preventDefault();
|
2019-11-02 00:06:25 +01:00
|
|
|
const sub_settings = $(e.target).closest('.subscription_settings');
|
2020-02-25 08:43:52 +01:00
|
|
|
const stream_id = get_stream_id(e.target);
|
2019-11-02 00:06:25 +01:00
|
|
|
const new_name_box = sub_settings.find('.stream-name-editable');
|
|
|
|
const new_name = $.trim(new_name_box.text());
|
2018-01-03 14:24:49 +01:00
|
|
|
$(".stream_change_property_info").hide();
|
2017-04-24 04:11:25 +02:00
|
|
|
|
|
|
|
channel.patch({
|
|
|
|
// Stream names might contain unsafe characters so we must encode it first.
|
|
|
|
url: "/json/streams/" + stream_id,
|
|
|
|
data: {new_name: JSON.stringify(new_name)},
|
|
|
|
success: function () {
|
|
|
|
new_name_box.val('');
|
2018-01-03 14:24:49 +01:00
|
|
|
ui_report.success(i18n.t("The stream has been renamed!"), $(".stream_change_property_info"));
|
2017-04-24 04:11:25 +02:00
|
|
|
},
|
|
|
|
error: function (xhr) {
|
2018-01-04 19:20:30 +01:00
|
|
|
new_name_box.text(stream_data.maybe_get_stream_name(stream_id));
|
2018-04-30 09:55:35 +02:00
|
|
|
ui_report.error(i18n.t("Error"), xhr, $(".stream_change_property_info"));
|
2017-04-24 04:11:25 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2019-02-07 08:22:14 +01:00
|
|
|
exports.set_raw_description = function (target, destination) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const sub_settings = $(target).closest('.subscription_settings');
|
|
|
|
const sub = get_sub_for_target(sub_settings);
|
2019-02-07 08:22:14 +01:00
|
|
|
if (!sub) {
|
|
|
|
blueslip.error('set_raw_description() fails');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
destination.text(sub.description);
|
|
|
|
};
|
|
|
|
|
2017-04-24 04:11:25 +02:00
|
|
|
exports.change_stream_description = function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const sub_settings = $(e.target).closest('.subscription_settings');
|
|
|
|
const sub = get_sub_for_target(sub_settings);
|
2017-04-24 04:11:25 +02:00
|
|
|
if (!sub) {
|
|
|
|
blueslip.error('change_stream_description() fails');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_id = sub.stream_id;
|
|
|
|
const description = sub_settings.find('.stream-description-editable').text().trim();
|
2018-01-03 14:24:49 +01:00
|
|
|
$(".stream_change_property_info").hide();
|
2017-04-24 04:11:25 +02:00
|
|
|
|
|
|
|
channel.patch({
|
2018-05-05 07:26:27 +02:00
|
|
|
// Description might contain unsafe characters so we must encode it first.
|
2017-04-24 04:11:25 +02:00
|
|
|
url: '/json/streams/' + stream_id,
|
|
|
|
data: {
|
|
|
|
description: JSON.stringify(description),
|
|
|
|
},
|
|
|
|
success: function () {
|
|
|
|
// The event from the server will update the rest of the UI
|
|
|
|
ui_report.success(i18n.t("The stream description has been updated!"),
|
2018-05-06 21:43:17 +02:00
|
|
|
$(".stream_change_property_info"));
|
2017-04-24 04:11:25 +02:00
|
|
|
},
|
|
|
|
error: function (xhr) {
|
2020-02-28 23:59:07 +01:00
|
|
|
sub_settings.find('.stream-description-editable').html(
|
2020-07-02 02:16:03 +02:00
|
|
|
util.clean_user_content_links(sub.rendered_description),
|
2020-02-28 23:59:07 +01:00
|
|
|
);
|
2018-04-30 09:55:35 +02:00
|
|
|
ui_report.error(i18n.t("Error"), xhr, $(".stream_change_property_info"));
|
2017-04-24 04:11:25 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-04-30 14:08:10 +02:00
|
|
|
exports.delete_stream = function (stream_id, alert_element, stream_row) {
|
|
|
|
channel.del({
|
|
|
|
url: '/json/streams/' + stream_id,
|
|
|
|
error: function (xhr) {
|
|
|
|
ui_report.error(i18n.t("Failed"), xhr, alert_element);
|
|
|
|
},
|
|
|
|
success: function () {
|
|
|
|
stream_row.remove();
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-05-15 22:03:14 +02:00
|
|
|
exports.initialize = function () {
|
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();
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_name = narrow_state.stream();
|
2017-04-24 04:11:25 +02:00
|
|
|
if (stream_name === undefined) {
|
|
|
|
return;
|
|
|
|
}
|
2019-11-02 00:06:25 +01:00
|
|
|
const sub = stream_data.get_sub(stream_name);
|
2017-04-24 04:11:25 +02:00
|
|
|
subs.sub_or_unsub(sub);
|
|
|
|
});
|
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$("#subscriptions_table").on("click", ".change-stream-privacy", (e) => {
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_id = get_stream_id(e.target);
|
|
|
|
const stream = stream_data.get_sub_by_id(stream_id);
|
|
|
|
const template_data = {
|
2017-04-24 04:11:25 +02:00
|
|
|
stream_id: stream_id,
|
2018-05-03 18:52:39 +02:00
|
|
|
stream_name: stream.name,
|
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,
|
2018-05-03 18:52:39 +02:00
|
|
|
is_public: !stream.invite_only,
|
|
|
|
is_private: stream.invite_only && !stream.history_public_to_subscribers,
|
2018-06-06 18:19:09 +02:00
|
|
|
is_private_with_public_history: stream.invite_only &&
|
2019-02-27 22:28:19 +01:00
|
|
|
stream.history_public_to_subscribers,
|
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-06-25 23:26:17 +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,
|
|
|
|
realm_message_retention_setting:
|
|
|
|
exports.get_display_text_for_realm_message_retention_setting(),
|
|
|
|
upgrade_text_for_wide_organization_logo:
|
|
|
|
page_params.upgrade_text_for_wide_organization_logo,
|
2020-06-25 23:26:17 +02:00
|
|
|
is_stream_edit: true,
|
2017-04-24 04:11:25 +02:00
|
|
|
};
|
2019-11-02 00:06:25 +01:00
|
|
|
const change_privacy_modal = render_subscription_stream_privacy_modal(template_data);
|
2018-05-31 19:20:23 +02:00
|
|
|
$("#stream_privacy_modal").remove();
|
2017-04-24 04:11:25 +02:00
|
|
|
$("#subscriptions_table").append(change_privacy_modal);
|
2020-06-15 17:00:00 +02:00
|
|
|
set_stream_message_retention_setting_dropdown(stream);
|
2020-05-09 15:45:54 +02:00
|
|
|
overlays.open_modal('#stream_privacy_modal');
|
2019-06-06 20:45:30 +02:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
2017-04-24 04:11:25 +02:00
|
|
|
});
|
|
|
|
|
2018-05-31 19:20:23 +02:00
|
|
|
$("#subscriptions_table").on('click', '#change-stream-privacy-button',
|
|
|
|
change_stream_privacy);
|
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$("#subscriptions_table").on('click', '.close-privacy-modal', (e) => {
|
2020-03-28 17:53:10 +01:00
|
|
|
// Re-enable background mouse events when we close the modal
|
|
|
|
// via the "x" in the corner. (The other modal-close code
|
|
|
|
// paths call `overlays.close_modal`, rather than using
|
|
|
|
// bootstrap's data-dismiss=modal feature, and this is done
|
|
|
|
// there).
|
|
|
|
//
|
|
|
|
// TODO: It would probably be better to just do this
|
|
|
|
// unconditionally inside the handler for the event sent by
|
|
|
|
// bootstrap on closing a modal.
|
|
|
|
overlays.enable_background_mouse_events();
|
|
|
|
|
2018-05-31 19:20:23 +02:00
|
|
|
// This fixes a weird bug in which, subscription_settings hides
|
2020-03-28 17:53:10 +01:00
|
|
|
// unexpectedly by clicking the cancel button in a modal on top of it.
|
2018-05-31 19:20:23 +02:00
|
|
|
e.stopPropagation();
|
2017-04-24 04:11:25 +02:00
|
|
|
});
|
|
|
|
|
2019-06-14 10:24:59 +02:00
|
|
|
$("#subscriptions_table").on("click", "#sub_is_muted_setting",
|
2019-05-21 10:46:42 +02:00
|
|
|
stream_is_muted_clicked);
|
2019-06-14 15:41:28 +02:00
|
|
|
|
2020-02-04 11:46:36 +01:00
|
|
|
$("#subscriptions_table").on("click", ".sub_setting_checkbox",
|
2020-03-12 17:40:38 +01:00
|
|
|
exports.stream_setting_clicked);
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$("#subscriptions_table").on("keyup", ".subscriber_list_add form", (e) => {
|
2020-06-21 16:28:07 +02:00
|
|
|
if (e.which === 13) {
|
|
|
|
e.preventDefault();
|
|
|
|
submit_add_subscriber_form(e);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$("#subscriptions_table").on("submit", ".subscriber_list_add form", (e) => {
|
2017-04-24 04:11:25 +02:00
|
|
|
e.preventDefault();
|
2020-06-21 18:46:53 +02:00
|
|
|
submit_add_subscriber_form(e);
|
2017-04-24 04:11:25 +02:00
|
|
|
});
|
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$("#subscriptions_table").on("submit", ".subscriber_list_remove form", (e) => {
|
2017-04-24 04:11:25 +02:00
|
|
|
e.preventDefault();
|
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const list_entry = $(e.target).closest("tr");
|
2020-03-08 20:37:48 +01:00
|
|
|
const target_user_id = parseInt(list_entry.attr("data-subscriber-id"), 10);
|
2019-11-02 00:06:25 +01:00
|
|
|
const settings_row = $(e.target).closest('.subscription_settings');
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2019-11-02 00:06:25 +01:00
|
|
|
const sub = get_sub_for_target(settings_row);
|
2017-04-24 04:11:25 +02:00
|
|
|
if (!sub) {
|
|
|
|
blueslip.error('.subscriber_list_remove form submit fails');
|
|
|
|
return;
|
|
|
|
}
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_subscription_info_elem = $('.stream_subscription_info').expectOne();
|
2017-04-24 04:11:25 +02:00
|
|
|
|
|
|
|
function removal_success(data) {
|
|
|
|
if (data.removed.length > 0) {
|
|
|
|
// Remove the user from the subscriber list.
|
|
|
|
list_entry.remove();
|
2017-12-29 21:07:37 +01:00
|
|
|
stream_subscription_info_elem.text(i18n.t("Unsubscribed successfully!"));
|
2018-03-14 03:29:33 +01:00
|
|
|
// The rest of the work is done via the subscription -> remove event we will get
|
2017-04-24 04:11:25 +02:00
|
|
|
} else {
|
2018-01-08 19:54:19 +01:00
|
|
|
stream_subscription_info_elem.text(i18n.t("User is already not subscribed."));
|
2017-04-24 04:11:25 +02:00
|
|
|
}
|
2017-12-29 21:07:37 +01:00
|
|
|
stream_subscription_info_elem.addClass('text-success')
|
2018-05-06 21:43:17 +02:00
|
|
|
.removeClass('text-error');
|
2017-04-24 04:11:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function removal_failure() {
|
2018-01-08 19:54:19 +01:00
|
|
|
stream_subscription_info_elem.text(i18n.t("Error removing user from this stream."))
|
2018-05-06 21:43:17 +02:00
|
|
|
.addClass("text-error").removeClass("text-success");
|
2017-04-24 04:11:25 +02:00
|
|
|
}
|
|
|
|
|
2020-06-03 21:38:43 +02:00
|
|
|
exports.remove_user_from_stream(target_user_id, sub, removal_success,
|
2017-04-24 04:11:25 +02:00
|
|
|
removal_failure);
|
|
|
|
});
|
|
|
|
|
|
|
|
// This handler isn't part of the normal edit interface; it's the convenient
|
|
|
|
// checkmark in the subscriber list.
|
2020-07-07 23:04:47 +02:00
|
|
|
$("#subscriptions_table").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.
|
|
|
|
const stream_row = $("#subscriptions_table div.stream-row[data-stream-id='" + sub.stream_id + "']");
|
2020-04-23 23:49:50 +02:00
|
|
|
subs.sub_or_unsub(sub, stream_row);
|
|
|
|
|
2017-04-24 04:11:25 +02:00
|
|
|
if (!sub.subscribed) {
|
2018-12-01 21:53:09 +01:00
|
|
|
exports.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();
|
|
|
|
});
|
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$("#subscriptions_table").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) {
|
|
|
|
ui_report.message(i18n.t("Invalid stream id"), $(".stream_change_property_info"), 'alert-error');
|
|
|
|
return;
|
|
|
|
}
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_name = stream_data.maybe_get_stream_name(stream_id);
|
|
|
|
const deactivate_stream_modal = render_settings_deactivation_stream_modal({
|
2019-06-12 21:01:38 +02:00
|
|
|
stream_name: stream_name,
|
|
|
|
stream_id: stream_id,
|
|
|
|
});
|
|
|
|
$("#deactivation_stream_modal").remove();
|
|
|
|
$("#subscriptions_table").append(deactivate_stream_modal);
|
2020-05-09 15:45:54 +02:00
|
|
|
overlays.open_modal('#deactivation_stream_modal');
|
2018-02-13 11:47:17 +01:00
|
|
|
});
|
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$("#subscriptions_table").on("click", "#do_deactivate_stream_button", (e) => {
|
2019-11-02 00:06:25 +01:00
|
|
|
const stream_id = $(e.target).data("stream-id");
|
2020-05-09 15:45:54 +02:00
|
|
|
overlays.close_modal('#deactivation_stream_modal');
|
2018-02-13 11:47:17 +01:00
|
|
|
$("#deactivation_stream_modal").remove();
|
|
|
|
if (!stream_id) {
|
|
|
|
ui_report.message(i18n.t("Invalid stream id"), $(".stream_change_property_info"), 'alert-error');
|
|
|
|
return;
|
|
|
|
}
|
2019-11-02 00:06:25 +01:00
|
|
|
const row = $(".stream-row.active");
|
2018-04-30 14:08:10 +02:00
|
|
|
exports.delete_stream(stream_id, $(".stream_change_property_info"), row);
|
2018-02-13 11:47:17 +01:00
|
|
|
});
|
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$("#subscriptions_table").on("hide.bs.modal", "#deactivation_stream_modal", () => {
|
2018-02-13 11:47:17 +01:00
|
|
|
$("#deactivation_stream_modal").remove();
|
|
|
|
});
|
|
|
|
|
2017-04-24 04:11:25 +02:00
|
|
|
$("#subscriptions_table").on("click", ".stream-row", function (e) {
|
|
|
|
if ($(e.target).closest(".check, .subscription_settings").length === 0) {
|
2018-12-01 21:53:09 +01:00
|
|
|
exports.open_edit_panel_for_row(this);
|
2017-04-24 04:11:25 +02:00
|
|
|
}
|
|
|
|
});
|
2020-06-15 17:00:00 +02:00
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$("#subscriptions_table").on("change", ".stream_message_retention_setting", (e) => {
|
2020-06-15 17:00:00 +02:00
|
|
|
const dropdown_value = e.target.value;
|
|
|
|
change_stream_message_retention_days_block_display_property(dropdown_value);
|
|
|
|
});
|
2018-05-15 22:03:14 +02:00
|
|
|
};
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2019-10-25 09:45:13 +02:00
|
|
|
window.stream_edit = exports;
|