2023-10-29 18:27:01 +03:00
|
|
|
// This is like very lame "type-checking" lol
|
|
|
|
const notificationTypeKeys = {
|
|
|
|
mention: ['account', 'status'],
|
|
|
|
status: ['account', 'status'],
|
|
|
|
reblog: ['account', 'status'],
|
|
|
|
follow: ['account'],
|
|
|
|
follow_request: ['account'],
|
|
|
|
favourite: ['account', 'status'],
|
|
|
|
poll: ['status'],
|
|
|
|
update: ['status'],
|
|
|
|
};
|
2024-04-18 12:15:51 +03:00
|
|
|
export function fixNotifications(notifications) {
|
2023-10-29 18:27:01 +03:00
|
|
|
return notifications.filter((notification) => {
|
|
|
|
const { type, id, createdAt } = notification;
|
|
|
|
if (!type) {
|
|
|
|
console.warn('Notification missing type', notification);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!id || !createdAt) {
|
|
|
|
console.warn('Notification missing id or createdAt', notification);
|
|
|
|
// Continue processing this despite missing id or createdAt
|
|
|
|
}
|
|
|
|
const keys = notificationTypeKeys[type];
|
|
|
|
if (keys?.length) {
|
|
|
|
return keys.every((key) => !!notification[key]);
|
|
|
|
}
|
|
|
|
return true; // skip other types
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-07-12 13:57:48 +03:00
|
|
|
export function groupNotifications2(groupNotifications) {
|
|
|
|
// Massage grouped notifications to look like faux grouped notifications above
|
|
|
|
const newGroupNotifications = groupNotifications.map((gn) => {
|
|
|
|
const {
|
|
|
|
latestPageNotificationAt,
|
|
|
|
mostRecentNotificationId,
|
|
|
|
sampleAccounts,
|
|
|
|
notificationsCount,
|
|
|
|
} = gn;
|
|
|
|
|
|
|
|
return {
|
|
|
|
id: '' + mostRecentNotificationId,
|
|
|
|
createdAt: latestPageNotificationAt,
|
|
|
|
account: sampleAccounts[0],
|
|
|
|
...gn,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
// DISABLED FOR NOW.
|
|
|
|
// Merge favourited and reblogged of same status into a single notification
|
|
|
|
// - new type: "favourite+reblog"
|
|
|
|
// - sum numbers for `notificationsCount` and `sampleAccounts`
|
|
|
|
// const mappedNotifications = {};
|
|
|
|
// const newNewGroupNotifications = [];
|
|
|
|
// for (let i = 0; i < newGroupNotifications.length; i++) {
|
|
|
|
// const gn = newGroupNotifications[i];
|
|
|
|
// const { type, status, createdAt, notificationsCount, sampleAccounts } = gn;
|
|
|
|
// const date = createdAt ? new Date(createdAt).toLocaleDateString() : '';
|
|
|
|
// let virtualType = type;
|
|
|
|
// if (type === 'favourite' || type === 'reblog') {
|
|
|
|
// virtualType = 'favourite+reblog';
|
|
|
|
// }
|
|
|
|
// const key = `${status?.id}-${virtualType}-${date}`;
|
|
|
|
// const mappedNotification = mappedNotifications[key];
|
|
|
|
// if (mappedNotification) {
|
|
|
|
// const accountIDs = mappedNotification.sampleAccounts.map((a) => a.id);
|
|
|
|
// sampleAccounts.forEach((a) => {
|
|
|
|
// if (!accountIDs.includes(a.id)) {
|
|
|
|
// mappedNotification.sampleAccounts.push(a);
|
|
|
|
// }
|
|
|
|
// });
|
|
|
|
// mappedNotification.notificationsCount = Math.max(
|
|
|
|
// mappedNotification.notificationsCount,
|
|
|
|
// notificationsCount,
|
|
|
|
// mappedNotification.sampleAccounts.length,
|
|
|
|
// );
|
|
|
|
// } else {
|
|
|
|
// mappedNotifications[key] = {
|
|
|
|
// ...gn,
|
|
|
|
// type: virtualType,
|
|
|
|
// };
|
|
|
|
// newNewGroupNotifications.push(mappedNotifications[key]);
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// 2nd pass.
|
|
|
|
// - Group 1 account favourte/reblog multiple posts
|
|
|
|
// - _statuses: [status, status, ...]
|
|
|
|
const notificationsMap2 = {};
|
|
|
|
const newGroupNotifications2 = [];
|
|
|
|
for (let i = 0; i < newGroupNotifications.length; i++) {
|
|
|
|
const gn = newGroupNotifications[i];
|
|
|
|
const { type, account, _accounts, sampleAccounts, createdAt } = gn;
|
|
|
|
const date = createdAt ? new Date(createdAt).toLocaleDateString() : '';
|
|
|
|
const hasOneAccount =
|
|
|
|
sampleAccounts?.length === 1 || _accounts?.length === 1;
|
|
|
|
if ((type === 'favourite' || type === 'reblog') && hasOneAccount) {
|
|
|
|
const key = `${account?.id}-${type}-${date}`;
|
|
|
|
const mappedNotification = notificationsMap2[key];
|
|
|
|
if (mappedNotification) {
|
|
|
|
mappedNotification._statuses.push(gn.status);
|
2024-07-21 15:31:10 +03:00
|
|
|
mappedNotification._ids += `-${gn.id}`;
|
2024-07-12 13:57:48 +03:00
|
|
|
} else {
|
|
|
|
let n = (notificationsMap2[key] = {
|
|
|
|
...gn,
|
|
|
|
type,
|
2024-07-21 15:31:10 +03:00
|
|
|
_ids: gn.id,
|
2024-07-12 13:57:48 +03:00
|
|
|
_statuses: [gn.status],
|
|
|
|
});
|
|
|
|
newGroupNotifications2.push(n);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
newGroupNotifications2.push(gn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return newGroupNotifications2;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function groupNotifications(notifications) {
|
2023-10-29 18:27:01 +03:00
|
|
|
// Filter out invalid notifications
|
|
|
|
notifications = fixNotifications(notifications);
|
|
|
|
|
2023-04-30 16:03:09 +03:00
|
|
|
// Create new flat list of notifications
|
|
|
|
// Combine sibling notifications based on type and status id
|
|
|
|
// Concat all notification.account into an array of _accounts
|
|
|
|
const notificationsMap = {};
|
|
|
|
const cleanNotifications = [];
|
|
|
|
for (let i = 0, j = 0; i < notifications.length; i++) {
|
|
|
|
const notification = notifications[i];
|
2023-10-23 11:24:30 +03:00
|
|
|
const { id, status, account, type, createdAt } = notification;
|
2023-10-29 18:27:01 +03:00
|
|
|
const date = createdAt ? new Date(createdAt).toLocaleDateString() : '';
|
2023-04-30 16:03:09 +03:00
|
|
|
let virtualType = type;
|
|
|
|
if (type === 'favourite' || type === 'reblog') {
|
|
|
|
virtualType = 'favourite+reblog';
|
|
|
|
}
|
|
|
|
const key = `${status?.id}-${virtualType}-${date}`;
|
|
|
|
const mappedNotification = notificationsMap[key];
|
|
|
|
if (virtualType === 'follow_request') {
|
|
|
|
cleanNotifications[j++] = notification;
|
|
|
|
} else if (mappedNotification?.account) {
|
|
|
|
const mappedAccount = mappedNotification._accounts.find(
|
|
|
|
(a) => a.id === account.id,
|
|
|
|
);
|
|
|
|
if (mappedAccount) {
|
|
|
|
mappedAccount._types.push(type);
|
|
|
|
mappedAccount._types.sort().reverse();
|
2024-07-21 15:31:10 +03:00
|
|
|
mappedNotification._ids += `-${id}`;
|
2023-04-30 16:03:09 +03:00
|
|
|
} else {
|
|
|
|
account._types = [type];
|
|
|
|
mappedNotification._accounts.push(account);
|
2024-07-21 15:31:10 +03:00
|
|
|
mappedNotification._ids += `-${id}`;
|
2023-04-30 16:03:09 +03:00
|
|
|
}
|
|
|
|
} else {
|
2024-03-24 09:13:58 +03:00
|
|
|
if (account) account._types = [type];
|
2023-04-30 16:03:09 +03:00
|
|
|
let n = (notificationsMap[key] = {
|
|
|
|
...notification,
|
|
|
|
type: virtualType,
|
2024-07-21 15:31:10 +03:00
|
|
|
_ids: id,
|
2024-03-24 09:13:58 +03:00
|
|
|
_accounts: account ? [account] : [],
|
2023-04-30 16:03:09 +03:00
|
|
|
});
|
|
|
|
cleanNotifications[j++] = n;
|
|
|
|
}
|
|
|
|
}
|
2023-08-27 08:06:26 +03:00
|
|
|
|
|
|
|
// 2nd pass to group "favourite+reblog"-type notifications by account if _accounts.length <= 1
|
|
|
|
// This means one acount has favourited and reblogged the multiple statuses
|
|
|
|
// The grouped notification
|
|
|
|
// - type: "favourite+reblog+account"
|
|
|
|
// - _statuses: [status, status, ...]
|
|
|
|
const notificationsMap2 = {};
|
|
|
|
const cleanNotifications2 = [];
|
|
|
|
for (let i = 0, j = 0; i < cleanNotifications.length; i++) {
|
|
|
|
const notification = cleanNotifications[i];
|
2023-10-23 11:24:30 +03:00
|
|
|
const { id, account, _accounts, type, createdAt } = notification;
|
2023-10-29 18:27:01 +03:00
|
|
|
const date = createdAt ? new Date(createdAt).toLocaleDateString() : '';
|
2023-08-27 08:06:26 +03:00
|
|
|
if (type === 'favourite+reblog' && account && _accounts.length === 1) {
|
|
|
|
const key = `${account?.id}-${type}-${date}`;
|
|
|
|
const mappedNotification = notificationsMap2[key];
|
|
|
|
if (mappedNotification) {
|
|
|
|
mappedNotification._statuses.push(notification.status);
|
2024-07-21 15:31:10 +03:00
|
|
|
mappedNotification._ids += `-${id}`;
|
2023-08-27 08:06:26 +03:00
|
|
|
} else {
|
|
|
|
let n = (notificationsMap2[key] = {
|
|
|
|
...notification,
|
|
|
|
type,
|
2024-07-21 15:31:10 +03:00
|
|
|
_ids: id,
|
2023-08-27 08:06:26 +03:00
|
|
|
_statuses: [notification.status],
|
|
|
|
});
|
|
|
|
cleanNotifications2[j++] = n;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cleanNotifications2[j++] = notification;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log({ notifications, cleanNotifications, cleanNotifications2 });
|
|
|
|
|
|
|
|
// return cleanNotifications;
|
|
|
|
return cleanNotifications2;
|
2023-04-30 16:03:09 +03:00
|
|
|
}
|