164 lines
4.6 KiB
Dart
164 lines
4.6 KiB
Dart
import 'dart:async';
|
|
import 'dart:math' as math;
|
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
|
import 'package:island/models/chat.dart';
|
|
import 'package:island/pods/network.dart';
|
|
import 'package:island/pods/websocket.dart';
|
|
import 'package:island/pods/chat/chat_subscribe.dart';
|
|
|
|
part 'chat_summary.g.dart';
|
|
|
|
@riverpod
|
|
class ChatUnreadCountNotifier extends _$ChatUnreadCountNotifier {
|
|
StreamSubscription<WebSocketPacket>? _subscription;
|
|
|
|
@override
|
|
Future<int> build() async {
|
|
// Subscribe to websocket events when this provider is built
|
|
_subscribeToWebSocket();
|
|
|
|
// Dispose the subscription when this provider is disposed
|
|
ref.onDispose(() {
|
|
_subscription?.cancel();
|
|
});
|
|
|
|
try {
|
|
final client = ref.read(apiClientProvider);
|
|
final response = await client.get('/sphere/chat/unread');
|
|
return (response.data as num).toInt();
|
|
} catch (_) {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
void _subscribeToWebSocket() {
|
|
final webSocketService = ref.read(websocketProvider);
|
|
_subscription = webSocketService.dataStream.listen((packet) {
|
|
if (packet.type == 'messages.new' && packet.data != null) {
|
|
final message = SnChatMessage.fromJson(packet.data!);
|
|
final currentSubscribed = ref.read(currentSubscribedChatIdProvider);
|
|
// Only increment if the message is not from the currently subscribed chat
|
|
if (message.chatRoomId != currentSubscribed) {
|
|
_incrementCounter();
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
Future<void> _incrementCounter() async {
|
|
final current = await future;
|
|
state = AsyncData(current + 1);
|
|
}
|
|
|
|
Future<void> decrement(int count) async {
|
|
final current = await future;
|
|
state = AsyncData(math.max(current - count, 0));
|
|
}
|
|
|
|
void clear() async {
|
|
state = AsyncData(0);
|
|
}
|
|
}
|
|
|
|
@riverpod
|
|
class ChatSummary extends _$ChatSummary {
|
|
@override
|
|
Future<Map<String, SnChatSummary>> build() async {
|
|
final client = ref.watch(apiClientProvider);
|
|
final resp = await client.get('/sphere/chat/summary');
|
|
|
|
final Map<String, dynamic> data = resp.data;
|
|
final summaries = data.map(
|
|
(key, value) => MapEntry(key, SnChatSummary.fromJson(value)),
|
|
);
|
|
|
|
final ws = ref.watch(websocketProvider);
|
|
final subscription = ws.dataStream.listen((WebSocketPacket pkt) {
|
|
if (!pkt.type.startsWith('messages')) return;
|
|
if (pkt.type == 'messages.new') {
|
|
final message = SnChatMessage.fromJson(pkt.data!);
|
|
updateLastMessage(message.chatRoomId, message);
|
|
} else if (pkt.type == 'messages.update') {
|
|
final message = SnChatMessage.fromJson(pkt.data!);
|
|
updateMessageContent(message.chatRoomId, message);
|
|
}
|
|
});
|
|
|
|
ref.onDispose(() {
|
|
subscription.cancel();
|
|
});
|
|
|
|
return summaries;
|
|
}
|
|
|
|
Future<void> clearUnreadCount(String chatId) async {
|
|
state.whenData((summaries) {
|
|
final summary = summaries[chatId];
|
|
if (summary != null) {
|
|
// Decrement global unread count
|
|
final unreadToDecrement = summary.unreadCount;
|
|
if (unreadToDecrement > 0) {
|
|
ref
|
|
.read(chatUnreadCountNotifierProvider.notifier)
|
|
.decrement(unreadToDecrement);
|
|
}
|
|
|
|
state = AsyncData({
|
|
...summaries,
|
|
chatId: SnChatSummary(
|
|
unreadCount: 0,
|
|
lastMessage: summary.lastMessage,
|
|
),
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
void updateLastMessage(String chatId, SnChatMessage message) {
|
|
state.whenData((summaries) {
|
|
final summary = summaries[chatId];
|
|
if (summary != null) {
|
|
final currentSubscribed = ref.read(currentSubscribedChatIdProvider);
|
|
final increment = (chatId != currentSubscribed) ? 1 : 0;
|
|
state = AsyncData({
|
|
...summaries,
|
|
chatId: SnChatSummary(
|
|
unreadCount: summary.unreadCount + increment,
|
|
lastMessage: message,
|
|
),
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
void incrementUnreadCount(String chatId) {
|
|
state.whenData((summaries) {
|
|
final summary = summaries[chatId];
|
|
if (summary != null) {
|
|
state = AsyncData({
|
|
...summaries,
|
|
chatId: SnChatSummary(
|
|
unreadCount: summary.unreadCount + 1,
|
|
lastMessage: summary.lastMessage,
|
|
),
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
void updateMessageContent(String chatId, SnChatMessage message) {
|
|
state.whenData((summaries) {
|
|
final summary = summaries[chatId];
|
|
if (summary != null && summary.lastMessage?.id == message.id) {
|
|
state = AsyncData({
|
|
...summaries,
|
|
chatId: SnChatSummary(
|
|
unreadCount: summary.unreadCount,
|
|
lastMessage: message,
|
|
),
|
|
});
|
|
}
|
|
});
|
|
}
|
|
}
|