2020-06-07 04:50:31 +02:00
|
|
|
const render_message_edit_history = require('../templates/message_edit_history.hbs');
|
|
|
|
|
|
|
|
exports.fetch_and_render_message_history = function (message) {
|
|
|
|
channel.get({
|
|
|
|
url: "/json/messages/" + message.id + "/history",
|
|
|
|
data: {message_id: JSON.stringify(message.id)},
|
|
|
|
success: function (data) {
|
|
|
|
const content_edit_history = [];
|
2020-06-02 13:28:33 +02:00
|
|
|
let prev_datestamp = null;
|
2020-06-07 04:50:31 +02:00
|
|
|
|
|
|
|
for (const [index, msg] of data.message_history.entries()) {
|
2020-06-02 13:28:33 +02:00
|
|
|
// Format times and dates nicely for display
|
|
|
|
const time = new XDate(msg.timestamp * 1000);
|
|
|
|
const datestamp = time.toDateString();
|
2020-06-07 04:50:31 +02:00
|
|
|
const item = {
|
2020-06-02 14:52:06 +02:00
|
|
|
timestamp: timerender.stringify_time(time),
|
2020-06-02 13:28:33 +02:00
|
|
|
display_date: time.toString("MMMM d, yyyy"),
|
|
|
|
show_date_row: datestamp !== prev_datestamp,
|
2020-06-07 04:50:31 +02:00
|
|
|
};
|
2020-06-02 13:28:33 +02:00
|
|
|
|
2020-06-07 04:50:31 +02:00
|
|
|
if (msg.user_id) {
|
|
|
|
const person = people.get_by_user_id(msg.user_id);
|
|
|
|
item.edited_by = person.full_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index === 0) {
|
|
|
|
item.posted_or_edited = "Posted by";
|
|
|
|
item.body_to_render = msg.rendered_content;
|
|
|
|
} else if (msg.prev_topic && msg.prev_content) {
|
|
|
|
item.posted_or_edited = "Edited by";
|
|
|
|
item.body_to_render = msg.content_html_diff;
|
|
|
|
item.topic_edited = true;
|
|
|
|
item.prev_topic = msg.prev_topic;
|
|
|
|
item.new_topic = msg.topic;
|
|
|
|
} else if (msg.prev_topic) {
|
|
|
|
item.posted_or_edited = "Topic edited by";
|
|
|
|
item.topic_edited = true;
|
|
|
|
item.prev_topic = msg.prev_topic;
|
|
|
|
item.new_topic = msg.topic;
|
|
|
|
} else {
|
|
|
|
// just a content edit
|
|
|
|
item.posted_or_edited = "Edited by";
|
|
|
|
item.body_to_render = msg.content_html_diff;
|
|
|
|
}
|
|
|
|
|
|
|
|
content_edit_history.push(item);
|
2020-06-03 09:34:18 +02:00
|
|
|
|
2020-06-02 13:28:33 +02:00
|
|
|
prev_datestamp = datestamp;
|
2020-06-07 04:50:31 +02:00
|
|
|
}
|
|
|
|
$('#message-history').attr('data-message-id', message.id);
|
|
|
|
$('#message-history').html(render_message_edit_history({
|
|
|
|
edited_messages: content_edit_history,
|
|
|
|
}));
|
|
|
|
},
|
|
|
|
error: function (xhr) {
|
|
|
|
ui_report.error(i18n.t("Error fetching message edit history"), xhr,
|
|
|
|
$("#message-history-error"));
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.show_history = function (message) {
|
|
|
|
$('#message-history').html('');
|
|
|
|
$('#message-edit-history').modal("show");
|
|
|
|
exports.fetch_and_render_message_history(message);
|
|
|
|
};
|
|
|
|
|
|
|
|
window.message_edit_history = exports;
|