fluffychat/lib/pages/device_settings/device_settings_view.dart

94 lines
3.6 KiB
Dart
Raw Normal View History

2021-04-15 09:46:43 +02:00
import 'package:flutter/material.dart';
2021-10-26 18:50:34 +02:00
2021-04-15 09:46:43 +02:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
2021-11-09 21:32:16 +01:00
import 'package:fluffychat/pages/device_settings/device_settings.dart';
2021-10-26 18:50:34 +02:00
import 'package:fluffychat/widgets/layouts/max_width_body.dart';
2021-11-09 21:32:16 +01:00
import 'user_device_list_item.dart';
2021-04-15 09:46:43 +02:00
2021-05-22 09:13:47 +02:00
class DevicesSettingsView extends StatelessWidget {
2021-04-15 09:46:43 +02:00
final DevicesSettingsController controller;
2022-01-29 12:35:03 +01:00
const DevicesSettingsView(this.controller, {Key? key}) : super(key: key);
2021-04-15 09:46:43 +02:00
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
2021-10-14 18:09:30 +02:00
leading: const BackButton(),
2022-01-29 12:35:03 +01:00
title: Text(L10n.of(context)!.devices),
2021-04-15 09:46:43 +02:00
),
body: MaxWidthBody(
child: FutureBuilder<bool>(
future: controller.loadUserDevices(context),
builder: (BuildContext context, snapshot) {
if (snapshot.hasError) {
return Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
2021-10-14 18:09:30 +02:00
const Icon(Icons.error_outlined),
2021-04-15 09:46:43 +02:00
Text(snapshot.error.toString()),
],
),
);
}
if (!snapshot.hasData || controller.devices == null) {
2021-10-14 18:09:30 +02:00
return const Center(
2021-10-10 13:38:06 +02:00
child: CircularProgressIndicator.adaptive(strokeWidth: 2));
2021-04-15 09:46:43 +02:00
}
2022-07-07 18:50:13 +02:00
return ListView.builder(
itemCount: controller.notThisDevice.length + 1,
itemBuilder: (BuildContext context, int i) {
if (i == 0) {
return Column(
mainAxisSize: MainAxisSize.min,
children: [
if (controller.thisDevice != null)
UserDeviceListItem(
controller.thisDevice!,
rename: controller.renameDeviceAction,
remove: (d) => controller.removeDevicesAction([d]),
verify: controller.verifyDeviceAction,
block: controller.blockDeviceAction,
unblock: controller.unblockDeviceAction,
),
const Divider(height: 1),
if (controller.notThisDevice.isNotEmpty)
ListTile(
title: Text(
controller.errorDeletingDevices ??
L10n.of(context)!.removeAllOtherDevices,
style: const TextStyle(color: Colors.red),
2021-04-15 09:46:43 +02:00
),
2022-07-07 18:50:13 +02:00
trailing: controller.loadingDeletingDevices
? const CircularProgressIndicator.adaptive(
strokeWidth: 2)
: const Icon(Icons.delete_outline),
onTap: controller.loadingDeletingDevices
? null
: () => controller.removeDevicesAction(
controller.notThisDevice),
2021-04-15 09:46:43 +02:00
),
2022-07-07 18:50:13 +02:00
const Divider(height: 1),
],
);
}
i--;
return UserDeviceListItem(
controller.notThisDevice[i],
rename: controller.renameDeviceAction,
remove: (d) => controller.removeDevicesAction([d]),
verify: controller.verifyDeviceAction,
block: controller.blockDeviceAction,
unblock: controller.unblockDeviceAction,
);
},
2021-04-15 09:46:43 +02:00
);
},
),
),
);
}
}