fluffychat/lib/pages/settings_account/settings_account.dart

141 lines
4 KiB
Dart
Raw Normal View History

2021-06-23 09:26:12 +00:00
import 'package:flutter/material.dart';
2021-10-26 16:50:34 +00:00
import 'package:adaptive_dialog/adaptive_dialog.dart';
2021-06-23 09:26:12 +00:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
import 'package:future_loading_dialog/future_loading_dialog.dart';
import 'package:matrix/matrix.dart';
import 'package:vrouter/vrouter.dart';
2021-06-23 09:26:12 +00:00
2021-11-09 20:32:16 +00:00
import 'package:fluffychat/pages/settings_account/settings_account_view.dart';
2021-10-26 16:50:34 +00:00
import 'package:fluffychat/widgets/matrix.dart';
2021-06-23 09:26:12 +00:00
class SettingsAccount extends StatefulWidget {
2022-01-29 11:35:03 +00:00
const SettingsAccount({Key? key}) : super(key: key);
2021-06-23 09:26:12 +00:00
@override
SettingsAccountController createState() => SettingsAccountController();
}
class SettingsAccountController extends State<SettingsAccount> {
2022-01-29 11:35:03 +00:00
Future<dynamic>? profileFuture;
Profile? profile;
2021-06-23 09:26:12 +00:00
bool profileUpdated = false;
void updateProfile() => setState(() {
profileUpdated = true;
profile = profileFuture = null;
});
void setDisplaynameAction() async {
final input = await showTextInputDialog(
useRootNavigator: false,
context: context,
2022-01-29 11:35:03 +00:00
title: L10n.of(context)!.editDisplayname,
okLabel: L10n.of(context)!.ok,
cancelLabel: L10n.of(context)!.cancel,
2021-06-23 09:26:12 +00:00
textFields: [
DialogTextField(
initialText: profile?.displayName ??
2022-01-29 11:35:03 +00:00
Matrix.of(context).client.userID!.localpart,
2021-06-23 09:26:12 +00:00
)
],
);
if (input == null) return;
final matrix = Matrix.of(context);
final success = await showFutureLoadingDialog(
context: context,
future: () =>
2022-01-29 11:35:03 +00:00
matrix.client.setDisplayName(matrix.client.userID!, input.single),
2021-06-23 09:26:12 +00:00
);
if (success.error == null) {
updateProfile();
}
}
void logoutAction() async {
if (await showOkCancelAlertDialog(
useRootNavigator: false,
context: context,
2022-01-29 11:35:03 +00:00
title: L10n.of(context)!.areYouSureYouWantToLogout,
okLabel: L10n.of(context)!.yes,
cancelLabel: L10n.of(context)!.cancel,
2021-06-23 09:26:12 +00:00
) ==
OkCancelResult.cancel) {
return;
}
final matrix = Matrix.of(context);
await showFutureLoadingDialog(
context: context,
future: () => matrix.client.logout(),
);
}
void deleteAccountAction() async {
if (await showOkCancelAlertDialog(
useRootNavigator: false,
context: context,
2022-01-29 11:35:03 +00:00
title: L10n.of(context)!.warning,
message: L10n.of(context)!.deactivateAccountWarning,
okLabel: L10n.of(context)!.ok,
cancelLabel: L10n.of(context)!.cancel,
2021-06-23 09:26:12 +00:00
) ==
OkCancelResult.cancel) {
return;
}
if (await showOkCancelAlertDialog(
useRootNavigator: false,
context: context,
2022-01-29 11:35:03 +00:00
title: L10n.of(context)!.areYouSure,
okLabel: L10n.of(context)!.yes,
cancelLabel: L10n.of(context)!.cancel,
2021-06-23 09:26:12 +00:00
) ==
OkCancelResult.cancel) {
return;
}
final input = await showTextInputDialog(
useRootNavigator: false,
context: context,
2022-01-29 11:35:03 +00:00
title: L10n.of(context)!.pleaseEnterYourPassword,
okLabel: L10n.of(context)!.ok,
cancelLabel: L10n.of(context)!.cancel,
2021-06-23 09:26:12 +00:00
textFields: [
2021-10-14 16:09:30 +00:00
const DialogTextField(
2021-06-23 09:26:12 +00:00
obscureText: true,
hintText: '******',
minLines: 1,
maxLines: 1,
)
],
);
if (input == null) return;
await showFutureLoadingDialog(
context: context,
future: () => Matrix.of(context).client.deactivateAccount(
auth: AuthenticationPassword(
password: input.single,
identifier: AuthenticationUserIdentifier(
2022-01-29 11:35:03 +00:00
user: Matrix.of(context).client.userID!),
2021-06-23 09:26:12 +00:00
),
),
);
}
void addAccountAction() => VRouter.of(context).to('add');
2021-06-23 09:26:12 +00:00
@override
Widget build(BuildContext context) {
final client = Matrix.of(context).client;
profileFuture ??= client
.getProfileFromUserId(
2022-01-29 11:35:03 +00:00
client.userID!,
2021-06-23 09:26:12 +00:00
cache: !profileUpdated,
getFromRooms: !profileUpdated,
)
.then((p) {
if (mounted) setState(() => profile = p);
return p;
});
return SettingsAccountView(this);
}
}