Rearrange/code this part again

- Streaming wasn't UNSUBscribed due to the forever-stuck loop
- Make streaming start later
This commit is contained in:
Lim Chee Aun 2023-11-01 22:26:21 +08:00
parent 3361ffc366
commit 0c3449aba4

View file

@ -8,6 +8,9 @@ import states, { saveStatus } from '../utils/states';
import useInterval from '../utils/useInterval'; import useInterval from '../utils/useInterval';
import usePageVisibility from '../utils/usePageVisibility'; import usePageVisibility from '../utils/usePageVisibility';
const STREAMING_TIMEOUT = 1000 * 3; // 3 seconds
const POLL_INTERVAL = 1000 * 60; // 1 minute
export default memo(function BackgroundService({ isLoggedIn }) { export default memo(function BackgroundService({ isLoggedIn }) {
// Notifications service // Notifications service
// - WebSocket to receive notifications when page is visible // - WebSocket to receive notifications when page is visible
@ -53,12 +56,15 @@ export default memo(function BackgroundService({ isLoggedIn }) {
let hasStreaming = false; let hasStreaming = false;
// 2. Start streaming // 2. Start streaming
if (streaming) { if (streaming) {
pollNotifications = setTimeout(() => {
(async () => {
try { try {
hasStreaming = true; hasStreaming = true;
sub = streaming.user.notification.subscribe(); sub = streaming.user.notification.subscribe();
console.log('🎏 Streaming notification', sub); console.log('🎏 Streaming notification', sub);
for await (const entry of sub) { for await (const entry of sub) {
if (!sub) break; if (!sub) break;
if (!visible) break;
console.log('🔔🔔 Notification entry', entry); console.log('🔔🔔 Notification entry', entry);
if (entry.event === 'notification') { if (entry.event === 'notification') {
console.log('🔔🔔 Notification', entry); console.log('🔔🔔 Notification', entry);
@ -72,20 +78,22 @@ export default memo(function BackgroundService({ isLoggedIn }) {
hasStreaming = false; hasStreaming = false;
console.error(e); console.error(e);
} }
}
if (!hasStreaming) { if (!hasStreaming) {
console.log('🎏 Streaming failed, fallback to polling'); console.log('🎏 Streaming failed, fallback to polling');
// Fallback to polling every minute
pollNotifications = setInterval(() => { pollNotifications = setInterval(() => {
checkLatestNotification(masto, instance, true); checkLatestNotification(masto, instance, true);
}, 1000 * 60); }, POLL_INTERVAL);
}
})();
}, STREAMING_TIMEOUT);
} }
})(); })();
} }
return () => { return () => {
sub?.unsubscribe?.(); sub?.unsubscribe?.();
sub = null; sub = null;
clearTimeout(pollNotifications);
clearInterval(pollNotifications); clearInterval(pollNotifications);
}; };
}, [visible, isLoggedIn]); }, [visible, isLoggedIn]);