1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/ui/routes/account_settings/emojies_account_settings.dart

186 lines
4.7 KiB
Dart
Raw Normal View History

2020-04-29 11:42:01 +00:00
import 'dart:io';
import 'package:comunic/helpers/settings_helper.dart';
2020-04-28 17:03:23 +00:00
import 'package:comunic/helpers/users_helper.dart';
2020-04-29 11:42:01 +00:00
import 'package:comunic/models/new_emoji.dart';
2020-04-28 17:03:23 +00:00
import 'package:comunic/models/user.dart';
import 'package:comunic/ui/widgets/async_screen_widget.dart';
import 'package:comunic/ui/widgets/network_image_widget.dart';
import 'package:comunic/utils/account_utils.dart';
2020-04-29 11:42:01 +00:00
import 'package:comunic/utils/files_utils.dart';
import 'package:comunic/utils/input_utils.dart';
2020-04-28 17:03:23 +00:00
import 'package:comunic/utils/intl_utils.dart';
2020-04-29 11:42:01 +00:00
import 'package:comunic/utils/ui_utils.dart';
2020-04-28 17:03:23 +00:00
import 'package:flutter/material.dart';
/// Emojies account settings
///
/// @author Pierre Hubert
class EmojisAccountSettings extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(tr("Emojies settings")),
),
body: _EmojiesAccountBody(),
);
}
}
class _EmojiesAccountBody extends StatefulWidget {
@override
__EmojiesAccountBodyState createState() => __EmojiesAccountBodyState();
}
class __EmojiesAccountBodyState extends State<_EmojiesAccountBody> {
User _user;
2020-04-29 11:42:01 +00:00
final _key = GlobalKey<AsyncScreenWidgetState>();
2020-04-28 17:03:23 +00:00
Future<void> _reload() async {
_user = await UsersHelper().getSingleWithThrow(
userID(),
forceDownload: true,
);
}
@override
Widget build(BuildContext context) {
return AsyncScreenWidget(
2020-04-29 11:42:01 +00:00
key: _key,
2020-04-28 17:03:23 +00:00
onReload: _reload,
onBuild: _buildSettings,
errorMessage: tr("Could not refresh user information!"),
2020-04-29 11:42:01 +00:00
showOldDataWhileUpdating: true,
2020-04-28 17:03:23 +00:00
);
}
Widget _buildSettings() {
2020-04-29 11:42:01 +00:00
return Stack(
children: [_buildList(), _buildAddButton()],
);
}
Widget _buildList() {
2020-04-28 17:03:23 +00:00
return ListView(
children: _user.customEmojies
.map((u) => ListTile(
leading: NetworkImageWidget(url: u.url, width: 50),
title: Text(u.shortcut),
))
.toList());
}
2020-04-29 11:42:01 +00:00
Widget _buildAddButton() {
return Positioned(
child: FloatingActionButton(
onPressed: _addEmoji,
child: Icon(Icons.add),
),
right: 20,
bottom: 20,
);
}
/// Add a custom emoji
void _addEmoji() async {
try {
final newEmoji = await showDialog<NewEmoji>(
context: context,
builder: (c) => _NewEmojiDialog(),
);
await SettingsHelper.uploadNewCustomEmoji(newEmoji);
} catch (e, stack) {
print("Could not add a new emoji: $e\n$stack");
showSimpleSnack(context, tr("Could not upload emoji!"));
}
_key.currentState.refresh();
}
}
class _NewEmojiDialog extends StatefulWidget {
@override
__NewEmojiDialogState createState() => __NewEmojiDialogState();
}
class __NewEmojiDialogState extends State<_NewEmojiDialog> {
final _controller = TextEditingController();
File _file;
bool get _hasImage => _file != null;
String get _shortcut => _controller.text;
bool get _shortcutValid =>
_shortcut.isNotEmpty && validateShortcut(_shortcut);
bool get _valid => _hasImage && _shortcutValid;
NewEmoji get _emoji => NewEmoji(shortcut: _shortcut, image: _file);
@override
Widget build(BuildContext context) {
return AlertDialog(
title: Text(tr("Add new emoji")),
content: ConstrainedBox(
constraints:
BoxConstraints(maxHeight: MediaQuery.of(context).size.height - 50),
child: SingleChildScrollView(
child: _buildBody(),
),
),
actions: <Widget>[
MaterialButton(
onPressed: () => Navigator.of(context).pop(),
child: Text(tr("Cancel").toUpperCase()),
),
MaterialButton(
onPressed: _valid ? () => Navigator.of(context).pop(_emoji) : null,
child: Text(tr("Add").toUpperCase()),
),
],
);
}
Widget _buildBody() {
return Column(
children: <Widget>[
TextField(
controller: _controller,
onChanged: (s) => setState(() {}),
decoration: InputDecoration(
alignLabelWithHint: true,
labelText: tr("Shortcut"),
hintText: tr(":yourShortcut:"),
errorText: _shortcut.isNotEmpty && !_shortcutValid
? tr("Invalid shortcut!")
: null,
),
),
MaterialButton(
onPressed: _pickImage,
child: Text(_hasImage ? tr("Replace image") : tr("Add image")),
)
],
);
}
void _pickImage() async {
try {
final image = await pickImage(context);
if (image == null) return;
setState(() {
_file = image;
});
} catch (e, stack) {
print("Could not pick an image! $e\n$stack");
}
}
2020-04-28 17:03:23 +00:00
}