2012-10-18 21:37:07 +02:00
|
|
|
var subs = (function () {
|
|
|
|
|
|
|
|
var exports = {};
|
|
|
|
|
2017-04-24 04:11:25 +02:00
|
|
|
exports.show_subs_pane = {
|
|
|
|
nothing_selected: function () {
|
|
|
|
$(".nothing-selected, #stream_settings_title").show();
|
|
|
|
$("#add_new_stream_title, .settings, #stream-creation").hide();
|
|
|
|
},
|
|
|
|
settings: function () {
|
|
|
|
$(".settings, #stream_settings_title").show();
|
|
|
|
$("#add_new_stream_title, #stream-creation, .nothing-selected").hide();
|
|
|
|
},
|
|
|
|
};
|
2016-11-04 22:18:23 +01:00
|
|
|
|
2019-03-26 05:38:37 +01:00
|
|
|
exports.check_button_for_sub = function (sub) {
|
2016-11-04 22:18:23 +01:00
|
|
|
var id = parseInt(sub.stream_id, 10);
|
|
|
|
return $(".stream-row[data-stream-id='" + id + "'] .check");
|
2019-03-26 05:38:37 +01:00
|
|
|
};
|
2016-11-04 22:18:23 +01:00
|
|
|
|
2017-02-15 17:38:44 +01:00
|
|
|
function row_for_stream_id(stream_id) {
|
|
|
|
return $(".stream-row[data-stream-id='" + stream_id + "']");
|
|
|
|
}
|
|
|
|
|
2017-01-27 00:40:42 +01:00
|
|
|
function settings_button_for_sub(sub) {
|
2018-03-23 23:21:57 +01:00
|
|
|
// We don't do expectOne() here, because this button is only
|
|
|
|
// visible if the user has that stream selected in the streams UI.
|
2017-01-27 00:40:42 +01:00
|
|
|
var id = parseInt(sub.stream_id, 10);
|
2018-03-23 23:21:57 +01:00
|
|
|
return $(".subscription_settings[data-stream-id='" + id + "'] .subscribe-button");
|
2017-01-27 00:40:42 +01:00
|
|
|
}
|
|
|
|
|
2017-03-23 05:15:16 +01:00
|
|
|
function get_row_data(row) {
|
|
|
|
var row_id = row.attr('data-stream-id');
|
|
|
|
if (row_id) {
|
|
|
|
var row_object = stream_data.get_sub_by_id(row_id);
|
2017-03-25 01:27:52 +01:00
|
|
|
return {
|
|
|
|
id: row_id,
|
|
|
|
object: row_object,
|
|
|
|
};
|
2017-03-23 05:15:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_active_data() {
|
|
|
|
var active_row = $('div.stream-row.active');
|
|
|
|
var valid_active_id = active_row.attr('data-stream-id');
|
|
|
|
var active_tab = $('.subscriptions-container').find('div.ind-tab.selected');
|
2017-03-25 01:27:52 +01:00
|
|
|
return {
|
|
|
|
row: active_row,
|
|
|
|
id: valid_active_id,
|
|
|
|
tab: active_tab,
|
|
|
|
};
|
2017-03-23 05:15:16 +01:00
|
|
|
}
|
|
|
|
|
2017-10-16 19:18:02 +02:00
|
|
|
function get_hash_safe() {
|
|
|
|
if (typeof window !== "undefined" && typeof window.location.hash === "string") {
|
|
|
|
return window.location.hash.substr(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2013-11-08 10:12:05 +01:00
|
|
|
function selectText(element) {
|
2018-05-06 21:43:17 +02:00
|
|
|
var range;
|
|
|
|
var sel;
|
2013-11-08 10:12:05 +01:00
|
|
|
if (window.getSelection) {
|
|
|
|
sel = window.getSelection();
|
|
|
|
range = document.createRange();
|
|
|
|
range.selectNodeContents(element);
|
|
|
|
|
|
|
|
sel.removeAllRanges();
|
|
|
|
sel.addRange(range);
|
2016-06-09 23:05:34 +02:00
|
|
|
} else if (document.body.createTextRange) {
|
2013-11-08 10:12:05 +01:00
|
|
|
range = document.body.createTextRange();
|
|
|
|
range.moveToElementText(element);
|
|
|
|
range.select();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-23 17:51:01 +01:00
|
|
|
function should_list_all_streams() {
|
2017-04-20 08:03:44 +02:00
|
|
|
return !page_params.realm_is_zephyr_mirror_realm;
|
2013-01-23 17:51:01 +01:00
|
|
|
}
|
|
|
|
|
2017-10-11 23:45:03 +02:00
|
|
|
// this finds the stream that is actively open in the settings and focused in
|
|
|
|
// the left side.
|
|
|
|
exports.active_stream = function () {
|
|
|
|
var hash_components = window.location.hash.substr(1).split(/\//);
|
|
|
|
|
|
|
|
// if the string casted to a number is valid, and another component
|
|
|
|
// after exists then it's a stream name/id pair.
|
|
|
|
if (typeof parseFloat(hash_components[1]) === "number" && hash_components[2]) {
|
|
|
|
return {
|
|
|
|
id: parseFloat(hash_components[1]),
|
|
|
|
name: hash_components[2],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-03-04 20:27:37 +01:00
|
|
|
exports.toggle_home = function (sub) {
|
2018-06-04 21:09:11 +02:00
|
|
|
stream_muting.update_in_home_view(sub, !sub.in_home_view);
|
2017-04-24 04:11:25 +02:00
|
|
|
stream_edit.set_stream_property(sub, 'in_home_view', sub.in_home_view);
|
2013-05-14 21:00:28 +02:00
|
|
|
};
|
2013-02-12 22:32:14 +01:00
|
|
|
|
2017-03-04 20:32:30 +01:00
|
|
|
exports.toggle_pin_to_top_stream = function (sub) {
|
2017-04-24 04:11:25 +02:00
|
|
|
stream_edit.set_stream_property(sub, 'pin_to_top', !sub.pin_to_top);
|
2016-07-01 07:26:09 +02:00
|
|
|
};
|
|
|
|
|
2019-02-13 13:22:22 +01:00
|
|
|
exports.maybe_update_realm_default_stream_name = function (stream_id, new_name) {
|
|
|
|
var idx = _.findIndex(page_params.realm_default_streams, function (stream) {
|
|
|
|
return stream.stream_id === stream_id;
|
|
|
|
});
|
|
|
|
if (idx === -1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
page_params.realm_default_streams[idx].name = new_name;
|
|
|
|
};
|
|
|
|
|
2017-03-19 16:03:07 +01:00
|
|
|
exports.update_stream_name = function (sub, new_name) {
|
2013-08-21 23:21:31 +02:00
|
|
|
// Rename the stream internally.
|
2017-03-05 00:35:45 +01:00
|
|
|
stream_data.rename_sub(sub, new_name);
|
|
|
|
var stream_id = sub.stream_id;
|
2013-08-21 23:21:31 +02:00
|
|
|
|
2013-10-21 22:26:19 +02:00
|
|
|
// Update the left sidebar.
|
2016-10-30 17:33:23 +01:00
|
|
|
stream_list.rename_stream(sub, new_name);
|
2013-08-21 23:21:31 +02:00
|
|
|
|
2019-02-13 13:22:22 +01:00
|
|
|
// Update the default streams page in organization settings.
|
|
|
|
exports.maybe_update_realm_default_stream_name(stream_id, new_name);
|
|
|
|
|
2016-11-05 00:11:45 +01:00
|
|
|
// Update the stream settings
|
2017-04-24 04:11:25 +02:00
|
|
|
stream_edit.update_stream_name(sub, new_name);
|
2016-11-05 00:11:45 +01:00
|
|
|
|
2016-10-29 01:30:51 +02:00
|
|
|
// Update the subscriptions page
|
2018-03-10 18:39:49 +01:00
|
|
|
var sub_row = row_for_stream_id(stream_id);
|
2016-11-05 00:10:01 +01:00
|
|
|
sub_row.find(".stream-name").text(new_name);
|
2016-10-29 01:30:51 +02:00
|
|
|
|
2013-08-21 23:21:31 +02:00
|
|
|
// Update the message feed.
|
2017-01-05 17:34:27 +01:00
|
|
|
message_live_update.update_stream_name(stream_id, new_name);
|
2017-03-19 16:03:07 +01:00
|
|
|
};
|
2013-08-21 23:21:31 +02:00
|
|
|
|
2019-02-05 16:39:46 +01:00
|
|
|
exports.update_stream_description = function (sub, description, rendered_description) {
|
2014-01-24 18:19:27 +01:00
|
|
|
sub.description = description;
|
2019-02-05 16:39:46 +01:00
|
|
|
sub.rendered_description = rendered_description.replace('<p>', '').replace('</p>', '');
|
2014-01-24 18:19:27 +01:00
|
|
|
|
2016-11-04 22:11:23 +01:00
|
|
|
// Update stream row
|
2018-03-10 18:39:49 +01:00
|
|
|
var sub_row = row_for_stream_id(sub.stream_id);
|
2017-03-18 19:08:36 +01:00
|
|
|
sub_row.find(".description").html(sub.rendered_description);
|
2016-11-04 22:11:23 +01:00
|
|
|
|
|
|
|
// Update stream settings
|
2017-04-24 04:11:25 +02:00
|
|
|
stream_edit.update_stream_description(sub);
|
2017-03-21 07:19:14 +01:00
|
|
|
};
|
2014-01-24 18:19:27 +01:00
|
|
|
|
2016-11-05 00:24:55 +01:00
|
|
|
exports.set_color = function (stream_id, color) {
|
|
|
|
var sub = stream_data.get_sub_by_id(stream_id);
|
2017-04-24 04:11:25 +02:00
|
|
|
stream_edit.set_stream_property(sub, 'color', color);
|
2013-05-17 21:35:17 +02:00
|
|
|
};
|
|
|
|
|
2018-03-10 18:45:31 +01:00
|
|
|
exports.rerender_subscribers_count = function (sub, just_subscribed) {
|
2018-03-19 18:28:24 +01:00
|
|
|
if (!overlays.streams_open()) {
|
|
|
|
// If the streams overlay isn't open, we don't need to rerender anything.
|
|
|
|
return;
|
|
|
|
}
|
2018-03-10 18:39:49 +01:00
|
|
|
var stream_row = row_for_stream_id(sub.stream_id);
|
2016-03-14 06:38:43 +01:00
|
|
|
stream_data.update_subscribers_count(sub);
|
2018-06-06 18:50:09 +02:00
|
|
|
if (!sub.can_access_subscribers || just_subscribed && sub.invite_only) {
|
2018-03-22 22:17:24 +01:00
|
|
|
var rendered_sub_count = templates.render("subscription_count", sub);
|
|
|
|
stream_row.find('.subscriber-count').expectOne().html(rendered_sub_count);
|
2018-03-10 18:43:46 +01:00
|
|
|
} else {
|
2018-03-10 18:48:10 +01:00
|
|
|
stream_row.find(".subscriber-count-text").expectOne().text(sub.subscriber_count);
|
2018-02-10 07:25:05 +01:00
|
|
|
}
|
2016-03-14 06:38:43 +01:00
|
|
|
};
|
|
|
|
|
2018-04-06 15:32:10 +02:00
|
|
|
exports.rerender_subscriptions_settings = function (sub) {
|
2018-04-10 15:49:03 +02:00
|
|
|
// This rerendes the subscriber data for a given sub object
|
|
|
|
// where it might have already been rendered in the subscriptions UI.
|
2018-04-06 15:32:10 +02:00
|
|
|
if (typeof sub === "undefined") {
|
|
|
|
blueslip.error('Undefined sub passed to function rerender_subscriptions_settings');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (overlays.streams_open()) {
|
|
|
|
// Render subscriptions templates only if subscription tab is open
|
|
|
|
exports.rerender_subscribers_count(sub);
|
|
|
|
if (stream_edit.is_sub_settings_active(sub)) {
|
|
|
|
// Render subscriptions only if stream settings is open
|
|
|
|
stream_edit.rerender_subscribers_list(sub);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-03-24 19:35:47 +01:00
|
|
|
function add_email_hint_handler() {
|
2013-08-26 20:22:22 +02:00
|
|
|
// Add a popover explaining stream e-mail addresses on hover.
|
2018-03-24 19:35:47 +01:00
|
|
|
|
|
|
|
$("body").on("mouseover", '.stream-email-hint', function (e) {
|
|
|
|
var email_address_hint_content = templates.render('email_address_hint', { page_params: page_params });
|
|
|
|
$(e.target).popover({
|
|
|
|
placement: "right",
|
|
|
|
title: "Email integration",
|
|
|
|
content: email_address_hint_content,
|
|
|
|
trigger: "manual",
|
|
|
|
animation: false});
|
|
|
|
$(e.target).popover('show');
|
2013-08-26 20:22:22 +02:00
|
|
|
e.stopPropagation();
|
|
|
|
});
|
2018-03-24 19:35:47 +01:00
|
|
|
$("body").on("mouseout", '.stream-email-hint', function (e) {
|
|
|
|
$(e.target).popover('hide');
|
2013-08-26 20:22:22 +02:00
|
|
|
e.stopPropagation();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-02-16 07:19:18 +01:00
|
|
|
exports.add_sub_to_table = function (sub) {
|
2018-04-08 07:06:42 +02:00
|
|
|
if (exports.is_sub_already_present(sub)) {
|
2018-04-10 15:49:03 +02:00
|
|
|
// If a stream is already listed/added in subscription modal,
|
|
|
|
// return. This can happen in some corner cases (which might
|
|
|
|
// be backend bugs) where a realm adminsitrator is subscribed
|
|
|
|
// to a private stream, in which case they might get two
|
|
|
|
// stream-create events.
|
2018-04-08 07:06:42 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-01-03 20:35:52 +01:00
|
|
|
var html = templates.render('subscription', sub);
|
2016-11-01 22:32:10 +01:00
|
|
|
var settings_html = templates.render('subscription_settings', sub);
|
2017-04-22 22:22:25 +02:00
|
|
|
if (stream_create.get_name() === sub.name) {
|
2017-02-18 00:03:43 +01:00
|
|
|
$(".streams-list").prepend(html).scrollTop(0);
|
|
|
|
} else {
|
|
|
|
$(".streams-list").append(html);
|
|
|
|
}
|
2016-11-01 22:32:10 +01:00
|
|
|
$(".subscriptions .settings").append($(settings_html));
|
|
|
|
|
2017-04-22 22:22:25 +02:00
|
|
|
if (stream_create.get_name() === sub.name) {
|
2018-03-10 18:39:49 +01:00
|
|
|
// This `stream_create.get_name()` check tells us whether the
|
|
|
|
// stream was just created in this browser window; it's a hack
|
|
|
|
// to work around the server_events code flow not having a
|
|
|
|
// good way to associate with this request because the stream
|
|
|
|
// ID isn't known yet. These are appended to the top of the
|
|
|
|
// list, so they are more visible.
|
|
|
|
row_for_stream_id(sub.stream_id).click();
|
2017-04-22 22:22:25 +02:00
|
|
|
stream_create.reset_created_stream();
|
2016-11-01 22:32:10 +01:00
|
|
|
}
|
2018-02-16 07:19:18 +01:00
|
|
|
};
|
2013-01-23 19:43:11 +01:00
|
|
|
|
2018-04-08 07:06:42 +02:00
|
|
|
exports.is_sub_already_present = function (sub) {
|
2018-04-10 15:49:03 +02:00
|
|
|
// This checks if a stream is already listed the "Manage streams"
|
|
|
|
// UI, by checking for its subscribe/unsubscribe checkmark button.
|
2019-03-26 05:38:37 +01:00
|
|
|
var button = exports.check_button_for_sub(sub);
|
2018-04-08 07:06:42 +02:00
|
|
|
if (button.length !== 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2017-02-15 17:38:44 +01:00
|
|
|
exports.remove_stream = function (stream_id) {
|
|
|
|
// It is possible that row is empty when we deactivate a
|
|
|
|
// stream, but we let jQuery silently handle that.
|
|
|
|
var row = row_for_stream_id(stream_id);
|
|
|
|
row.remove();
|
2018-08-07 15:41:00 +02:00
|
|
|
var sub = stream_data.get_sub_by_id(stream_id);
|
|
|
|
if (stream_edit.is_sub_settings_active(sub)) {
|
|
|
|
exports.show_subs_pane.nothing_selected();
|
|
|
|
}
|
2017-02-15 17:38:44 +01:00
|
|
|
};
|
|
|
|
|
2017-03-19 16:47:30 +01:00
|
|
|
exports.update_settings_for_subscribed = function (sub) {
|
2018-03-11 17:51:21 +01:00
|
|
|
var settings_button = settings_button_for_sub(sub).removeClass("unsubscribed").show();
|
2018-10-31 15:35:34 +01:00
|
|
|
exports.update_add_subscriptions_elements(sub.can_add_subscribers);
|
2018-04-30 15:03:23 +02:00
|
|
|
$(".subscription_settings[data-stream-id='" + sub.stream_id + "'] #preview-stream-button").show();
|
2017-01-20 22:03:52 +01:00
|
|
|
|
2019-03-26 05:38:37 +01:00
|
|
|
if (exports.is_sub_already_present(sub)) {
|
2018-03-10 18:45:31 +01:00
|
|
|
exports.rerender_subscribers_count(sub, true);
|
2013-01-23 22:08:34 +01:00
|
|
|
|
2017-01-27 00:40:42 +01:00
|
|
|
settings_button.text(i18n.t("Unsubscribe"));
|
2019-03-26 05:38:37 +01:00
|
|
|
stream_ui_updates.update_check_button_for_sub(sub);
|
2018-06-01 15:37:21 +02:00
|
|
|
|
|
|
|
if (sub.can_change_stream_permissions) {
|
|
|
|
$(".change-stream-privacy").show();
|
|
|
|
}
|
2013-01-22 23:16:04 +01:00
|
|
|
} else {
|
2018-02-16 07:19:18 +01:00
|
|
|
exports.add_sub_to_table(sub);
|
2012-10-18 21:37:07 +02:00
|
|
|
}
|
2013-03-21 22:13:17 +01:00
|
|
|
|
2018-04-10 16:54:36 +02:00
|
|
|
if (stream_edit.is_sub_settings_active(sub)) {
|
2017-10-11 23:45:03 +02:00
|
|
|
stream_edit.rerender_subscribers_list(sub);
|
|
|
|
}
|
|
|
|
|
2017-03-17 23:07:20 +01:00
|
|
|
// Display the swatch and subscription stream_settings
|
2017-10-03 23:33:15 +02:00
|
|
|
stream_edit.show_sub_settings(sub);
|
2014-02-05 22:53:53 +01:00
|
|
|
};
|
2012-10-18 21:37:07 +02:00
|
|
|
|
2018-11-29 22:22:21 +01:00
|
|
|
exports.show_active_stream_in_left_panel = function () {
|
|
|
|
var selected_row = get_hash_safe().split(/\//)[1];
|
|
|
|
|
|
|
|
if (parseFloat(selected_row)) {
|
|
|
|
var sub_row = row_for_stream_id(selected_row);
|
|
|
|
sub_row.addClass("active");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-29 22:42:09 +01:00
|
|
|
exports.add_tooltips_to_left_panel = function () {
|
|
|
|
_.each($("#subscriptions_table .stream-row"), function (row) {
|
|
|
|
$(row).find('.sub-info-box [class$="-bar"] [class$="-count"]').tooltip({
|
|
|
|
placement: 'left', animation: false,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-10-31 15:35:34 +01:00
|
|
|
exports.update_add_subscriptions_elements = function (allow_user_to_add_subs) {
|
2018-11-07 07:38:28 +01:00
|
|
|
if (page_params.is_guest) {
|
|
|
|
// For guest users, we just hide the add_subscribers feature.
|
|
|
|
$('.add_subscribers_container').hide();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, we adjust whether the widgets are disabled based on
|
|
|
|
// whether this user is authorized to add subscribers.
|
2018-10-31 15:35:34 +01:00
|
|
|
var input_element = $('.add_subscribers_container').find('input[name="principal"]').expectOne();
|
|
|
|
var button_element = $('.add_subscribers_container').find('button[name="add_subscriber"]').expectOne();
|
|
|
|
|
|
|
|
if (allow_user_to_add_subs) {
|
|
|
|
input_element.removeAttr("disabled");
|
|
|
|
button_element.removeAttr("disabled");
|
|
|
|
button_element.css('pointer-events', "");
|
|
|
|
$('.add_subscriber_btn_wrapper').popover('destroy');
|
|
|
|
} else {
|
|
|
|
input_element.attr("disabled", "disabled");
|
|
|
|
button_element.attr("disabled", "disabled");
|
|
|
|
|
|
|
|
// Disabled button blocks mouse events(hover) from reaching
|
|
|
|
// to it's parent div element, so popover don't get triggered.
|
|
|
|
// Add css to prevent this.
|
|
|
|
button_element.css("pointer-events", "none");
|
|
|
|
|
|
|
|
$('.add_subscribers_container input').popover({
|
|
|
|
placement: "bottom",
|
|
|
|
content: "<div class='cant_add_subs_hint'>%s</div>".replace(
|
|
|
|
'%s', i18n.t('Only stream subscribers can add users to a private stream.')),
|
|
|
|
trigger: "manual",
|
|
|
|
html: true,
|
|
|
|
animation: false});
|
|
|
|
$('.add_subscribers_container').on('mouseover', function (e) {
|
|
|
|
$('.add_subscribers_container input').popover('show');
|
|
|
|
e.stopPropagation();
|
|
|
|
});
|
|
|
|
$('.add_subscribers_container').on('mouseout', function (e) {
|
|
|
|
$('.add_subscribers_container input').popover('hide');
|
|
|
|
e.stopPropagation();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-03-19 16:47:30 +01:00
|
|
|
exports.update_settings_for_unsubscribed = function (sub) {
|
2018-03-11 17:51:21 +01:00
|
|
|
var settings_button = settings_button_for_sub(sub).addClass("unsubscribed").show();
|
2013-01-23 22:08:34 +01:00
|
|
|
|
2017-03-19 16:47:30 +01:00
|
|
|
settings_button.text(i18n.t("Subscribe"));
|
2017-10-03 23:33:15 +02:00
|
|
|
stream_edit.hide_sub_settings(sub);
|
2018-04-06 15:32:10 +02:00
|
|
|
exports.rerender_subscriptions_settings(sub);
|
2019-03-26 05:38:37 +01:00
|
|
|
stream_ui_updates.update_check_button_for_sub(sub);
|
2017-04-24 04:11:25 +02:00
|
|
|
|
2018-04-07 06:05:52 +02:00
|
|
|
stream_data.update_stream_email_address(sub, "");
|
2018-04-06 06:48:46 +02:00
|
|
|
if (stream_edit.is_sub_settings_active(sub)) {
|
2018-04-03 00:36:31 +02:00
|
|
|
// If user unsubscribed from private stream then user cannot subscribe to
|
|
|
|
// stream without invitation and cannot add subscribers to stream.
|
2018-02-09 19:45:40 +01:00
|
|
|
if (!sub.should_display_subscription_button) {
|
|
|
|
settings_button.hide();
|
2018-10-31 15:35:34 +01:00
|
|
|
exports.update_add_subscriptions_elements(sub.can_add_subscribers);
|
2018-02-09 19:45:40 +01:00
|
|
|
}
|
2017-10-11 23:45:03 +02:00
|
|
|
}
|
|
|
|
|
2018-02-09 19:45:40 +01:00
|
|
|
// Remove private streams from subscribed streams list.
|
|
|
|
if ($("#subscriptions_table .search-container .tab-switcher .first").hasClass("selected")
|
|
|
|
&& sub.invite_only) {
|
2018-03-10 18:39:49 +01:00
|
|
|
var sub_row = row_for_stream_id(sub.stream_id);
|
2018-02-09 19:45:40 +01:00
|
|
|
sub_row.addClass("notdisplayed");
|
2018-01-04 06:12:17 +01:00
|
|
|
}
|
2014-02-05 22:53:53 +01:00
|
|
|
};
|
2013-03-29 20:27:41 +01:00
|
|
|
|
2018-07-29 19:40:32 +02:00
|
|
|
function triage_stream(query, sub) {
|
2018-07-29 19:28:06 +02:00
|
|
|
if (query.subscribed_only) {
|
|
|
|
// reject non-subscribed streams
|
|
|
|
if (!sub.subscribed) {
|
2018-07-30 20:51:08 +02:00
|
|
|
return 'rejected';
|
2018-07-29 19:28:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-29 16:11:48 +02:00
|
|
|
var search_terms = search_util.get_search_terms(query.input);
|
|
|
|
|
2018-07-29 19:40:32 +02:00
|
|
|
function match(attr) {
|
|
|
|
var val = sub[attr];
|
|
|
|
|
|
|
|
return search_util.vanilla_match({
|
|
|
|
val: val,
|
|
|
|
search_terms: search_terms,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (match('name')) {
|
|
|
|
return 'name_match';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (match('description')) {
|
|
|
|
return 'desc_match';
|
|
|
|
}
|
|
|
|
|
|
|
|
return 'rejected';
|
2016-12-26 10:14:18 +01:00
|
|
|
}
|
|
|
|
|
2018-07-29 20:20:46 +02:00
|
|
|
function get_stream_id_buckets(stream_ids, query) {
|
|
|
|
// When we simplify the settings UI, we can get
|
|
|
|
// rid of the "others" bucket.
|
|
|
|
|
|
|
|
var buckets = {
|
|
|
|
name: [],
|
|
|
|
desc: [],
|
|
|
|
other: [],
|
|
|
|
};
|
|
|
|
|
|
|
|
_.each(stream_ids, function (stream_id) {
|
|
|
|
var sub = stream_data.get_sub_by_id(stream_id);
|
|
|
|
var match_status = triage_stream(query, sub);
|
|
|
|
|
|
|
|
if (match_status === 'name_match') {
|
|
|
|
buckets.name.push(stream_id);
|
|
|
|
} else if (match_status === 'desc_match') {
|
|
|
|
buckets.desc.push(stream_id);
|
|
|
|
} else {
|
|
|
|
buckets.other.push(stream_id);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
stream_data.sort_for_stream_settings(buckets.name);
|
|
|
|
stream_data.sort_for_stream_settings(buckets.desc);
|
|
|
|
|
|
|
|
return buckets;
|
|
|
|
}
|
|
|
|
|
2018-07-24 14:27:32 +02:00
|
|
|
exports.populate_stream_settings_left_panel = function () {
|
2018-07-30 19:44:57 +02:00
|
|
|
var sub_rows = stream_data.get_updated_unsorted_subs();
|
2018-07-24 14:27:32 +02:00
|
|
|
var template_data = {
|
|
|
|
subscriptions: sub_rows,
|
|
|
|
};
|
|
|
|
var html = templates.render('subscriptions', template_data);
|
|
|
|
$('#subscriptions_table .streams-list').html(html);
|
|
|
|
};
|
|
|
|
|
2016-12-26 10:14:18 +01:00
|
|
|
// query is now an object rather than a string.
|
|
|
|
// Query { input: String, subscribed_only: Boolean }
|
|
|
|
exports.filter_table = function (query) {
|
2018-11-29 22:22:21 +01:00
|
|
|
exports.show_active_stream_in_left_panel();
|
2017-10-11 23:00:36 +02:00
|
|
|
|
2017-01-03 13:26:48 +01:00
|
|
|
var widgets = {};
|
2017-09-20 20:37:26 +02:00
|
|
|
var streams_list_scrolltop = $(".streams-list").scrollTop();
|
2017-01-03 13:26:48 +01:00
|
|
|
|
2018-07-29 20:20:46 +02:00
|
|
|
var stream_ids = [];
|
2016-11-04 23:56:38 +01:00
|
|
|
_.each($("#subscriptions_table .stream-row"), function (row) {
|
2018-07-29 20:20:46 +02:00
|
|
|
var stream_id = $(row).attr('data-stream-id');
|
|
|
|
stream_ids.push(stream_id);
|
|
|
|
});
|
2016-10-12 08:53:57 +02:00
|
|
|
|
2018-07-29 20:20:46 +02:00
|
|
|
var buckets = get_stream_id_buckets(stream_ids, query);
|
2018-07-29 19:40:32 +02:00
|
|
|
|
2018-07-29 20:20:46 +02:00
|
|
|
// If we just re-built the DOM from scratch we wouldn't need
|
|
|
|
// all this hidden/notdisplayed logic.
|
|
|
|
var hidden_ids = {};
|
|
|
|
_.each(buckets.other, function (stream_id) {
|
|
|
|
hidden_ids[stream_id] = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
_.each($("#subscriptions_table .stream-row"), function (row) {
|
|
|
|
var stream_id = $(row).attr('data-stream-id');
|
|
|
|
|
|
|
|
// Below code goes away if we don't do sort-DOM-in-place.
|
|
|
|
if (hidden_ids[stream_id]) {
|
|
|
|
$(row).addClass('notdisplayed');
|
2018-05-06 21:43:17 +02:00
|
|
|
} else {
|
2018-07-29 20:20:46 +02:00
|
|
|
$(row).removeClass('notdisplayed');
|
2016-10-12 08:53:57 +02:00
|
|
|
}
|
2018-03-15 05:24:00 +01:00
|
|
|
|
2018-07-29 20:20:46 +02:00
|
|
|
widgets[stream_id] = $(row).detach();
|
2016-10-12 08:53:57 +02:00
|
|
|
});
|
2016-11-01 22:32:10 +01:00
|
|
|
|
2018-11-29 22:42:09 +01:00
|
|
|
exports.add_tooltips_to_left_panel();
|
|
|
|
|
2019-01-09 14:30:35 +01:00
|
|
|
ui.reset_scrollbar($("#subscription_overlay .streams-list"));
|
2017-07-28 13:26:19 +02:00
|
|
|
|
2018-07-29 14:55:29 +02:00
|
|
|
var all_stream_ids = [].concat(
|
2018-07-29 20:20:46 +02:00
|
|
|
buckets.name,
|
|
|
|
buckets.desc,
|
|
|
|
buckets.other
|
2018-07-29 14:55:29 +02:00
|
|
|
);
|
2017-01-03 13:26:48 +01:00
|
|
|
|
2018-07-29 14:55:29 +02:00
|
|
|
_.each(all_stream_ids, function (stream_id) {
|
2017-01-03 13:26:48 +01:00
|
|
|
$('#subscriptions_table .streams-list').append(widgets[stream_id]);
|
|
|
|
});
|
|
|
|
|
2018-11-29 23:21:06 +01:00
|
|
|
exports.maybe_reset_right_panel();
|
2017-09-20 20:37:26 +02:00
|
|
|
|
|
|
|
// this puts the scrollTop back to what it was before the list was updated again.
|
|
|
|
$(".streams-list").scrollTop(streams_list_scrolltop);
|
2016-10-12 08:53:57 +02:00
|
|
|
};
|
|
|
|
|
2018-04-04 21:29:32 +02:00
|
|
|
var subscribed_only = true;
|
|
|
|
|
2018-11-29 23:11:07 +01:00
|
|
|
exports.get_search_params = function () {
|
2016-11-01 22:32:10 +01:00
|
|
|
var search_box = $("#add_new_subscription input[type='text']");
|
2018-11-29 23:11:07 +01:00
|
|
|
var input = search_box.expectOne().val().trim();
|
|
|
|
var params = {
|
|
|
|
input: input,
|
|
|
|
subscribed_only: subscribed_only,
|
|
|
|
};
|
|
|
|
return params;
|
|
|
|
};
|
|
|
|
|
2018-11-29 23:21:06 +01:00
|
|
|
exports.maybe_reset_right_panel = function () {
|
|
|
|
if ($(".stream-row.active").hasClass("notdisplayed")) {
|
|
|
|
$(".right .settings").hide();
|
|
|
|
$(".nothing-selected").show();
|
|
|
|
$(".stream-row.active").removeClass("active");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-29 23:11:07 +01:00
|
|
|
exports.actually_filter_streams = function () {
|
|
|
|
var search_params = exports.get_search_params();
|
|
|
|
exports.filter_table(search_params);
|
2017-10-03 00:41:13 +02:00
|
|
|
};
|
2016-10-12 08:53:57 +02:00
|
|
|
|
2017-10-03 00:41:13 +02:00
|
|
|
var filter_streams = _.throttle(exports.actually_filter_streams, 50);
|
2016-10-12 08:53:57 +02:00
|
|
|
|
2018-04-14 14:24:10 +02:00
|
|
|
// Make it explicit that our toggler is not created right away.
|
|
|
|
exports.toggler = undefined;
|
|
|
|
|
2018-12-02 01:09:10 +01:00
|
|
|
exports.switch_stream_tab = function (tab_name) {
|
|
|
|
/*
|
|
|
|
This switches the stream tab, but it doesn't update
|
|
|
|
the toggler widget. You may instead want to
|
|
|
|
use `toggler.goto`.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (tab_name === "all-streams") {
|
|
|
|
subscribed_only = false;
|
|
|
|
} else if (tab_name === "subscribed") {
|
|
|
|
subscribed_only = true;
|
2018-04-14 14:24:10 +02:00
|
|
|
}
|
|
|
|
|
2018-12-02 01:09:10 +01:00
|
|
|
exports.actually_filter_streams();
|
|
|
|
|
|
|
|
if (tab_name === "all-streams") {
|
|
|
|
hashchange.update_browser_history('#streams/all');
|
|
|
|
} else if (tab_name === "subscribed") {
|
|
|
|
hashchange.update_browser_history('#streams/subscribed');
|
|
|
|
}
|
|
|
|
};
|
2018-04-14 14:24:10 +02:00
|
|
|
|
2016-11-01 22:32:10 +01:00
|
|
|
exports.setup_page = function (callback) {
|
2018-04-14 15:04:35 +02:00
|
|
|
// We should strongly consider only setting up the page once,
|
|
|
|
// but I am writing these comments write before a big release,
|
|
|
|
// so it's too risky a change for now.
|
|
|
|
//
|
|
|
|
// The history behind setting up the page from scratch every
|
|
|
|
// time we go into "Manage Streams" is that we used to have
|
|
|
|
// some live-update issues, so being able to re-launch the
|
|
|
|
// streams page is kind of a workaround for those bugs, since
|
|
|
|
// we will re-populate the widget.
|
|
|
|
//
|
|
|
|
// For now, every time we go back into the widget we'll
|
|
|
|
// continue the strategy that we re-render everything from scratch.
|
|
|
|
// Also, we'll always go back to the "Subscribed" tab.
|
2016-11-01 22:32:10 +01:00
|
|
|
function initialize_components() {
|
2018-04-14 14:24:10 +02:00
|
|
|
exports.toggler = components.toggle({
|
2018-07-15 20:10:41 +02:00
|
|
|
child_wants_focus: true,
|
2016-11-01 22:32:10 +01:00
|
|
|
values: [
|
2017-08-01 20:14:38 +02:00
|
|
|
{ label: i18n.t("Subscribed"), key: "subscribed" },
|
|
|
|
{ label: i18n.t("All streams"), key: "all-streams" },
|
2016-11-01 22:32:10 +01:00
|
|
|
],
|
2017-08-01 20:14:38 +02:00
|
|
|
callback: function (value, key) {
|
2018-12-02 01:09:10 +01:00
|
|
|
exports.switch_stream_tab(key);
|
2017-01-12 00:17:43 +01:00
|
|
|
},
|
2018-04-14 14:24:10 +02:00
|
|
|
});
|
2016-11-01 22:32:10 +01:00
|
|
|
|
|
|
|
if (should_list_all_streams()) {
|
2018-04-14 14:24:10 +02:00
|
|
|
var toggler_elem = exports.toggler.get();
|
|
|
|
$("#subscriptions_table .search-container").prepend(toggler_elem);
|
2016-11-01 22:32:10 +01:00
|
|
|
}
|
|
|
|
|
2017-01-15 20:21:33 +01:00
|
|
|
// show the "Stream settings" header by default.
|
2016-11-01 22:32:10 +01:00
|
|
|
$(".display-type #stream_settings_title").show();
|
|
|
|
}
|
2013-10-25 17:27:07 +02:00
|
|
|
|
2018-05-30 18:10:43 +02:00
|
|
|
function populate_and_fill() {
|
2013-01-23 17:41:04 +01:00
|
|
|
|
2013-07-26 20:43:14 +02:00
|
|
|
$('#subscriptions_table').empty();
|
2016-10-12 08:53:57 +02:00
|
|
|
|
2014-01-15 23:30:36 +01:00
|
|
|
var template_data = {
|
|
|
|
can_create_streams: page_params.can_create_streams,
|
2017-01-12 00:17:43 +01:00
|
|
|
hide_all_streams: !should_list_all_streams(),
|
2018-04-30 11:48:00 +02:00
|
|
|
max_name_length: page_params.stream_name_max_length,
|
|
|
|
max_description_length: page_params.stream_description_max_length,
|
2019-01-15 22:20:52 +01:00
|
|
|
is_admin: page_params.is_admin,
|
2014-01-15 23:30:36 +01:00
|
|
|
};
|
2017-10-11 23:00:36 +02:00
|
|
|
|
2014-01-15 23:30:36 +01:00
|
|
|
var rendered = templates.render('subscription_table_body', template_data);
|
2013-07-26 20:43:14 +02:00
|
|
|
$('#subscriptions_table').append(rendered);
|
2018-07-24 14:27:32 +02:00
|
|
|
|
|
|
|
exports.populate_stream_settings_left_panel();
|
2016-11-01 22:32:10 +01:00
|
|
|
initialize_components();
|
2017-10-03 00:41:13 +02:00
|
|
|
exports.actually_filter_streams();
|
2018-03-25 18:46:10 +02:00
|
|
|
stream_create.set_up_handlers();
|
2013-08-26 20:22:22 +02:00
|
|
|
|
2016-11-01 22:32:10 +01:00
|
|
|
$("#add_new_subscription input[type='text']").on("input", function () {
|
2016-12-15 07:36:30 +01:00
|
|
|
// Debounce filtering in case a user is typing quickly
|
|
|
|
filter_streams();
|
2016-11-01 22:32:10 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
if (callback) {
|
|
|
|
callback();
|
|
|
|
}
|
2013-01-23 17:41:04 +01:00
|
|
|
}
|
|
|
|
|
2016-10-25 21:50:14 +02:00
|
|
|
populate_and_fill();
|
2013-04-04 22:30:28 +02:00
|
|
|
|
2016-10-25 21:50:14 +02:00
|
|
|
if (!should_list_all_streams()) {
|
2017-09-29 19:17:03 +02:00
|
|
|
$('.create_stream_button').val(i18n.t("Subscribe"));
|
2013-01-23 17:51:01 +01:00
|
|
|
}
|
2012-10-18 21:37:07 +02:00
|
|
|
};
|
2012-10-03 22:24:17 +02:00
|
|
|
|
2018-12-02 00:16:08 +01:00
|
|
|
exports.switch_to_stream_row = function (stream_id) {
|
|
|
|
var stream_row = row_for_stream_id(stream_id);
|
|
|
|
|
|
|
|
get_active_data().row.removeClass("active");
|
|
|
|
stream_row.addClass("active");
|
|
|
|
|
|
|
|
scroll_util.scroll_element_into_container(stream_row, stream_row.parent());
|
|
|
|
|
|
|
|
// It's dubious that we need this timeout any more.
|
|
|
|
setTimeout(function () {
|
|
|
|
if (stream_id === get_active_data().id) {
|
|
|
|
stream_row.click();
|
|
|
|
}
|
|
|
|
}, 100);
|
|
|
|
};
|
|
|
|
|
2018-12-05 20:41:20 +01:00
|
|
|
exports.change_state = function (section) {
|
|
|
|
// if in #streams/new form.
|
|
|
|
if (section === "new") {
|
|
|
|
exports.do_open_create_stream();
|
2018-12-02 00:24:45 +01:00
|
|
|
return;
|
|
|
|
}
|
2017-02-21 18:13:32 +01:00
|
|
|
|
2018-12-05 20:41:20 +01:00
|
|
|
if (section === "all") {
|
2018-12-02 01:09:10 +01:00
|
|
|
exports.toggler.goto('all-streams');
|
2018-12-05 20:41:20 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (section === "subscribed") {
|
2018-12-02 01:09:10 +01:00
|
|
|
exports.toggler.goto('subscribed');
|
2018-12-05 20:41:20 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the section is a valid number.
|
|
|
|
if (/\d+/.test(section)) {
|
|
|
|
var stream_id = section;
|
2018-12-02 00:24:45 +01:00
|
|
|
exports.switch_to_stream_row(stream_id);
|
2018-12-05 20:41:20 +01:00
|
|
|
return;
|
2018-12-02 00:24:45 +01:00
|
|
|
}
|
2018-12-05 20:41:20 +01:00
|
|
|
|
|
|
|
blueslip.warn('invalid section for streams: ' + section);
|
|
|
|
exports.toggler.goto('subscribed');
|
2018-12-02 00:24:45 +01:00
|
|
|
};
|
2017-02-21 18:13:32 +01:00
|
|
|
|
2018-12-05 20:41:20 +01:00
|
|
|
exports.launch = function (section) {
|
2016-11-01 22:32:10 +01:00
|
|
|
exports.setup_page(function () {
|
2017-05-27 15:40:54 +02:00
|
|
|
overlays.open_overlay({
|
2017-05-06 01:11:18 +02:00
|
|
|
name: 'subscriptions',
|
|
|
|
overlay: $("#subscription_overlay"),
|
|
|
|
on_close: exports.close,
|
|
|
|
});
|
2018-12-05 20:41:20 +01:00
|
|
|
exports.change_state(section);
|
2017-07-28 13:26:19 +02:00
|
|
|
|
|
|
|
ui.set_up_scrollbar($("#subscription_overlay .streams-list"));
|
2017-07-28 14:07:58 +02:00
|
|
|
ui.set_up_scrollbar($("#subscription_overlay .settings"));
|
2017-07-28 13:26:19 +02:00
|
|
|
|
2016-11-01 22:32:10 +01:00
|
|
|
});
|
2017-03-26 12:26:22 +02:00
|
|
|
if (!get_active_data().id) {
|
|
|
|
$('#search_stream_name').focus();
|
|
|
|
}
|
2016-11-01 22:32:10 +01:00
|
|
|
};
|
|
|
|
|
2017-01-19 23:23:25 +01:00
|
|
|
exports.close = function () {
|
2017-05-27 18:55:41 +02:00
|
|
|
hashchange.exit_overlay();
|
2017-01-19 23:23:25 +01:00
|
|
|
};
|
|
|
|
|
2017-03-22 22:18:34 +01:00
|
|
|
exports.switch_rows = function (event) {
|
2017-03-23 05:15:16 +01:00
|
|
|
var active_data = get_active_data();
|
|
|
|
var switch_row;
|
2017-04-05 10:49:19 +02:00
|
|
|
if (window.location.hash === '#streams/new') {
|
|
|
|
// Prevent switching stream rows when creating a new stream
|
|
|
|
return false;
|
|
|
|
} else if (!active_data.id || active_data.row.hasClass('notdisplayed')) {
|
2017-03-23 05:15:16 +01:00
|
|
|
switch_row = $('div.stream-row:not(.notdisplayed):first');
|
2017-03-26 12:26:22 +02:00
|
|
|
if ($('#search_stream_name').is(":focus")) {
|
|
|
|
$('#search_stream_name').blur();
|
|
|
|
}
|
2017-05-25 23:53:19 +02:00
|
|
|
} else {
|
|
|
|
if (event === 'up_arrow') {
|
|
|
|
switch_row = active_data.row.prevAll().not('.notdisplayed').first();
|
|
|
|
} else if (event === 'down_arrow') {
|
|
|
|
switch_row = active_data.row.nextAll().not('.notdisplayed').first();
|
|
|
|
}
|
2017-03-26 12:26:22 +02:00
|
|
|
if ($('#search_stream_name').is(":focus")) {
|
|
|
|
// remove focus from Filter streams input instead of switching rows
|
|
|
|
// if Filter streams input is focused
|
|
|
|
return $('#search_stream_name').blur();
|
|
|
|
}
|
2017-03-22 02:49:52 +01:00
|
|
|
}
|
|
|
|
|
2017-03-23 05:15:16 +01:00
|
|
|
var row_data = get_row_data(switch_row);
|
2017-05-25 23:53:19 +02:00
|
|
|
if (row_data) {
|
2018-12-02 02:33:06 +01:00
|
|
|
var stream_id = row_data.id;
|
|
|
|
exports.switch_to_stream_row(stream_id);
|
2017-03-23 06:15:47 +01:00
|
|
|
} else if (event === 'up_arrow' && !row_data) {
|
|
|
|
$('#search_stream_name').focus();
|
2017-03-22 02:49:52 +01:00
|
|
|
}
|
2017-04-05 10:49:19 +02:00
|
|
|
return true;
|
2017-03-22 02:49:52 +01:00
|
|
|
};
|
|
|
|
|
2017-03-23 03:06:38 +01:00
|
|
|
exports.keyboard_sub = function () {
|
2017-03-23 05:15:16 +01:00
|
|
|
var active_data = get_active_data();
|
2017-03-25 01:27:52 +01:00
|
|
|
var row_data = get_row_data(active_data.row);
|
2017-03-23 05:15:16 +01:00
|
|
|
if (row_data) {
|
2017-03-25 01:27:52 +01:00
|
|
|
subs.sub_or_unsub(row_data.object);
|
|
|
|
if (row_data.object.subscribed && active_data.tab.text() === 'Subscribed') {
|
|
|
|
active_data.row.addClass('notdisplayed');
|
|
|
|
active_data.row.removeClass('active');
|
2017-03-23 05:15:16 +01:00
|
|
|
}
|
2017-03-23 03:06:38 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-03-23 06:02:01 +01:00
|
|
|
exports.toggle_view = function (event) {
|
|
|
|
var active_data = get_active_data();
|
2018-12-02 01:09:10 +01:00
|
|
|
|
2017-03-25 01:27:52 +01:00
|
|
|
if (event === 'right_arrow' && active_data.tab.text() === 'Subscribed') {
|
2018-12-02 01:09:10 +01:00
|
|
|
exports.toggler.goto('all-streams');
|
2017-03-25 01:27:52 +01:00
|
|
|
} else if (event === 'left_arrow' && active_data.tab.text() === 'All streams') {
|
2018-12-02 01:09:10 +01:00
|
|
|
exports.toggler.goto('subscribed');
|
2017-03-23 06:02:01 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-03-23 06:41:31 +01:00
|
|
|
exports.view_stream = function () {
|
|
|
|
var active_data = get_active_data();
|
2017-03-25 01:27:52 +01:00
|
|
|
var row_data = get_row_data(active_data.row);
|
2017-03-23 06:41:31 +01:00
|
|
|
if (row_data) {
|
2018-12-02 17:12:47 +01:00
|
|
|
var stream_narrow_hash = '#narrow/stream/' + hash_util.encode_stream_name(row_data.object.name);
|
|
|
|
hashchange.go_to_location(stream_narrow_hash);
|
2017-03-23 06:41:31 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-01-10 15:03:15 +01:00
|
|
|
function ajaxSubscribe(stream, color) {
|
2013-01-31 21:09:34 +01:00
|
|
|
// Subscribe yourself to a single stream.
|
|
|
|
var true_stream_name;
|
|
|
|
|
2013-12-18 19:55:18 +01:00
|
|
|
return channel.post({
|
2015-11-30 21:39:40 +01:00
|
|
|
url: "/json/users/me/subscriptions",
|
2019-01-10 15:03:15 +01:00
|
|
|
data: {subscriptions: JSON.stringify([{name: stream, color: color}]) },
|
2016-12-02 14:06:06 +01:00
|
|
|
success: function (resp, statusText, xhr) {
|
2017-05-27 15:40:54 +02:00
|
|
|
if (overlays.streams_open()) {
|
2017-01-19 23:23:37 +01:00
|
|
|
$("#create_stream_name").val("");
|
|
|
|
}
|
2013-01-31 21:09:34 +01:00
|
|
|
|
2016-08-24 23:56:23 +02:00
|
|
|
var res = JSON.parse(xhr.responseText);
|
2013-01-31 21:09:34 +01:00
|
|
|
if (!$.isEmptyObject(res.already_subscribed)) {
|
|
|
|
// Display the canonical stream capitalization.
|
2017-01-20 23:11:08 +01:00
|
|
|
true_stream_name = res.already_subscribed[people.my_current_email()][0];
|
2017-03-18 21:17:41 +01:00
|
|
|
ui_report.success(i18n.t("Already subscribed to __stream__", {stream: true_stream_name}),
|
2018-01-03 14:24:49 +01:00
|
|
|
$(".stream_change_property_info"));
|
2012-11-07 23:25:04 +01:00
|
|
|
}
|
2013-03-29 20:49:05 +01:00
|
|
|
// The rest of the work is done via the subscribe event we will get
|
2012-11-07 23:25:04 +01:00
|
|
|
},
|
|
|
|
error: function (xhr) {
|
2017-03-18 21:17:41 +01:00
|
|
|
ui_report.error(i18n.t("Error adding subscription"), xhr,
|
2018-01-03 14:24:49 +01:00
|
|
|
$(".stream_change_property_info"));
|
2017-01-12 00:17:43 +01:00
|
|
|
},
|
2012-11-07 23:25:04 +01:00
|
|
|
});
|
|
|
|
}
|
2012-10-09 21:01:41 +02:00
|
|
|
|
2017-03-05 03:47:28 +01:00
|
|
|
function ajaxUnsubscribe(sub) {
|
|
|
|
// TODO: use stream_id when backend supports it
|
2016-12-23 02:37:10 +01:00
|
|
|
return channel.del({
|
|
|
|
url: "/json/users/me/subscriptions",
|
2017-03-05 03:47:28 +01:00
|
|
|
data: {subscriptions: JSON.stringify([sub.name]) },
|
2016-12-02 14:06:06 +01:00
|
|
|
success: function () {
|
2018-01-03 14:24:49 +01:00
|
|
|
$(".stream_change_property_info").hide();
|
2013-03-29 20:49:05 +01:00
|
|
|
// The rest of the work is done via the unsubscribe event we will get
|
2012-10-03 22:24:17 +02:00
|
|
|
},
|
|
|
|
error: function (xhr) {
|
2017-03-18 21:17:41 +01:00
|
|
|
ui_report.error(i18n.t("Error removing subscription"), xhr,
|
2018-01-03 14:24:49 +01:00
|
|
|
$(".stream_change_property_info"));
|
2017-01-12 00:17:43 +01:00
|
|
|
},
|
2012-10-03 22:24:17 +02:00
|
|
|
});
|
2013-01-10 22:15:55 +01:00
|
|
|
}
|
2012-11-16 20:11:08 +01:00
|
|
|
|
2018-12-01 21:18:20 +01:00
|
|
|
exports.do_open_create_stream = function () {
|
|
|
|
// Only call this directly for hash changes.
|
|
|
|
// Prefer open_create_stream().
|
|
|
|
|
2017-04-22 22:22:25 +02:00
|
|
|
var stream = $.trim($("#search_stream_name").val());
|
2013-01-31 21:09:34 +01:00
|
|
|
|
2017-04-22 22:22:25 +02:00
|
|
|
if (!should_list_all_streams()) {
|
|
|
|
// Realms that don't allow listing streams should simply be subscribed to.
|
|
|
|
stream_create.set_name(stream);
|
|
|
|
ajaxSubscribe($("#search_stream_name").val());
|
|
|
|
return;
|
2013-08-27 19:14:18 +02:00
|
|
|
}
|
|
|
|
|
2017-04-22 22:22:25 +02:00
|
|
|
stream_create.new_stream_clicked(stream);
|
|
|
|
};
|
2013-01-31 21:09:34 +01:00
|
|
|
|
2018-12-01 21:18:20 +01:00
|
|
|
exports.open_create_stream = function () {
|
|
|
|
exports.do_open_create_stream();
|
2018-12-01 20:15:50 +01:00
|
|
|
hashchange.update_browser_history('#streams/new');
|
2018-12-01 21:18:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-03-04 18:10:23 +01:00
|
|
|
exports.sub_or_unsub = function (sub) {
|
2017-03-04 17:55:16 +01:00
|
|
|
if (sub.subscribed) {
|
2017-03-05 03:47:28 +01:00
|
|
|
ajaxUnsubscribe(sub);
|
2017-03-04 17:55:16 +01:00
|
|
|
} else {
|
2019-01-10 15:03:15 +01:00
|
|
|
ajaxSubscribe(sub.name, sub.color);
|
2017-03-04 17:55:16 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-05-15 22:03:14 +02:00
|
|
|
exports.initialize = function () {
|
2018-03-24 19:35:47 +01:00
|
|
|
add_email_hint_handler();
|
|
|
|
|
2017-09-29 19:17:03 +02:00
|
|
|
$("#subscriptions_table").on("click", ".create_stream_button", function (e) {
|
2012-10-31 18:36:08 +01:00
|
|
|
e.preventDefault();
|
2018-12-01 21:18:20 +01:00
|
|
|
exports.open_create_stream();
|
2013-01-31 21:09:34 +01:00
|
|
|
});
|
|
|
|
|
2016-11-01 22:32:10 +01:00
|
|
|
$(".subscriptions").on("click", "[data-dismiss]", function (e) {
|
|
|
|
e.preventDefault();
|
2016-12-13 21:58:11 +01:00
|
|
|
// we want to make sure that the click is not just a simulated
|
|
|
|
// click; this fixes an issue where hitting "enter" would
|
|
|
|
// trigger this code path due to bootstrap magic.
|
|
|
|
if (e.clientY !== 0) {
|
2017-04-24 04:11:25 +02:00
|
|
|
exports.show_subs_pane.nothing_selected();
|
2016-12-13 21:58:11 +01:00
|
|
|
}
|
2016-11-01 22:32:10 +01:00
|
|
|
});
|
2013-08-27 19:14:18 +02:00
|
|
|
|
2013-11-08 10:12:05 +01:00
|
|
|
$("body").on("mouseover", ".subscribed-button", function (e) {
|
2016-06-13 08:40:35 +02:00
|
|
|
$(e.target).addClass("btn-danger").text(i18n.t("Unsubscribe"));
|
2013-11-08 10:12:05 +01:00
|
|
|
}).on("mouseout", ".subscribed-button", function (e) {
|
2016-06-13 08:40:35 +02:00
|
|
|
$(e.target).removeClass("btn-danger").text(i18n.t("Subscribed"));
|
2013-11-08 10:12:05 +01:00
|
|
|
});
|
|
|
|
|
2016-12-02 14:06:06 +01:00
|
|
|
$("#subscriptions_table").on("click", ".email-address", function () {
|
2013-11-08 10:12:05 +01:00
|
|
|
selectText(this);
|
|
|
|
});
|
|
|
|
|
2016-03-22 16:50:09 +01:00
|
|
|
$('.empty_feed_sub_unsub').click(function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
$('#subscription-status').hide();
|
2017-04-25 15:25:31 +02:00
|
|
|
var stream_name = narrow_state.stream();
|
2016-03-22 16:50:09 +01:00
|
|
|
if (stream_name === undefined) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var sub = stream_data.get_sub(stream_name);
|
2017-03-04 18:40:46 +01:00
|
|
|
exports.sub_or_unsub(sub);
|
2016-03-22 16:50:09 +01:00
|
|
|
|
|
|
|
$('.empty_feed_notice').hide();
|
|
|
|
$('#empty_narrow_message').show();
|
|
|
|
});
|
|
|
|
|
2017-09-29 19:17:03 +02:00
|
|
|
$("#subscriptions_table").on("click", ".stream-row, .create_stream_button", function () {
|
2017-02-09 00:07:52 +01:00
|
|
|
$(".right").addClass("show");
|
|
|
|
$(".subscriptions-header").addClass("slide-left");
|
|
|
|
});
|
|
|
|
|
2017-06-12 22:44:09 +02:00
|
|
|
$("#subscriptions_table").on("click", ".fa-chevron-left", function () {
|
2017-02-09 00:07:52 +01:00
|
|
|
$(".right").removeClass("show");
|
|
|
|
$(".subscriptions-header").removeClass("slide-left");
|
|
|
|
});
|
|
|
|
|
2013-04-08 20:53:12 +02:00
|
|
|
$("#subscriptions_table").on("click", ".sub_setting_checkbox", function (e) {
|
|
|
|
var control = $(e.target).closest('.sub_setting_checkbox').find('.sub_setting_control');
|
|
|
|
// A hack. Don't change the state of the checkbox if we
|
|
|
|
// clicked on the checkbox itself.
|
|
|
|
if (control[0] !== e.target) {
|
2018-06-04 21:09:11 +02:00
|
|
|
control.prop("checked", !control.prop("checked"));
|
2013-04-08 20:53:12 +02:00
|
|
|
}
|
|
|
|
});
|
2016-10-28 02:44:40 +02:00
|
|
|
|
2016-11-01 22:32:10 +01:00
|
|
|
(function defocus_sub_settings() {
|
|
|
|
var sel = ".search-container, .streams-list, .subscriptions-header";
|
|
|
|
|
|
|
|
$("#subscriptions_table").on("click", sel, function (e) {
|
|
|
|
if ($(e.target).is(sel)) {
|
2018-12-01 21:53:09 +01:00
|
|
|
stream_edit.open_edit_panel_empty();
|
2016-11-01 22:32:10 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}());
|
|
|
|
|
2018-05-15 22:03:14 +02:00
|
|
|
};
|
2012-10-18 21:37:07 +02:00
|
|
|
|
|
|
|
return exports;
|
|
|
|
|
|
|
|
}());
|
2013-08-09 02:05:23 +02:00
|
|
|
if (typeof module !== 'undefined') {
|
|
|
|
module.exports = subs;
|
|
|
|
}
|
2018-05-28 08:04:36 +02:00
|
|
|
window.subs = subs;
|