mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 14:03:30 +00:00
The var in question is indexed by stream_id, so stream_dict seems like a good name for it. We want to distinguish per-stream data structures from the stream-level entry points.
71 lines
1.6 KiB
JavaScript
71 lines
1.6 KiB
JavaScript
var topic_data = (function () {
|
|
|
|
var exports = {};
|
|
|
|
var stream_dict = new Dict(); // stream_id -> array of objects
|
|
|
|
exports.stream_has_topics = function (stream_id) {
|
|
return stream_dict.has(stream_id);
|
|
};
|
|
|
|
exports.process_message = function (message, remove_message) {
|
|
var current_timestamp = 0;
|
|
var count = 0;
|
|
var stream_id = message.stream_id;
|
|
var canon_topic = message.subject.toLowerCase();
|
|
|
|
var recents = stream_dict.get(stream_id) || [];
|
|
|
|
recents = _.filter(recents, function (item) {
|
|
var is_duplicate = (
|
|
item.name.toLowerCase() === canon_topic);
|
|
if (is_duplicate) {
|
|
current_timestamp = item.timestamp;
|
|
count = item.count;
|
|
}
|
|
return !is_duplicate;
|
|
});
|
|
|
|
if (remove_message !== undefined) {
|
|
count = count - 1;
|
|
} else {
|
|
count = count + 1;
|
|
}
|
|
|
|
if (count !== 0) {
|
|
recents.push({name: message.subject,
|
|
count: count,
|
|
timestamp: Math.max(message.timestamp, current_timestamp)});
|
|
}
|
|
|
|
recents.sort(function (a, b) {
|
|
return b.timestamp - a.timestamp;
|
|
});
|
|
|
|
stream_dict.set(stream_id, recents);
|
|
};
|
|
|
|
exports.get_recent_names = function (stream_id) {
|
|
var topic_objs = stream_dict.get(stream_id);
|
|
|
|
if (!topic_objs) {
|
|
return [];
|
|
}
|
|
|
|
return _.map(topic_objs, function (obj) {
|
|
return obj.name;
|
|
});
|
|
};
|
|
|
|
exports.populate_for_tests = function (stream_map) {
|
|
// This is only used by tests.
|
|
stream_dict = Dict.from(stream_map);
|
|
};
|
|
|
|
return exports;
|
|
|
|
}());
|
|
if (typeof module !== 'undefined') {
|
|
module.exports = topic_data;
|
|
}
|