fluffychat/lib/pages/settings/settings.dart

139 lines
3.9 KiB
Dart
Raw Normal View History

2021-04-24 06:22:42 +00:00
import 'dart:async';
2021-10-26 16:50:34 +00:00
import 'package:flutter/material.dart';
2021-05-23 11:11:55 +00:00
2021-10-26 16:50:34 +00:00
import 'package:adaptive_dialog/adaptive_dialog.dart';
2021-04-24 06:22:42 +00:00
import 'package:file_picker_cross/file_picker_cross.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2021-10-26 16:50:34 +00:00
import 'package:future_loading_dialog/future_loading_dialog.dart';
2021-04-24 06:22:42 +00:00
import 'package:image_picker/image_picker.dart';
2021-10-26 16:50:34 +00:00
import 'package:matrix/matrix.dart';
2021-04-24 06:22:42 +00:00
2021-10-26 16:50:34 +00:00
import 'package:fluffychat/utils/platform_infos.dart';
2021-11-09 20:32:16 +00:00
import '../../widgets/matrix.dart';
import 'settings_view.dart';
2021-04-24 06:22:42 +00:00
class Settings extends StatefulWidget {
2021-10-14 16:09:30 +00:00
const Settings({Key key}) : super(key: key);
2021-04-24 06:22:42 +00:00
@override
SettingsController createState() => SettingsController();
}
class SettingsController extends State<Settings> {
Future<bool> crossSigningCachedFuture;
bool crossSigningCached;
Future<bool> megolmBackupCachedFuture;
bool megolmBackupCached;
2021-06-23 09:26:12 +00:00
Future<dynamic> profileFuture;
Profile profile;
bool profileUpdated = false;
void updateProfile() => setState(() {
profileUpdated = true;
profile = profileFuture = null;
});
2021-04-24 06:22:42 +00:00
void setAvatarAction() async {
2021-11-15 06:43:19 +00:00
final actions = [
if (PlatformInfos.isMobile)
2021-11-13 20:21:13 +00:00
SheetAction(
key: AvatarAction.camera,
label: L10n.of(context).openCamera,
isDefaultAction: true,
2021-11-14 12:24:01 +00:00
icon: Icons.camera_alt_outlined,
2021-11-13 20:21:13 +00:00
),
2021-11-15 06:43:19 +00:00
SheetAction(
key: AvatarAction.file,
label: L10n.of(context).openGallery,
icon: Icons.photo_outlined,
),
if (profile?.avatarUrl != null)
2021-11-13 20:21:13 +00:00
SheetAction(
2021-11-15 06:43:19 +00:00
key: AvatarAction.remove,
label: L10n.of(context).removeYourAvatar,
isDestructiveAction: true,
icon: Icons.delete_outlined,
2021-11-13 20:21:13 +00:00
),
2021-11-15 06:43:19 +00:00
];
final action = actions.length == 1
? actions.single
: await showModalActionSheet<AvatarAction>(
context: context,
title: L10n.of(context).changeYourAvatar,
actions: actions,
);
2021-05-31 17:33:40 +00:00
if (action == null) return;
final matrix = Matrix.of(context);
if (action == AvatarAction.remove) {
final success = await showFutureLoadingDialog(
context: context,
future: () => matrix.client.setAvatarUrl(matrix.client.userID, null),
);
if (success.error == null) {
updateProfile();
2021-05-31 17:33:40 +00:00
}
return;
}
2021-04-24 06:22:42 +00:00
MatrixFile file;
if (PlatformInfos.isMobile) {
final result = await ImagePicker().pickImage(
source: action == AvatarAction.camera
? ImageSource.camera
: ImageSource.gallery,
imageQuality: 50,
);
2021-04-24 06:22:42 +00:00
if (result == null) return;
file = MatrixFile(
bytes: await result.readAsBytes(),
name: result.path,
);
} else {
final result =
await FilePickerCross.importFromStorage(type: FileTypeCross.image);
if (result == null) return;
file = MatrixFile(
bytes: result.toUint8List(),
name: result.fileName,
);
}
final success = await showFutureLoadingDialog(
context: context,
future: () => matrix.client.setAvatar(file),
);
if (success.error == null) {
updateProfile();
2021-04-24 06:22:42 +00:00
}
}
@override
Widget build(BuildContext context) {
final client = Matrix.of(context).client;
2021-05-31 17:33:40 +00:00
profileFuture ??= client
.getProfileFromUserId(
client.userID,
cache: !profileUpdated,
getFromRooms: !profileUpdated,
2021-05-31 17:33:40 +00:00
)
.then((p) {
2021-04-24 06:22:42 +00:00
if (mounted) setState(() => profile = p);
return p;
});
if (client.encryption != null) {
crossSigningCachedFuture ??=
client.encryption?.crossSigning?.isCached()?.then((c) {
if (mounted) setState(() => crossSigningCached = c);
return c;
});
megolmBackupCachedFuture ??=
client.encryption?.keyManager?.isCached()?.then((c) {
if (mounted) setState(() => megolmBackupCached = c);
return c;
});
}
2021-05-22 07:13:47 +00:00
return SettingsView(this);
2021-04-24 06:22:42 +00:00
}
}
2021-05-31 17:33:40 +00:00
2021-11-13 20:21:13 +00:00
enum AvatarAction { camera, file, remove }