feat: closes #10601, ability to prevent alerts on topic list

isekai-main
Barış Soner Uşaklı 3 years ago
parent f07b4484cf
commit dc320c897a

@ -101,7 +101,9 @@ define('topicList', [
const category = d.template.category && const category = d.template.category &&
parseInt(d.cid, 10) !== parseInt(data.cid, 10); parseInt(d.cid, 10) !== parseInt(data.cid, 10);
if (categories || filterWatched || category || scheduledTopics.includes(data.tid)) { const preventAlert = !!(categories || filterWatched || category || scheduledTopics.includes(data.tid));
hooks.fire('filter:topicList.onNewTopic', { topic: data, preventAlert }).then((result) => {
if (result.preventAlert) {
return; return;
} }
@ -110,6 +112,7 @@ define('topicList', [
} }
newTopicCount += 1; newTopicCount += 1;
updateAlertText(); updateAlertText();
});
} }
function onNewPost(data) { function onNewPost(data) {
@ -132,12 +135,15 @@ define('topicList', [
const category = d.template.category && const category = d.template.category &&
parseInt(d.cid, 10) !== parseInt(post.topic.cid, 10); parseInt(d.cid, 10) !== parseInt(post.topic.cid, 10);
if (isMain || categories || filterNew || filterWatched || category) { const preventAlert = !!(isMain || categories || filterNew || filterWatched || category);
hooks.fire('filter:topicList.onNewPost', { post, preventAlert }).then((result) => {
if (result.preventAlert) {
return; return;
} }
newPostCount += 1; newPostCount += 1;
updateAlertText(); updateAlertText();
});
} }
function updateAlertText() { function updateAlertText() {

Loading…
Cancel
Save