fluffychat/lib/pages/settings_3pid/settings_3pid_view.dart

111 lines
3.7 KiB
Dart
Raw Normal View History

2021-10-26 18:50:34 +02:00
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
import 'package:matrix/matrix.dart';
2021-10-26 18:50:34 +02:00
2021-11-09 21:32:16 +01:00
import 'package:fluffychat/pages/settings_3pid/settings_3pid.dart';
2021-05-22 08:53:52 +02:00
import 'package:fluffychat/widgets/layouts/max_width_body.dart';
import 'package:fluffychat/widgets/matrix.dart';
2020-11-24 14:27:07 +01:00
2021-05-22 09:13:47 +02:00
class Settings3PidView extends StatelessWidget {
2021-04-17 11:27:58 +02:00
final Settings3PidController controller;
2020-11-24 14:27:07 +01:00
2022-01-29 12:35:03 +01:00
const Settings3PidView(this.controller, {Key? key}) : super(key: key);
2020-11-24 14:27:07 +01:00
@override
Widget build(BuildContext context) {
2021-05-20 14:36:23 +02:00
controller.request ??= Matrix.of(context).client.getAccount3PIDs();
2020-11-24 14:27:07 +01:00
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)!.passwordRecovery),
2020-11-24 14:27:07 +01:00
actions: [
IconButton(
2021-10-14 18:09:30 +02:00
icon: const Icon(Icons.add_outlined),
2021-04-17 11:27:58 +02:00
onPressed: controller.add3PidAction,
2022-01-29 12:35:03 +01:00
tooltip: L10n.of(context)!.addEmail,
2020-11-24 14:27:07 +01:00
)
],
),
2021-04-09 18:26:44 +02:00
body: MaxWidthBody(
2022-01-29 12:35:03 +01:00
child: FutureBuilder<List<ThirdPartyIdentifier>?>(
2021-04-17 11:27:58 +02:00
future: controller.request,
builder: (
BuildContext context,
AsyncSnapshot<List<ThirdPartyIdentifier>?> snapshot,
) {
2021-04-09 18:26:44 +02:00
if (snapshot.hasError) {
return Center(
child: Text(
snapshot.error.toString(),
textAlign: TextAlign.center,
),
);
}
if (!snapshot.hasData) {
2021-10-14 18:09:30 +02:00
return const Center(
child: CircularProgressIndicator.adaptive(strokeWidth: 2),
);
2021-04-09 18:26:44 +02:00
}
2022-01-29 12:35:03 +01:00
final identifier = snapshot.data!;
2021-04-09 18:26:44 +02:00
return Column(
children: [
ListTile(
leading: CircleAvatar(
backgroundColor: Theme.of(context).scaffoldBackgroundColor,
foregroundColor:
identifier.isEmpty ? Colors.orange : Colors.grey,
child: Icon(
identifier.isEmpty
? Icons.warning_outlined
: Icons.info_outlined,
),
),
title: Text(
2020-12-06 10:31:35 +01:00
identifier.isEmpty
2022-01-29 12:35:03 +01:00
? L10n.of(context)!.noPasswordRecoveryDescription
: L10n.of(context)!
2021-04-09 18:26:44 +02:00
.withTheseAddressesRecoveryDescription,
2020-11-24 14:27:07 +01:00
),
),
2021-10-14 18:09:30 +02:00
const Divider(height: 1),
2021-04-09 18:26:44 +02:00
Expanded(
child: ListView.builder(
itemCount: identifier.length,
itemBuilder: (BuildContext context, int i) => ListTile(
leading: CircleAvatar(
backgroundColor:
Theme.of(context).scaffoldBackgroundColor,
foregroundColor: Colors.grey,
child: Icon(identifier[i].iconData),
),
2021-04-09 18:26:44 +02:00
title: Text(identifier[i].address),
trailing: IconButton(
2022-01-29 12:35:03 +01:00
tooltip: L10n.of(context)!.delete,
2021-10-14 18:09:30 +02:00
icon: const Icon(Icons.delete_forever_outlined),
2021-04-09 18:26:44 +02:00
color: Colors.red,
2021-04-17 11:27:58 +02:00
onPressed: () => controller.delete3Pid(identifier[i]),
2021-04-09 18:26:44 +02:00
),
2020-11-24 14:27:07 +01:00
),
),
),
2021-04-09 18:26:44 +02:00
],
);
},
),
2020-11-24 14:27:07 +01:00
),
);
}
}
extension on ThirdPartyIdentifier {
IconData get iconData {
switch (medium) {
case ThirdPartyIdentifierMedium.email:
return Icons.mail_outline_rounded;
case ThirdPartyIdentifierMedium.msisdn:
return Icons.phone_android_outlined;
}
}
}