Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 16,819 Bytes
5acd9c3 83f2577 5acd9c3 6c71972 5acd9c3 83f2577 5acd9c3 6c71972 5acd9c3 6c71972 5acd9c3 83f2577 2e813e6 83f2577 5acd9c3 6c71972 5acd9c3 6c71972 5acd9c3 2e813e6 5acd9c3 2e813e6 5acd9c3 2e813e6 5acd9c3 2e813e6 5acd9c3 2e813e6 5acd9c3 2e813e6 5acd9c3 2e813e6 5acd9c3 2e813e6 5acd9c3 83f2577 5acd9c3 83f2577 2f88b0d 83f2577 5acd9c3 6c71972 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 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 |
// lib/screens/home_screen.dart
import 'dart:async';
import 'package:aitube2/config/config.dart';
import 'package:aitube2/widgets/web_utils.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter_staggered_grid_view/flutter_staggered_grid_view.dart';
import 'package:aitube2/screens/video_screen.dart';
import 'package:aitube2/screens/settings_screen.dart';
import 'package:aitube2/models/video_result.dart';
import 'package:aitube2/services/websocket_api_service.dart';
import 'package:aitube2/services/settings_service.dart';
import 'package:aitube2/widgets/video_card.dart';
import 'package:aitube2/widgets/search_box.dart';
import 'package:aitube2/theme/colors.dart';
class HomeScreen extends StatefulWidget {
final String? initialSearchQuery;
const HomeScreen({
super.key,
this.initialSearchQuery,
});
@override
State<HomeScreen> createState() => _HomeScreenState();
}
class _HomeScreenState extends State<HomeScreen> {
final _searchController = TextEditingController();
final _websocketService = WebSocketApiService();
List<VideoResult> _results = [];
bool _isSearching = false;
String? _currentSearchQuery;
StreamSubscription? _searchSubscription;
static const int maxResults = 4;
// Subscription for limit status
StreamSubscription? _anonLimitSubscription;
StreamSubscription? _deviceLimitSubscription;
@override
void initState() {
super.initState();
// Listen for changes to anonymous limit status
_anonLimitSubscription = _websocketService.anonLimitStream.listen((exceeded) {
if (exceeded && mounted) {
_showAnonLimitExceededDialog();
}
});
// Listen for changes to device limit status (for VIP users on web)
_deviceLimitSubscription = _websocketService.deviceLimitStream.listen((exceeded) {
if (exceeded && mounted) {
_showDeviceLimitExceededDialog();
}
});
_initializeWebSocket();
_setupSearchListener();
// Force a UI refresh to ensure connection status is displayed correctly
Future.microtask(() {
if (mounted) {
setState(() {}); // Trigger a rebuild to refresh the connection status
}
});
// Check if we have an initial search query from URL parameters
if (widget.initialSearchQuery != null && widget.initialSearchQuery!.isNotEmpty) {
_searchController.text = widget.initialSearchQuery!;
// Need to use Future.delayed to ensure WebSocket is initialized
Future.delayed(const Duration(milliseconds: 500), () {
if (mounted) {
_search(widget.initialSearchQuery!);
}
});
}
}
void _setupSearchListener() {
_searchSubscription = _websocketService.searchStream.listen((result) {
if (mounted) {
setState(() {
if (_results.length < maxResults) {
_results.add(result);
// Stop search if we've reached max results
if (_results.length >= maxResults) {
_stopSearch();
}
}
});
}
});
}
void _stopSearch() {
if (_currentSearchQuery != null) {
_websocketService.stopContinuousSearch(_currentSearchQuery!);
setState(() {
_isSearching = false;
_currentSearchQuery = null;
});
}
}
Future<void> _initializeWebSocket() async {
try {
await _websocketService.connect();
// Check if anonymous limit is exceeded
if (_websocketService.isAnonLimitExceeded) {
if (mounted) {
_showAnonLimitExceededDialog();
}
return;
}
} catch (e) {
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text('Failed to connect to server: $e'),
duration: const Duration(seconds: 3),
action: SnackBarAction(
label: 'Retry',
onPressed: _initializeWebSocket,
),
),
);
}
}
}
void _showAnonLimitExceededDialog() async {
// Create a controller outside the dialog for easier access
final TextEditingController controller = TextEditingController();
final settings = await showDialog<String>(
context: context,
barrierDismissible: false,
builder: (BuildContext dialogContext) {
bool obscureText = true;
return StatefulBuilder(
builder: (context, setState) {
return AlertDialog(
title: const Text(
'Connection Limit Reached',
style: TextStyle(
color: AiTubeColors.onBackground,
fontSize: 20,
fontWeight: FontWeight.bold,
),
),
content: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
_websocketService.anonLimitMessage.isNotEmpty
? _websocketService.anonLimitMessage
: 'Anonymous users can enjoy 1 stream per IP address. If you are on a shared IP please enter your HF token, thank you!',
style: const TextStyle(color: AiTubeColors.onSurface),
),
const SizedBox(height: 16),
const Text(
'Enter your HuggingFace API token to continue:',
style: TextStyle(color: AiTubeColors.onSurface),
),
const SizedBox(height: 8),
TextField(
controller: controller,
obscureText: obscureText,
decoration: InputDecoration(
labelText: 'API Key',
labelStyle: const TextStyle(color: AiTubeColors.onSurfaceVariant),
suffixIcon: IconButton(
icon: Icon(
obscureText ? Icons.visibility : Icons.visibility_off,
color: AiTubeColors.onSurfaceVariant,
),
onPressed: () => setState(() => obscureText = !obscureText),
),
),
onSubmitted: (value) {
Navigator.pop(dialogContext, value);
},
),
],
),
backgroundColor: AiTubeColors.surface,
actions: [
TextButton(
onPressed: () => Navigator.pop(dialogContext),
child: const Text(
'Cancel',
style: TextStyle(color: AiTubeColors.onSurfaceVariant),
),
),
FilledButton(
onPressed: () => Navigator.pop(dialogContext, controller.text),
style: FilledButton.styleFrom(
backgroundColor: AiTubeColors.primary,
),
child: const Text('Save'),
),
],
);
}
);
},
);
// Clean up the controller
controller.dispose();
// If user provided an API key, save it and retry connection
if (settings != null && settings.isNotEmpty) {
// Save the API key
final settingsService = SettingsService();
await settingsService.setHuggingfaceApiKey(settings);
// Retry connection
if (mounted) {
_initializeWebSocket();
}
}
}
void _showDeviceLimitExceededDialog() async {
await showDialog<void>(
context: context,
barrierDismissible: false,
builder: (BuildContext dialogContext) {
return AlertDialog(
title: const Text(
'Too Many Connections',
style: TextStyle(
color: AiTubeColors.onBackground,
fontSize: 20,
fontWeight: FontWeight.bold,
),
),
content: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
_websocketService.deviceLimitMessage,
style: const TextStyle(color: AiTubeColors.onSurface),
),
const SizedBox(height: 16),
const Text(
'Please close some of your other browser tabs running AiTube to continue.',
style: TextStyle(color: AiTubeColors.onSurface),
),
],
),
backgroundColor: AiTubeColors.surface,
actions: [
FilledButton(
onPressed: () {
Navigator.pop(dialogContext);
// Try to reconnect after dialog is closed
if (mounted) {
Future.delayed(const Duration(seconds: 1), () {
_initializeWebSocket();
});
}
},
style: FilledButton.styleFrom(
backgroundColor: AiTubeColors.primary,
),
child: const Text('Try Again'),
),
],
);
},
);
}
Widget _buildConnectionStatus() {
return StreamBuilder<ConnectionStatus>(
stream: _websocketService.statusStream,
initialData: _websocketService.status, // Add initial data to avoid null status
builder: (context, connectionSnapshot) {
// Immediately extract and use the connection status
final status = connectionSnapshot.data ?? ConnectionStatus.disconnected;
return StreamBuilder<String>(
stream: _websocketService.userRoleStream,
initialData: _websocketService.userRole, // Add initial data
builder: (context, roleSnapshot) {
final userRole = roleSnapshot.data ?? 'anon';
final backgroundColor = status == ConnectionStatus.connected || status == ConnectionStatus.connecting
? Colors.green.withOpacity(0.1)
: status == ConnectionStatus.error
? Colors.red.withOpacity(0.1)
: Colors.orange.withOpacity(0.1);
final textAndIconColor = status == ConnectionStatus.connected || status == ConnectionStatus.connecting
? Colors.green
: status == ConnectionStatus.error
? Colors.red
: Colors.orange;
final icon = status == ConnectionStatus.connected || status == ConnectionStatus.connecting
? Icons.cloud_done
: status == ConnectionStatus.error
? Icons.cloud_off
: Icons.cloud_sync;
// Get the status message (with user role info for connected state)
String statusMessage = _websocketService.statusMessage;
return Container(
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
decoration: BoxDecoration(
color: backgroundColor,
borderRadius: BorderRadius.circular(8),
),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Icon(icon, color: textAndIconColor, size: 20),
const SizedBox(width: 8),
Text(
statusMessage,
style: TextStyle(
color: textAndIconColor,
fontSize: 14,
),
),
],
),
);
}
);
},
);
}
Future<void> _search(String query) async {
final trimmedQuery = query.trim();
if (trimmedQuery.isEmpty) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('Please enter a search query')),
);
return;
}
// Clear previous results if query is different
if (_currentSearchQuery != trimmedQuery) {
setState(() {
_results.clear();
_isSearching = true;
});
}
// Stop any existing search
if (_currentSearchQuery != null) {
_websocketService.stopContinuousSearch(_currentSearchQuery!);
}
// Update URL parameter for web builds
if (kIsWeb) {
updateUrlParameter('search', trimmedQuery);
}
try {
// Check connection
if (!_websocketService.isConnected) {
await _websocketService.connect();
}
_currentSearchQuery = trimmedQuery;
// Start continuous search
_websocketService.startContinuousSearch(trimmedQuery);
} catch (e) {
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text('Error performing search: $e')),
);
setState(() => _isSearching = false);
}
}
}
int _getColumnCount(BuildContext context) {
final width = MediaQuery.of(context).size.width;
if (width >= 1536) { // 2XL
return 6;
} else if (width >= 1280) { // XL
return 5;
} else if (width >= 1024) { // LG
return 4;
} else if (width >= 768) { // MD
return 3;
} else {
return 2; // Default for small screens
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(Configuration.instance.uiProductName),
backgroundColor: AiTubeColors.background,
actions: [
Padding(
padding: const EdgeInsets.only(right: 8),
child: _buildConnectionStatus(),
),
IconButton(
icon: const Icon(Icons.settings),
onPressed: () {
_stopSearch(); // Stop search but keep results
Navigator.push(
context,
MaterialPageRoute(builder: (context) => const SettingsScreen()),
);
},
),
],
),
body: Column(
children: [
// Search Bar
Padding(
padding: const EdgeInsets.all(16),
child: SearchBox(
controller: _searchController,
isSearching: _isSearching,
enabled: _websocketService.isConnected,
onSearch: _search,
onCancel: _stopSearch,
),
),
// Results Grid
Expanded(
child: _results.isEmpty
? Center(
child: Text(
_isSearching
? 'Generating videos...'
: 'Start by typing a description of the video you want to generate',
style: const TextStyle(color: AiTubeColors.onSurfaceVariant),
textAlign: TextAlign.center,
),
)
: MasonryGridView.count(
padding: const EdgeInsets.all(16),
crossAxisCount: _getColumnCount(context),
mainAxisSpacing: 16,
crossAxisSpacing: 16,
itemCount: _results.length,
itemBuilder: (context, index) {
return GestureDetector(
onTap: () {
_stopSearch(); // Stop search but keep results
// Update URL parameter on web platform
if (kIsWeb) {
// Update title and description parameters and remove search parameter
updateUrlParameter('title', _results[index].title);
updateUrlParameter('description', _results[index].description);
removeUrlParameter('search');
}
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => VideoScreen(
video: _results[index],
),
),
);
},
child: VideoCard(video: _results[index]),
);
},
),
),
],
),
);
}
@override
void dispose() {
_searchSubscription?.cancel();
_anonLimitSubscription?.cancel();
_deviceLimitSubscription?.cancel();
_searchController.dispose();
_websocketService.dispose();
super.dispose();
}
} |