2024-11-16 05:54:36 +00:00
|
|
|
import 'package:easy_localization/easy_localization.dart';
|
2024-11-13 16:08:09 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2024-11-16 05:54:36 +00:00
|
|
|
import 'package:go_router/go_router.dart';
|
|
|
|
import 'package:material_symbols_icons/symbols.dart';
|
|
|
|
import 'package:provider/provider.dart';
|
2024-12-04 16:02:32 +00:00
|
|
|
import 'package:responsive_framework/responsive_framework.dart';
|
2024-11-16 13:15:55 +00:00
|
|
|
import 'package:surface/providers/channel.dart';
|
2024-12-03 16:17:11 +00:00
|
|
|
import 'package:surface/providers/user_directory.dart';
|
2024-11-16 08:55:31 +00:00
|
|
|
import 'package:surface/types/chat.dart';
|
|
|
|
import 'package:surface/widgets/account/account_image.dart';
|
2024-11-16 17:16:54 +00:00
|
|
|
import 'package:surface/widgets/dialog.dart';
|
2024-11-16 08:55:31 +00:00
|
|
|
import 'package:surface/widgets/loading_indicator.dart';
|
2024-12-04 16:02:32 +00:00
|
|
|
import 'package:surface/widgets/navigation/app_scaffold.dart';
|
2024-11-13 16:08:09 +00:00
|
|
|
|
2024-11-16 05:54:36 +00:00
|
|
|
class ChatScreen extends StatefulWidget {
|
2024-11-13 16:08:09 +00:00
|
|
|
const ChatScreen({super.key});
|
|
|
|
|
2024-11-16 05:54:36 +00:00
|
|
|
@override
|
|
|
|
State<ChatScreen> createState() => _ChatScreenState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _ChatScreenState extends State<ChatScreen> {
|
2024-11-16 13:15:55 +00:00
|
|
|
bool _isBusy = true;
|
2024-11-16 08:55:31 +00:00
|
|
|
|
|
|
|
List<SnChannel>? _channels;
|
2024-12-03 16:17:11 +00:00
|
|
|
Map<int, SnChatMessage>? _lastMessages;
|
2024-11-16 08:55:31 +00:00
|
|
|
|
2024-11-28 15:51:13 +00:00
|
|
|
void _refreshChannels() {
|
2024-11-16 13:15:55 +00:00
|
|
|
final chan = context.read<ChatChannelProvider>();
|
2024-12-03 16:17:11 +00:00
|
|
|
chan.fetchChannels().listen((channels) async {
|
|
|
|
final lastMessages = await chan.getLastMessages(channels);
|
|
|
|
_lastMessages = {for (final val in lastMessages) val.channelId: val};
|
|
|
|
channels.sort((a, b) {
|
|
|
|
if (_lastMessages!.containsKey(a.id) &&
|
|
|
|
_lastMessages!.containsKey(b.id)) {
|
|
|
|
return _lastMessages![b.id]!
|
|
|
|
.createdAt
|
|
|
|
.compareTo(_lastMessages![a.id]!.createdAt);
|
|
|
|
}
|
|
|
|
if (_lastMessages!.containsKey(a.id)) return -1;
|
|
|
|
if (_lastMessages!.containsKey(b.id)) return 1;
|
|
|
|
return 0;
|
|
|
|
});
|
|
|
|
|
2024-11-16 13:15:55 +00:00
|
|
|
if (mounted) setState(() => _channels = channels);
|
|
|
|
})
|
2024-11-16 17:16:54 +00:00
|
|
|
..onError((err) {
|
|
|
|
if (!mounted) return;
|
|
|
|
context.showErrorDialog(err);
|
2024-11-16 13:15:55 +00:00
|
|
|
setState(() => _isBusy = false);
|
|
|
|
})
|
|
|
|
..onDone(() {
|
2024-11-16 17:16:54 +00:00
|
|
|
if (!mounted) return;
|
2024-11-16 13:15:55 +00:00
|
|
|
setState(() => _isBusy = false);
|
|
|
|
});
|
2024-11-16 05:54:36 +00:00
|
|
|
}
|
|
|
|
|
2024-11-28 15:51:13 +00:00
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
|
|
|
_refreshChannels();
|
|
|
|
}
|
|
|
|
|
2024-11-13 16:08:09 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2024-12-03 16:17:11 +00:00
|
|
|
final ud = context.read<UserDirectoryProvider>();
|
|
|
|
|
2024-11-16 05:54:36 +00:00
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
2024-12-04 16:02:32 +00:00
|
|
|
leading: ResponsiveBreakpoints.of(context).smallerOrEqualTo(MOBILE)
|
|
|
|
? DrawerButton(onPressed: () {
|
|
|
|
globalRootScaffoldKey.currentState?.openDrawer();
|
|
|
|
})
|
|
|
|
: null,
|
2024-11-16 05:54:36 +00:00
|
|
|
title: Text('screenChat').tr(),
|
|
|
|
),
|
|
|
|
floatingActionButton: FloatingActionButton(
|
|
|
|
child: const Icon(Symbols.chat_add_on),
|
|
|
|
onPressed: () {
|
2024-11-28 15:51:13 +00:00
|
|
|
GoRouter.of(context).pushNamed('chatManage').then((value) {
|
|
|
|
if (value != null && context.mounted) _refreshChannels();
|
|
|
|
});
|
2024-11-16 05:54:36 +00:00
|
|
|
},
|
|
|
|
),
|
2024-11-16 08:55:31 +00:00
|
|
|
body: Column(
|
|
|
|
children: [
|
|
|
|
LoadingIndicator(isActive: _isBusy),
|
|
|
|
Expanded(
|
2024-11-28 15:51:13 +00:00
|
|
|
child: RefreshIndicator(
|
|
|
|
onRefresh: () => Future.sync(() => _refreshChannels()),
|
|
|
|
child: ListView.builder(
|
|
|
|
itemCount: _channels?.length ?? 0,
|
|
|
|
itemBuilder: (context, idx) {
|
|
|
|
final channel = _channels![idx];
|
2024-12-03 16:17:11 +00:00
|
|
|
final lastMessage = _lastMessages?[channel.id];
|
2024-11-28 15:51:13 +00:00
|
|
|
return ListTile(
|
|
|
|
title: Text(channel.name),
|
2024-12-03 16:17:11 +00:00
|
|
|
subtitle: lastMessage != null
|
|
|
|
? Text(
|
|
|
|
'${ud.getAccountFromCache(lastMessage.sender.accountId)?.nick}: ${lastMessage.body['text'] ?? 'Unable preview'}',
|
|
|
|
maxLines: 1,
|
|
|
|
overflow: TextOverflow.ellipsis,
|
|
|
|
)
|
|
|
|
: Text(
|
|
|
|
channel.description,
|
|
|
|
maxLines: 1,
|
|
|
|
overflow: TextOverflow.ellipsis,
|
|
|
|
),
|
2024-11-28 15:51:13 +00:00
|
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 16),
|
|
|
|
leading: AccountImage(
|
|
|
|
content: null,
|
|
|
|
fallbackWidget: const Icon(Symbols.chat, size: 20),
|
|
|
|
),
|
|
|
|
onTap: () {
|
|
|
|
GoRouter.of(context).pushNamed(
|
|
|
|
'chatRoom',
|
|
|
|
pathParameters: {
|
|
|
|
'scope': channel.realm?.alias ?? 'global',
|
|
|
|
'alias': channel.alias,
|
|
|
|
},
|
|
|
|
).then((value) {
|
|
|
|
if (value == true) _refreshChannels();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
2024-11-16 08:55:31 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2024-11-16 05:54:36 +00:00
|
|
|
);
|
2024-11-13 16:08:09 +00:00
|
|
|
}
|
|
|
|
}
|