forked from mystiq/hydrogen-web
extract fn
This commit is contained in:
parent
b13bfee3d8
commit
2cfe7034e8
1 changed files with 15 additions and 10 deletions
|
@ -68,6 +68,13 @@ function applySyncResponse(data, roomResponse, membership, ownUserId) {
|
||||||
}
|
}
|
||||||
const unreadNotifications = roomResponse.unread_notifications;
|
const unreadNotifications = roomResponse.unread_notifications;
|
||||||
if (unreadNotifications) {
|
if (unreadNotifications) {
|
||||||
|
data = processNotificationCounts(data, unreadNotifications);
|
||||||
|
}
|
||||||
|
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
function processNotificationCounts(data, unreadNotifications) {
|
||||||
const highlightCount = unreadNotifications.highlight_count || 0;
|
const highlightCount = unreadNotifications.highlight_count || 0;
|
||||||
if (highlightCount !== data.highlightCount) {
|
if (highlightCount !== data.highlightCount) {
|
||||||
data = data.cloneIfNeeded();
|
data = data.cloneIfNeeded();
|
||||||
|
@ -78,8 +85,6 @@ function applySyncResponse(data, roomResponse, membership, ownUserId) {
|
||||||
data = data.cloneIfNeeded();
|
data = data.cloneIfNeeded();
|
||||||
data.notificationCount = notificationCount;
|
data.notificationCount = notificationCount;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue