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