mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 06:23:38 +00:00
We now treat util like a leaf module and use "require" to import it everywhere it's used. An earlier version of this commit moved util into our "shared" library, but we decided to wait on that. Once we're ready to do that, we should only need to do a simple search/replace on various require/zrequire statements plus a small tweak to one of the custom linter checks. It turns out we don't really need util.js for our most immediate code-sharing goal, which is to reuse our markdown code on mobile. There's a little bit of cleanup still remaining to break the dependency, but it's minor. The util module still calls the global blueslip module in one place, but that code is about to be removed in the next few commits. I am pretty confident that once we start sharing things like the typeahead code more aggressively, we'll start having dependencies on util. The module is barely more than 300 lines long, so we'll probably just move the whole thing into shared rather than break it apart. Also, we can continue to nibble away at the cruftier parts of the module.
146 lines
4.4 KiB
JavaScript
146 lines
4.4 KiB
JavaScript
const util = require("./util");
|
|
const render_muted_topic_ui_row = require('../templates/muted_topic_ui_row.hbs');
|
|
const render_topic_muted = require('../templates/topic_muted.hbs');
|
|
|
|
function timestamp_ms() {
|
|
return new Date().getTime();
|
|
}
|
|
|
|
let last_topic_update = 0;
|
|
|
|
exports.rerender = function () {
|
|
// Note: We tend to optimistically rerender muting preferences before
|
|
// the back end actually acknowledges the mute. This gives a more
|
|
// immediate feel to the user, and if the back end fails temporarily,
|
|
// re-doing a mute or unmute is a pretty recoverable thing.
|
|
|
|
stream_list.update_streams_sidebar();
|
|
if (current_msg_list.muting_enabled) {
|
|
current_msg_list.update_muting_and_rerender();
|
|
}
|
|
if (current_msg_list !== home_msg_list) {
|
|
home_msg_list.update_muting_and_rerender();
|
|
}
|
|
};
|
|
|
|
exports.persist_mute = function (stream_id, topic_name) {
|
|
const data = {
|
|
stream_id: stream_id,
|
|
topic: topic_name,
|
|
op: 'add',
|
|
};
|
|
last_topic_update = timestamp_ms();
|
|
channel.patch({
|
|
url: '/json/users/me/subscriptions/muted_topics',
|
|
idempotent: true,
|
|
data: data,
|
|
});
|
|
};
|
|
|
|
exports.persist_unmute = function (stream_id, topic_name) {
|
|
const data = {
|
|
stream_id: stream_id,
|
|
topic: topic_name,
|
|
op: 'remove',
|
|
};
|
|
last_topic_update = timestamp_ms();
|
|
channel.patch({
|
|
url: '/json/users/me/subscriptions/muted_topics',
|
|
idempotent: true,
|
|
data: data,
|
|
});
|
|
};
|
|
|
|
exports.handle_updates = function (muted_topics) {
|
|
if (timestamp_ms() < last_topic_update + 1000) {
|
|
// This topic update is either the one that we just rendered, or,
|
|
// much less likely, it's coming from another device and would probably
|
|
// be overwriting this device's preferences with stale data.
|
|
return;
|
|
}
|
|
|
|
exports.update_muted_topics(muted_topics);
|
|
exports.rerender();
|
|
};
|
|
|
|
exports.update_muted_topics = function (muted_topics) {
|
|
muting.set_muted_topics(muted_topics);
|
|
unread_ui.update_unread_counts();
|
|
};
|
|
|
|
exports.set_up_muted_topics_ui = function (muted_topics) {
|
|
const muted_topics_table = $("#muted_topics_table tbody");
|
|
muted_topics_table.empty();
|
|
|
|
for (const tup of muted_topics) {
|
|
const stream_id = tup[0];
|
|
const topic = tup[1];
|
|
|
|
const stream = stream_data.maybe_get_stream_name(stream_id);
|
|
|
|
if (!stream) {
|
|
blueslip.warn('Unknown stream_id in set_up_muted_topics_ui: ' + stream_id);
|
|
continue;
|
|
}
|
|
|
|
const template_data = {
|
|
stream: stream,
|
|
stream_id: stream_id,
|
|
topic: topic,
|
|
};
|
|
|
|
const row = render_muted_topic_ui_row(template_data);
|
|
muted_topics_table.append(row);
|
|
}
|
|
};
|
|
|
|
exports.mute = function (stream_id, topic) {
|
|
const stream_name = stream_data.maybe_get_stream_name(stream_id);
|
|
|
|
stream_popover.hide_topic_popover();
|
|
muting.add_muted_topic(stream_id, topic);
|
|
unread_ui.update_unread_counts();
|
|
exports.rerender();
|
|
exports.persist_mute(stream_id, topic);
|
|
feedback_widget.show({
|
|
populate: function (container) {
|
|
const rendered_html = render_topic_muted();
|
|
container.html(rendered_html);
|
|
container.find(".stream").text(stream_name);
|
|
container.find(".topic").text(topic);
|
|
},
|
|
on_undo: function () {
|
|
exports.unmute(stream_id, topic);
|
|
},
|
|
title_text: i18n.t("Topic muted"),
|
|
undo_button_text: i18n.t("Unmute"),
|
|
});
|
|
exports.set_up_muted_topics_ui(muting.get_muted_topics());
|
|
};
|
|
|
|
exports.unmute = function (stream_id, topic) {
|
|
// we don't run a unmute_notify function because it isn't an issue as much
|
|
// if someone accidentally unmutes a stream rather than if they mute it
|
|
// and miss out on info.
|
|
stream_popover.hide_topic_popover();
|
|
muting.remove_muted_topic(stream_id, topic);
|
|
unread_ui.update_unread_counts();
|
|
exports.rerender();
|
|
exports.persist_unmute(stream_id, topic);
|
|
exports.set_up_muted_topics_ui(muting.get_muted_topics());
|
|
feedback_widget.dismiss();
|
|
};
|
|
|
|
exports.toggle_mute = function (message) {
|
|
const stream_id = message.stream_id;
|
|
const topic = util.get_message_topic(message);
|
|
|
|
if (muting.is_topic_muted(stream_id, topic)) {
|
|
exports.unmute(stream_id, topic);
|
|
} else if (message.type === 'stream') {
|
|
exports.mute(stream_id, topic);
|
|
}
|
|
};
|
|
|
|
window.muting_ui = exports;
|