Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 13,298 Bytes
5acd9c3 d7edecf 5acd9c3 d7edecf 5acd9c3 d7edecf 5acd9c3 d7edecf 5acd9c3 d7edecf 5acd9c3 d7edecf 5acd9c3 d7edecf 5acd9c3 d7edecf 5acd9c3 d7edecf 5acd9c3 d7edecf 5acd9c3 d7edecf 5acd9c3 d7edecf 5acd9c3 d7edecf 5acd9c3 d7edecf 5acd9c3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 |
// lib/widgets/chat_widget.dart
import 'dart:async';
import 'package:flutter/material.dart';
import '../models/chat_message.dart';
import '../services/chat_service.dart';
import '../theme/colors.dart';
class ChatWidget extends StatefulWidget {
final String videoId;
final bool isCompact;
const ChatWidget({
super.key,
required this.videoId,
this.isCompact = false,
});
@override
State<ChatWidget> createState() => _ChatWidgetState();
}
class _ChatWidgetState extends State<ChatWidget> {
final _chatService = ChatService();
final _messageController = TextEditingController();
final _scrollController = ScrollController();
final _messages = <ChatMessage>[];
// Track message IDs to prevent duplicates
final _messageIds = <String>{};
bool _isLoading = true;
bool _isSending = false;
String? _error;
Timer? _reconnectTimer;
bool _disposed = false;
@override
void initState() {
super.initState();
_initialize();
}
Future<void> _initialize() async {
if (_disposed) return;
debugPrint('ChatWidget: Starting initialization for video ${widget.videoId}...');
try {
await _chatService.initialize();
int retryCount = 0;
const maxRetries = 3;
while (retryCount < maxRetries && !_disposed) {
try {
debugPrint('ChatWidget: Attempting to join room ${widget.videoId} (attempt ${retryCount + 1})');
await _chatService.joinRoom(widget.videoId).timeout(
const Duration(seconds: 10),
onTimeout: () {
debugPrint('ChatWidget: Join room timeout on attempt ${retryCount + 1}');
throw TimeoutException('Failed to join chat room');
},
);
if (_disposed) return;
debugPrint('ChatWidget: Successfully joined room ${widget.videoId}');
break;
} catch (e) {
retryCount++;
debugPrint('ChatWidget: Attempt $retryCount failed: $e');
if (retryCount >= maxRetries || _disposed) {
debugPrint('ChatWidget: Max retries reached or widget disposed, throwing error');
throw Exception('Failed to join chat room after $maxRetries attempts');
}
final delay = Duration(seconds: 1 << retryCount);
debugPrint('ChatWidget: Waiting ${delay.inSeconds}s before retry...');
await Future.delayed(delay);
}
}
if (!_disposed) {
_chatService.chatStream.listen(
_onNewMessage,
onError: (error) {
debugPrint('ChatWidget: Chat stream error: $error');
_handleError(error);
},
);
if (mounted) {
setState(() {
_isLoading = false;
_error = null;
});
}
}
} catch (e) {
debugPrint('ChatWidget: Initialization error: $e');
if (mounted && !_disposed) {
setState(() {
_isLoading = false;
_error = 'Failed to connect to chat. Tap to retry.';
});
}
}
}
void _handleError(dynamic error) {
if (_disposed || !mounted) return;
setState(() {
_error = 'Connection error. Tap to retry.';
_isLoading = false;
});
// Schedule reconnection
_reconnectTimer?.cancel();
_reconnectTimer = Timer(const Duration(seconds: 5), _initialize);
}
void _onNewMessage(ChatMessage message) {
if (!mounted) return;
// Check if we already have this message (prevent duplicates)
if (_messageIds.contains(message.id)) {
debugPrint('ChatWidget: Skipping duplicate message with ID: ${message.id}');
return;
}
setState(() {
_messages.add(message);
_messageIds.add(message.id);
// Keep only last 100 messages
if (_messages.length > 100) {
final removedMessage = _messages.removeAt(0);
_messageIds.remove(removedMessage.id);
}
});
// Auto-scroll to bottom with a slight delay
Future.delayed(const Duration(milliseconds: 100), () {
if (_scrollController.hasClients) {
_scrollController.animateTo(
_scrollController.position.maxScrollExtent,
duration: const Duration(milliseconds: 200),
curve: Curves.easeOut,
);
}
});
}
Widget _buildMessageList() {
if (_messages.isEmpty) {
return const Center(
child: Text(
'No messages yet',
style: TextStyle(
color: AiTubeColors.onSurfaceVariant,
fontSize: 14,
),
),
);
}
return ListView.builder(
controller: _scrollController,
padding: const EdgeInsets.all(8),
itemCount: _messages.length,
itemBuilder: (context, index) {
final message = _messages[index];
return _buildMessageTile(message);
},
);
}
Widget _buildMessageTile(ChatMessage message) {
return Padding(
padding: const EdgeInsets.symmetric(vertical: 4),
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
CircleAvatar(
radius: 16,
backgroundColor: Color(
int.parse(message.color?.substring(1) ?? 'FF4444',
radix: 16) | 0xFF000000,
),
child: Text(
message.username.substring(0, 1).toUpperCase(),
style: const TextStyle(
color: Colors.black,
fontWeight: FontWeight.bold,
),
),
),
const SizedBox(width: 8),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
Text(
message.username,
style: const TextStyle(
color: AiTubeColors.onBackground,
fontWeight: FontWeight.bold,
),
),
const SizedBox(width: 8),
Text(
_formatTime(message.timestamp),
style: const TextStyle(
color: AiTubeColors.onSurfaceVariant,
fontSize: 12,
),
),
],
),
const SizedBox(height: 4),
Text(
message.content,
style: const TextStyle(color: AiTubeColors.onSurface),
),
],
),
),
],
),
);
}
Widget _buildMessageInput() {
return Container(
padding: const EdgeInsets.all(8),
decoration: const BoxDecoration(
color: AiTubeColors.transparent,
border: Border(
top: BorderSide(
color: AiTubeColors.surfaceVariant,
width: 1,
),
),
),
child: Row(
children: [
Expanded(
child: TextField(
controller: _messageController,
style: const TextStyle(color: AiTubeColors.onSurface),
maxLength: 255,
maxLines: 1,
onChanged: (value) {
// Enforce the character limit by trimming excess characters
if (value.length > 255) {
_messageController.text = value.substring(0, 255);
_messageController.selection = TextSelection.fromPosition(
const TextPosition(offset: 255),
);
}
},
decoration: InputDecoration(
hintText: 'Chat with this aituber..',
hintStyle: const TextStyle(color: AiTubeColors.onSurfaceVariant, fontSize: 16),
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(12),
borderSide: const BorderSide(
color: Color(0x20FFFFFF),
width: 1,
),
),
enabledBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(12),
borderSide: const BorderSide(
color: Color(0x20FFFFFF),
width: 1,
),
),
focusedBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(12),
borderSide: const BorderSide(
color: AiTubeColors.primary,
width: 1,
),
),
contentPadding: const EdgeInsets.symmetric(
horizontal: 8,
vertical: 4,
),
counterText: '',
filled: true,
fillColor: const Color(0x10000000),
),
),
),
const SizedBox(width: 8),
IconButton(
icon: _isSending
? const SizedBox(
width: 20,
height: 20,
child: CircularProgressIndicator(strokeWidth: 2),
)
: const Icon(Icons.reply),
color: AiTubeColors.primary,
onPressed: _isSending ? null : _sendMessage,
),
],
),
);
}
String _formatTime(DateTime time) {
final now = DateTime.now();
final difference = now.difference(time);
if (difference.inMinutes < 1) {
return 'just now';
} else if (difference.inHours < 1) {
return '${difference.inMinutes}m ago';
} else if (difference.inDays < 1) {
return '${difference.inHours}h ago';
} else {
return '${difference.inDays}d ago';
}
}
Future<void> _sendMessage() async {
final content = _messageController.text.trim();
if (content.isEmpty) return;
setState(() => _isSending = true);
try {
final success = await _chatService.sendMessage(content, widget.videoId);
if (success) {
_messageController.clear();
FocusScope.of(context).unfocus();
} else {
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('Failed to send message. Please try again.'),
duration: Duration(seconds: 2),
),
);
}
}
} catch (e) {
debugPrint('Error sending message: $e');
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text('Error: $e'),
duration: const Duration(seconds: 2),
),
);
}
} finally {
if (mounted) {
setState(() => _isSending = false);
}
}
}
@override
Widget build(BuildContext context) {
if (_isLoading) {
return const Center(
child: Padding(
padding: EdgeInsets.all(16.0),
child: CircularProgressIndicator(),
),
);
}
if (_error != null) {
return Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Text(_error!, style: const TextStyle(color: AiTubeColors.onBackground)),
const SizedBox(height: 8),
ElevatedButton(
onPressed: () {
setState(() {
_isLoading = true;
_error = null;
});
_initialize();
},
child: const Text('Retry'),
),
],
),
);
}
return Container(
width: widget.isCompact ? double.infinity : 320,
decoration: BoxDecoration(
color: AiTubeColors.surface,
borderRadius: BorderRadius.circular(12),
border: Border.all(
color: AiTubeColors.surfaceVariant,
width: 1,
),
),
child: Column(
children: [
const Padding(
padding: EdgeInsets.all(16),
child: Row(
children: [
Icon(Icons.chat, color: AiTubeColors.onBackground),
SizedBox(width: 8),
Text(
'Simulation log',
style: TextStyle(
color: AiTubeColors.onBackground,
fontSize: 16,
fontWeight: FontWeight.bold,
),
),
],
),
),
Expanded(child: _buildMessageList()),
_buildMessageInput(),
],
),
);
}
@override
void dispose() {
debugPrint('ChatWidget: Disposing chat widget for video ${widget.videoId}');
_disposed = true;
_reconnectTimer?.cancel();
_messageController.dispose();
_scrollController.dispose();
// Just leave the chat room, but don't dispose the ChatService
// since it's a singleton that may be used by other widgets
_chatService.leaveRoom(widget.videoId).catchError((error) {
debugPrint('ChatWidget: Error leaving chat room during disposal: $error');
});
super.dispose();
}
} |