Files
fastwatcher/lib/features/sender/presentation/screens/mobile_sender_screen.dart
T

192 lines
6.0 KiB
Dart

import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import '../../../../core/theme/app_colors.dart';
import '../../../discovery/presentation/providers/discovery_providers.dart';
import '../providers/sender_providers.dart';
import '../providers/share_handler_provider.dart';
class MobileSenderScreen extends ConsumerStatefulWidget {
const MobileSenderScreen({super.key});
@override
ConsumerState<MobileSenderScreen> createState() => _MobileSenderScreenState();
}
class _MobileSenderScreenState extends ConsumerState<MobileSenderScreen> {
final _urlController = TextEditingController();
@override
void initState() {
super.initState();
}
@override
void dispose() {
_urlController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
// Initialize share handler
ref.watch(shareHandlerProvider);
final devicesAsync = ref.watch(discoveredDevicesProvider);
final senderState = ref.watch(senderProvider);
return Scaffold(
appBar: AppBar(
title: const Text('FastWatcher'),
backgroundColor: Colors.transparent,
elevation: 0,
actions: [
if (senderState.connectedDevice != null)
IconButton(
icon: const Icon(Icons.cast_connected, color: AppColors.primary),
onPressed: () {
// TODO: Show connection info or disconnect
},
),
],
),
body: Container(
decoration: const BoxDecoration(
gradient: AppColors.backgroundGradient,
),
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 20.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
if (senderState.connectedDevice == null) ...[
Text(
'Cast to TV',
style: Theme.of(context).textTheme.displaySmall,
),
const SizedBox(height: 8),
Text(
'Select a TV on your network to begin',
style: Theme.of(context).textTheme.bodyMedium,
),
const SizedBox(height: 32),
Expanded(
child: _buildDiscoveryList(devicesAsync),
),
] else ...[
_buildLinkInput(senderState),
const SizedBox(height: 32),
Text(
'History',
style: Theme.of(context).textTheme.titleLarge,
),
const SizedBox(height: 16),
Expanded(
child: _buildHistoryList(senderState),
),
],
],
),
),
),
);
}
Widget _buildDiscoveryList(AsyncValue devicesAsync) {
return devicesAsync.when(
data: (devices) {
if (devices.isEmpty) {
return const Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
CircularProgressIndicator(),
SizedBox(height: 20),
Text('Searching for TVs...'),
],
),
);
}
return ListView.builder(
itemCount: (devices as List).length,
itemBuilder: (context, index) {
final device = devices[index];
return Card(
margin: const EdgeInsets.only(bottom: 12),
child: ListTile(
leading: const CircleAvatar(
backgroundColor: AppColors.primary,
child: Icon(Icons.tv_rounded, color: Colors.white),
),
title: Text(device.name ?? 'Unknown TV'),
subtitle: Text('${device.host}:${device.port}'),
trailing: const Icon(Icons.cast),
onTap: () {
ref.read(senderProvider.notifier).connectToDevice(device);
},
),
);
},
);
},
loading: () => const Center(child: CircularProgressIndicator()),
error: (err, stack) => Center(child: Text('Error: $err')),
);
}
Widget _buildLinkInput(SenderState state) {
return Column(
children: [
TextField(
controller: _urlController,
decoration: InputDecoration(
hintText: 'Paste video link here...',
filled: true,
fillColor: AppColors.surface,
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(16),
borderSide: BorderSide.none,
),
suffixIcon: state.isExtracting || state.isSending
? const Padding(
padding: EdgeInsets.all(12.0),
child: CircularProgressIndicator(strokeWidth: 2),
)
: IconButton(
icon: const Icon(Icons.send_rounded, color: AppColors.primary),
onPressed: () {
if (_urlController.text.isNotEmpty) {
ref.read(senderProvider.notifier).sendLink(_urlController.text);
_urlController.clear();
}
},
),
),
),
if (state.isExtracting)
const Padding(
padding: EdgeInsets.only(top: 8.0),
child: Text('Extracting video link...', style: TextStyle(fontSize: 12)),
),
],
);
}
Widget _buildHistoryList(SenderState state) {
if (state.history.isEmpty) {
return const Center(child: Text('No history yet'));
}
return ListView.builder(
itemCount: state.history.length,
itemBuilder: (context, index) {
final url = state.history[index];
return ListTile(
leading: const Icon(Icons.history_rounded, size: 20),
title: Text(url, maxLines: 1, overflow: TextOverflow.ellipsis),
onTap: () => _urlController.text = url,
);
},
);
}
}