Implement message attachment UI

This commit is contained in:
Nutcake 2023-05-17 23:20:56 +02:00
parent 50914cdf09
commit 717cdb5064
7 changed files with 303 additions and 141 deletions

View file

@ -30,16 +30,17 @@ class _MessagesListState extends State<MessagesList> with SingleTickerProviderSt
final TextEditingController _messageTextController = TextEditingController(); final TextEditingController _messageTextController = TextEditingController();
final ScrollController _sessionListScrollController = ScrollController(); final ScrollController _sessionListScrollController = ScrollController();
final ScrollController _messageScrollController = ScrollController(); final ScrollController _messageScrollController = ScrollController();
final List<File> _loadedFiles = [];
bool _hasText = false; bool _hasText = false;
bool _isSending = false; bool _isSending = false;
bool _showSessionListScrollChevron = false; bool _attachmentPickerOpen = false;
bool _showBottomBarShadow = false; bool _showBottomBarShadow = false;
File? _loadedFile; bool _showSessionListScrollChevron = false;
double get _shevronOpacity => _showSessionListScrollChevron ? 1.0 : 0.0; double get _shevronOpacity => _showSessionListScrollChevron ? 1.0 : 0.0;
@override @override
void dispose() { void dispose() {
_messageTextController.dispose(); _messageTextController.dispose();
@ -65,6 +66,11 @@ class _MessagesListState extends State<MessagesList> with SingleTickerProviderSt
}); });
_messageScrollController.addListener(() { _messageScrollController.addListener(() {
if (!_messageScrollController.hasClients) return; if (!_messageScrollController.hasClients) return;
if (_attachmentPickerOpen && _loadedFiles.isEmpty) {
setState(() {
_attachmentPickerOpen = false;
});
}
if (_messageScrollController.position.atEdge && _messageScrollController.position.pixels == 0 && if (_messageScrollController.position.atEdge && _messageScrollController.position.pixels == 0 &&
_showBottomBarShadow) { _showBottomBarShadow) {
setState(() { setState(() {
@ -78,11 +84,9 @@ class _MessagesListState extends State<MessagesList> with SingleTickerProviderSt
}); });
} }
Future<void> sendTextMessage(ScaffoldMessengerState scaffoldMessenger, ApiClient client, MessagingClient mClient, String content) async { Future<void> sendTextMessage(ApiClient client, MessagingClient mClient,
String content) async {
if (content.isEmpty) return; if (content.isEmpty) return;
setState(() {
_isSending = true;
});
final message = Message( final message = Message(
id: Message.generateId(), id: Message.generateId(),
recipientId: widget.friend.id, recipientId: widget.friend.id,
@ -91,58 +95,26 @@ class _MessagesListState extends State<MessagesList> with SingleTickerProviderSt
content: content, content: content,
sendTime: DateTime.now().toUtc(), sendTime: DateTime.now().toUtc(),
); );
try { mClient.sendMessage(message);
mClient.sendMessage(message); _messageTextController.clear();
_messageTextController.clear();
setState(() {});
} catch (e) {
scaffoldMessenger.showSnackBar(
SnackBar(
content: Text("Failed to send message\n$e",
maxLines: null,
),
),
);
setState(() {
_isSending = false;
});
}
} }
Future<void> sendImageMessage(ScaffoldMessengerState scaffoldMessenger, ApiClient client, MessagingClient mClient, File file, machineId) async { Future<void> sendImageMessage(ApiClient client, MessagingClient mClient, File file, machineId) async {
setState(() { final record = await RecordApi.uploadImage(
_isSending = true; client,
}); image: file,
try { machineId: machineId,
final record = await RecordApi.uploadImage( );
client, final message = Message(
image: file, id: Message.generateId(),
machineId: machineId, recipientId: widget.friend.id,
); senderId: client.userId,
type: MessageType.object,
final message = Message( content: jsonEncode(record.toMap()),
id: Message.generateId(), sendTime: DateTime.now().toUtc(),
recipientId: widget.friend.id, );
senderId: client.userId, mClient.sendMessage(message);
type: MessageType.object, _messageTextController.clear();
content: jsonEncode(record.toMap()),
sendTime: DateTime.now().toUtc(),
);
mClient.sendMessage(message);
_messageTextController.clear();
_loadedFile = null;
} catch (e) {
scaffoldMessenger.showSnackBar(
SnackBar(
content: Text("Failed to send file\n$e",
maxLines: null,
),
),
);
}
setState(() {
_isSending = false;
});
} }
@override @override
@ -223,72 +195,154 @@ class _MessagesListState extends State<MessagesList> with SingleTickerProviderSt
), ),
), ),
Expanded( Expanded(
child: Builder( child: Stack(
builder: (context) { children: [
if (cache == null) { Builder(
return const Column( builder: (context) {
mainAxisAlignment: MainAxisAlignment.start, if (cache == null) {
children: [ return const Column(
LinearProgressIndicator() mainAxisAlignment: MainAxisAlignment.start,
], children: [
); LinearProgressIndicator()
} ],
if (cache.error != null) {
return DefaultErrorWidget(
message: cache.error.toString(),
onRetry: () {
setState(() {
mClient.deleteUserMessageCache(widget.friend.id);
});
mClient.loadUserMessageCache(widget.friend.id);
},
);
}
if (cache.messages.isEmpty) {
return Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Icon(Icons.message_outlined),
Padding(
padding: const EdgeInsets.symmetric(vertical: 24),
child: Text(
"There are no messages here\nWhy not say hello?",
textAlign: TextAlign.center,
style: Theme
.of(context)
.textTheme
.titleMedium,
),
)
],
),
);
}
return ListView.builder(
controller: _messageScrollController,
reverse: true,
itemCount: cache.messages.length,
itemBuilder: (context, index) {
final entry = cache.messages[index];
if (index == cache.messages.length - 1) {
return Padding(
padding: const EdgeInsets.only(top: 12),
child: MessageBubble(message: entry,),
); );
} }
return MessageBubble(message: entry,); if (cache.error != null) {
return DefaultErrorWidget(
message: cache.error.toString(),
onRetry: () {
setState(() {
mClient.deleteUserMessageCache(widget.friend.id);
});
mClient.loadUserMessageCache(widget.friend.id);
},
);
}
if (cache.messages.isEmpty) {
return Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Icon(Icons.message_outlined),
Padding(
padding: const EdgeInsets.symmetric(vertical: 24),
child: Text(
"There are no messages here\nWhy not say hello?",
textAlign: TextAlign.center,
style: Theme
.of(context)
.textTheme
.titleMedium,
),
)
],
),
);
}
return ListView.builder(
controller: _messageScrollController,
reverse: true,
itemCount: cache.messages.length,
itemBuilder: (context, index) {
final entry = cache.messages[index];
if (index == cache.messages.length - 1) {
return Padding(
padding: const EdgeInsets.only(top: 12),
child: MessageBubble(message: entry,),
);
}
return MessageBubble(message: entry,);
},
);
}, },
); ),
}, Align(
alignment: Alignment.bottomCenter,
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Container(
decoration: BoxDecoration(
boxShadow: [
BoxShadow(
blurRadius: 8,
color: Theme
.of(context)
.shadowColor,
offset: const Offset(0, 4),
),
],
color: Theme
.of(context)
.colorScheme
.background,
),
child: AnimatedSwitcher(
duration: const Duration(milliseconds: 200),
switchInCurve: Curves.easeOut,
switchOutCurve: Curves.easeOut,
transitionBuilder: (Widget child, animation) => SizeTransition(sizeFactor: animation, child: child,),
child: switch ((_attachmentPickerOpen, _loadedFiles)) {
(true, []) => Row(
key: const ValueKey("attachment-picker"),
children: [
TextButton.icon(
onPressed: () async {
final result = await FilePicker.platform.pickFiles(type: FileType.image);
if (result != null && result.files.single.path != null) {
setState(() {
_loadedFiles.add(File(result.files.single.path!));
});
}
},
icon: const Icon(Icons.image),
label: const Text("Gallery"),
),
TextButton.icon(onPressed: (){}, icon: const Icon(Icons.camera), label: const Text("Camera"),),
],
),
(false, []) => null,
(_, _) => Row(
mainAxisSize: MainAxisSize.max,
children: [
Expanded(
child: SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(
children: _loadedFiles.map((e) => TextButton.icon(onPressed: (){}, label: Text(basename(e.path)), icon: const Icon(Icons.attach_file))).toList()
),
),
),
IconButton(onPressed: () async {
final result = await FilePicker.platform.pickFiles(type: FileType.image);
if (result != null && result.files.single.path != null) {
setState(() {
_loadedFiles.add(File(result.files.single.path!));
});
}
}, icon: const Icon(Icons.image)),
IconButton(onPressed: () {}, icon: const Icon(Icons.camera)),
],
)
},
),
),
],
),
),
if (_isSending && _loadedFiles.isNotEmpty)
const Align(
alignment: Alignment.bottomCenter,
child: LinearProgressIndicator(),
),
],
), ),
), ),
if (_isSending && _loadedFile != null) const LinearProgressIndicator(),
AnimatedContainer( AnimatedContainer(
decoration: BoxDecoration( decoration: BoxDecoration(
boxShadow: [ boxShadow: [
BoxShadow( BoxShadow(
blurRadius: _showBottomBarShadow ? 8 : 0, blurRadius: _showBottomBarShadow && !_attachmentPickerOpen ? 8 : 0,
color: Theme color: Theme
.of(context) .of(context)
.shadowColor, .shadowColor,
@ -304,24 +358,42 @@ class _MessagesListState extends State<MessagesList> with SingleTickerProviderSt
duration: const Duration(milliseconds: 250), duration: const Duration(milliseconds: 250),
child: Row( child: Row(
children: [ children: [
IconButton( AnimatedSwitcher(
onPressed: _hasText ? null : _loadedFile == null ? () async { duration: const Duration(milliseconds: 300),
//final machineId = ClientHolder.of(context).settingsClient.currentSettings.machineId.valueOrDefault; transitionBuilder: (Widget child, Animation<double> animation) =>
final result = await FilePicker.platform.pickFiles(type: FileType.image); FadeTransition(
opacity: animation,
if (result != null && result.files.single.path != null) { child: RotationTransition(
turns: Tween<double>(begin: 0.6, end: 1).animate(animation),
child: child,
),
),
child: !_attachmentPickerOpen ?
IconButton(
key: const ValueKey("add-attachment-icon"),
onPressed: () async {
setState(() { setState(() {
_loadedFile = File(result.files.single.path!); _attachmentPickerOpen = true;
}); });
} },
} : () => setState(() => _loadedFile = null), icon: const Icon(Icons.attach_file),
icon: _loadedFile == null ? const Icon(Icons.attach_file) : const Icon(Icons.close), ) :
IconButton(
key: const ValueKey("remove-attachment-icon"),
onPressed: () {
setState(() {
_loadedFiles.clear();
_attachmentPickerOpen = false;
});
},
icon: const Icon(Icons.close),
),
), ),
Expanded( Expanded(
child: Padding( child: Padding(
padding: const EdgeInsets.all(8), padding: const EdgeInsets.all(8),
child: TextField( child: TextField(
enabled: cache != null && cache.error == null && _loadedFile == null, enabled: cache != null && cache.error == null,
autocorrect: true, autocorrect: true,
controller: _messageTextController, controller: _messageTextController,
maxLines: 4, maxLines: 4,
@ -339,8 +411,8 @@ class _MessagesListState extends State<MessagesList> with SingleTickerProviderSt
}, },
decoration: InputDecoration( decoration: InputDecoration(
isDense: true, isDense: true,
hintText: _loadedFile == null ? "Message ${widget.friend hintText: "Message ${widget.friend
.username}..." : "Send ${basename(_loadedFile?.path ?? "")}", .username}...",
hintMaxLines: 1, hintMaxLines: 1,
contentPadding: const EdgeInsets.symmetric(horizontal: 16, vertical: 12), contentPadding: const EdgeInsets.symmetric(horizontal: 16, vertical: 12),
border: OutlineInputBorder( border: OutlineInputBorder(
@ -352,17 +424,52 @@ class _MessagesListState extends State<MessagesList> with SingleTickerProviderSt
), ),
Padding( Padding(
padding: const EdgeInsets.only(left: 8, right: 4.0), padding: const EdgeInsets.only(left: 8, right: 4.0),
child: IconButton( child: AnimatedSwitcher(
splashRadius: 24, duration: const Duration(milliseconds: 200),
onPressed: _isSending ? null : () async { transitionBuilder: (Widget child, Animation<double> animation) =>
if (_loadedFile == null) { FadeTransition(opacity: animation, child: RotationTransition(
await sendTextMessage(ScaffoldMessenger.of(context), apiClient, mClient, _messageTextController.text); turns: Tween<double>(begin: 0.5, end: 1).animate(animation), child: child,),),
} else { child: _hasText || _loadedFiles.isNotEmpty ? IconButton(
await sendImageMessage(ScaffoldMessenger.of(context), apiClient, mClient, _loadedFile!, ClientHolder.of(context).settingsClient.currentSettings.machineId.valueOrDefault); key: const ValueKey("send-button"),
} splashRadius: 24,
}, onPressed: _isSending ? null : () async {
iconSize: 28, final sMsgnr = ScaffoldMessenger.of(context);
icon: const Icon(Icons.send), setState(() {
_isSending = true;
});
try {
for (final file in _loadedFiles) {
await sendImageMessage(apiClient, mClient, file, ClientHolder
.of(context)
.settingsClient
.currentSettings
.machineId
.valueOrDefault);
}
if (_hasText) {
await sendTextMessage(apiClient, mClient, _messageTextController.text);
}
_messageTextController.clear();
_loadedFiles.clear();
_attachmentPickerOpen = false;
} catch (e, s) {
FlutterError.reportError(FlutterErrorDetails(exception: e, stack: s));
sMsgnr.showSnackBar(SnackBar(content: Text("Failed to send a message: $e")));
}
setState(() {
_isSending = false;
});
},
iconSize: 28,
icon: const Icon(Icons.send),
) : IconButton(
key: const ValueKey("mic-button"),
splashRadius: 24,
onPressed: _isSending ? null : () async {},
iconSize: 28,
icon: const Icon(Icons.mic_outlined),
),
), ),
), ),
], ],

View file

@ -8,6 +8,7 @@
#include <dynamic_color/dynamic_color_plugin.h> #include <dynamic_color/dynamic_color_plugin.h>
#include <flutter_secure_storage_linux/flutter_secure_storage_linux_plugin.h> #include <flutter_secure_storage_linux/flutter_secure_storage_linux_plugin.h>
#include <record_linux/record_linux_plugin.h>
#include <url_launcher_linux/url_launcher_plugin.h> #include <url_launcher_linux/url_launcher_plugin.h>
void fl_register_plugins(FlPluginRegistry* registry) { void fl_register_plugins(FlPluginRegistry* registry) {
@ -17,6 +18,9 @@ void fl_register_plugins(FlPluginRegistry* registry) {
g_autoptr(FlPluginRegistrar) flutter_secure_storage_linux_registrar = g_autoptr(FlPluginRegistrar) flutter_secure_storage_linux_registrar =
fl_plugin_registry_get_registrar_for_plugin(registry, "FlutterSecureStorageLinuxPlugin"); fl_plugin_registry_get_registrar_for_plugin(registry, "FlutterSecureStorageLinuxPlugin");
flutter_secure_storage_linux_plugin_register_with_registrar(flutter_secure_storage_linux_registrar); flutter_secure_storage_linux_plugin_register_with_registrar(flutter_secure_storage_linux_registrar);
g_autoptr(FlPluginRegistrar) record_linux_registrar =
fl_plugin_registry_get_registrar_for_plugin(registry, "RecordLinuxPlugin");
record_linux_plugin_register_with_registrar(record_linux_registrar);
g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar = g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar =
fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin"); fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin");
url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar); url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar);

View file

@ -5,6 +5,7 @@
list(APPEND FLUTTER_PLUGIN_LIST list(APPEND FLUTTER_PLUGIN_LIST
dynamic_color dynamic_color
flutter_secure_storage_linux flutter_secure_storage_linux
record_linux
url_launcher_linux url_launcher_linux
) )

View file

@ -560,6 +560,54 @@ packages:
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "6.0.5" version: "6.0.5"
record:
dependency: "direct main"
description:
name: record
sha256: f703397f5a60d9b2b655b3acc94ba079b2d9a67dc0725bdb90ef2fee2441ebf7
url: "https://pub.dev"
source: hosted
version: "4.4.4"
record_linux:
dependency: transitive
description:
name: record_linux
sha256: "348db92c4ec1b67b1b85d791381c8c99d7c6908de141e7c9edc20dad399b15ce"
url: "https://pub.dev"
source: hosted
version: "0.4.1"
record_macos:
dependency: transitive
description:
name: record_macos
sha256: d1d0199d1395f05e218207e8cacd03eb9dc9e256ddfe2cfcbbb90e8edea06057
url: "https://pub.dev"
source: hosted
version: "0.2.2"
record_platform_interface:
dependency: transitive
description:
name: record_platform_interface
sha256: "7a2d4ce7ac3752505157e416e4e0d666a54b1d5d8601701b7e7e5e30bec181b4"
url: "https://pub.dev"
source: hosted
version: "0.5.0"
record_web:
dependency: transitive
description:
name: record_web
sha256: "219ffb4ca59b4338117857db56d3ffadbde3169bcaf1136f5f4d4656f4a2372d"
url: "https://pub.dev"
source: hosted
version: "0.5.0"
record_windows:
dependency: transitive
description:
name: record_windows
sha256: "42d545155a26b20d74f5107648dbb3382dbbc84dc3f1adc767040359e57a1345"
url: "https://pub.dev"
source: hosted
version: "0.7.1"
rxdart: rxdart:
dependency: transitive dependency: transitive
description: description:

View file

@ -31,9 +31,6 @@ dependencies:
flutter: flutter:
sdk: flutter sdk: flutter
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.2 cupertino_icons: ^1.0.2
http: ^0.13.5 http: ^0.13.5
http_parser: ^4.0.2 http_parser: ^4.0.2
@ -60,6 +57,7 @@ dependencies:
hive: ^2.2.3 hive: ^2.2.3
hive_flutter: ^1.1.0 hive_flutter: ^1.1.0
file_picker: ^5.3.0 file_picker: ^5.3.0
record: ^4.4.4
dev_dependencies: dev_dependencies:
flutter_test: flutter_test:

View file

@ -8,6 +8,7 @@
#include <dynamic_color/dynamic_color_plugin_c_api.h> #include <dynamic_color/dynamic_color_plugin_c_api.h>
#include <flutter_secure_storage_windows/flutter_secure_storage_windows_plugin.h> #include <flutter_secure_storage_windows/flutter_secure_storage_windows_plugin.h>
#include <record_windows/record_windows_plugin_c_api.h>
#include <url_launcher_windows/url_launcher_windows.h> #include <url_launcher_windows/url_launcher_windows.h>
void RegisterPlugins(flutter::PluginRegistry* registry) { void RegisterPlugins(flutter::PluginRegistry* registry) {
@ -15,6 +16,8 @@ void RegisterPlugins(flutter::PluginRegistry* registry) {
registry->GetRegistrarForPlugin("DynamicColorPluginCApi")); registry->GetRegistrarForPlugin("DynamicColorPluginCApi"));
FlutterSecureStorageWindowsPluginRegisterWithRegistrar( FlutterSecureStorageWindowsPluginRegisterWithRegistrar(
registry->GetRegistrarForPlugin("FlutterSecureStorageWindowsPlugin")); registry->GetRegistrarForPlugin("FlutterSecureStorageWindowsPlugin"));
RecordWindowsPluginCApiRegisterWithRegistrar(
registry->GetRegistrarForPlugin("RecordWindowsPluginCApi"));
UrlLauncherWindowsRegisterWithRegistrar( UrlLauncherWindowsRegisterWithRegistrar(
registry->GetRegistrarForPlugin("UrlLauncherWindows")); registry->GetRegistrarForPlugin("UrlLauncherWindows"));
} }

View file

@ -5,6 +5,7 @@
list(APPEND FLUTTER_PLUGIN_LIST list(APPEND FLUTTER_PLUGIN_LIST
dynamic_color dynamic_color
flutter_secure_storage_windows flutter_secure_storage_windows
record_windows
url_launcher_windows url_launcher_windows
) )