mirror of
https://github.com/immich-app/immich.git
synced 2025-06-04 14:14:23 -04:00
123 lines
4.0 KiB
Dart
123 lines
4.0 KiB
Dart
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
|
import 'package:immich_mobile/models/cast_manager_state.dart';
|
|
import 'package:immich_mobile/providers/cast.provider.dart';
|
|
|
|
class CastDialog extends ConsumerWidget {
|
|
const CastDialog({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final castManager = ref.watch(castProvider);
|
|
|
|
bool isCurrentDevice(String deviceName) {
|
|
return castManager.receiverName == deviceName && castManager.isCasting;
|
|
}
|
|
|
|
bool isDeviceConnecting(String deviceName) {
|
|
return castManager.receiverName == deviceName && !castManager.isCasting;
|
|
}
|
|
|
|
return AlertDialog(
|
|
title: const Text(
|
|
"cast",
|
|
style: TextStyle(fontWeight: FontWeight.bold),
|
|
).tr(),
|
|
content: SizedBox(
|
|
width: 250,
|
|
height: 250,
|
|
child: FutureBuilder<List<(String, CastDestinationType, dynamic)>>(
|
|
future: ref.read(castProvider.notifier).getDevices(),
|
|
builder: (context, snapshot) {
|
|
if (snapshot.hasError) {
|
|
return Text(
|
|
'Error: ${snapshot.error.toString()}',
|
|
);
|
|
} else if (!snapshot.hasData) {
|
|
return const SizedBox(
|
|
height: 48,
|
|
child: Center(child: CircularProgressIndicator()),
|
|
);
|
|
}
|
|
|
|
if (snapshot.data!.isEmpty) {
|
|
return const Text(
|
|
'no_cast_devices_found',
|
|
).tr();
|
|
}
|
|
|
|
return ListView.builder(
|
|
shrinkWrap: true,
|
|
itemCount: snapshot.data!.length,
|
|
itemBuilder: (context, index) {
|
|
final found = snapshot.data![index];
|
|
final deviceName = found.$1;
|
|
final type = found.$2;
|
|
final deviceObj = found.$3;
|
|
|
|
return ListTile(
|
|
title: Text(
|
|
deviceName,
|
|
style: TextStyle(
|
|
color: isCurrentDevice(deviceName)
|
|
? context.colorScheme.primary
|
|
: null,
|
|
),
|
|
),
|
|
leading: Icon(
|
|
type == CastDestinationType.googleCast
|
|
? Icons.cast
|
|
: Icons.cast_connected,
|
|
color: isCurrentDevice(deviceName)
|
|
? context.colorScheme.primary
|
|
: null,
|
|
),
|
|
trailing: isCurrentDevice(deviceName)
|
|
? Icon(Icons.check, color: context.colorScheme.primary)
|
|
: isDeviceConnecting(deviceName)
|
|
? const CircularProgressIndicator()
|
|
: null,
|
|
onTap: () {
|
|
// dont accept taps if the device is already connected or is connecting now
|
|
if (isDeviceConnecting(deviceName) ||
|
|
castManager.isCasting) {
|
|
return;
|
|
}
|
|
|
|
ref.read(castProvider.notifier).connect(type, deviceObj);
|
|
},
|
|
);
|
|
},
|
|
);
|
|
},
|
|
),
|
|
),
|
|
actions: [
|
|
if (castManager.isCasting)
|
|
TextButton(
|
|
onPressed: () => ref.read(castProvider.notifier).disconnect(),
|
|
child: Text(
|
|
"stop_casting",
|
|
style: TextStyle(
|
|
color: context.colorScheme.secondary,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
).tr(),
|
|
),
|
|
TextButton(
|
|
onPressed: () => context.pop(),
|
|
child: Text(
|
|
"close",
|
|
style: TextStyle(
|
|
color: context.colorScheme.primary,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
).tr(),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|