Solian/lib/screens/channel/channel_chat.dart

418 lines
12 KiB
Dart
Raw Normal View History

2024-05-26 05:39:21 +00:00
import 'dart:async';
2024-06-08 13:35:50 +00:00
import 'dart:ui';
2024-05-26 05:39:21 +00:00
2024-05-25 17:21:08 +00:00
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:solian/exts.dart';
2024-05-31 17:25:45 +00:00
import 'package:solian/models/call.dart';
2024-05-25 17:21:08 +00:00
import 'package:solian/models/channel.dart';
import 'package:solian/models/message.dart';
2024-05-26 05:39:21 +00:00
import 'package:solian/models/packet.dart';
2024-05-25 17:21:08 +00:00
import 'package:solian/providers/auth.dart';
2024-05-26 05:39:21 +00:00
import 'package:solian/providers/chat.dart';
2024-06-01 12:18:25 +00:00
import 'package:solian/providers/content/call.dart';
2024-05-25 17:21:08 +00:00
import 'package:solian/providers/content/channel.dart';
import 'package:solian/providers/message/helper.dart';
import 'package:solian/providers/message/history.dart';
2024-05-26 15:13:43 +00:00
import 'package:solian/router.dart';
2024-06-08 16:09:01 +00:00
import 'package:solian/screens/channel/channel_detail.dart';
2024-05-25 17:21:08 +00:00
import 'package:solian/theme.dart';
2024-06-22 15:59:11 +00:00
import 'package:solian/widgets/app_bar_title.dart';
2024-06-01 12:18:25 +00:00
import 'package:solian/widgets/chat/call/call_prejoin.dart';
2024-05-31 17:25:45 +00:00
import 'package:solian/widgets/chat/call/chat_call_action.dart';
2024-05-25 17:21:08 +00:00
import 'package:solian/widgets/chat/chat_message.dart';
import 'package:solian/widgets/chat/chat_message_action.dart';
2024-05-26 05:39:21 +00:00
import 'package:solian/widgets/chat/chat_message_input.dart';
2024-06-06 12:23:50 +00:00
import 'package:solian/widgets/current_state_action.dart';
2024-05-25 17:21:08 +00:00
class ChannelChatScreen extends StatefulWidget {
final String alias;
final String realm;
const ChannelChatScreen({
super.key,
required this.alias,
this.realm = 'global',
});
@override
State<ChannelChatScreen> createState() => _ChannelChatScreenState();
}
class _ChannelChatScreenState extends State<ChannelChatScreen> {
bool _isBusy = false;
2024-05-30 14:02:54 +00:00
int? _accountId;
2024-05-26 15:13:43 +00:00
String? _overrideAlias;
2024-05-25 17:21:08 +00:00
Channel? _channel;
2024-06-08 16:09:01 +00:00
ChannelMember? _channelProfile;
2024-05-31 17:25:45 +00:00
Call? _ongoingCall;
2024-05-26 05:39:21 +00:00
StreamSubscription<NetworkPackage>? _subscription;
2024-05-25 17:21:08 +00:00
MessageHistoryDb? _db;
List<LocalMessage> _currentHistory = List.empty();
2024-05-25 17:21:08 +00:00
2024-05-30 14:02:54 +00:00
getProfile() async {
final AuthProvider auth = Get.find();
final prof = await auth.getProfile();
_accountId = prof.body['id'];
}
2024-05-26 15:13:43 +00:00
getChannel({String? overrideAlias}) async {
2024-05-25 17:21:08 +00:00
final ChannelProvider provider = Get.find();
setState(() => _isBusy = true);
2024-06-08 16:09:01 +00:00
if (overrideAlias != null) _overrideAlias = overrideAlias;
2024-05-26 15:13:43 +00:00
2024-05-25 17:21:08 +00:00
try {
2024-05-26 15:13:43 +00:00
final resp = await provider.getChannel(
_overrideAlias ?? widget.alias,
realm: widget.realm,
);
2024-06-08 16:09:01 +00:00
final respProfile = await provider.getMyChannelProfile(
_overrideAlias ?? widget.alias,
realm: widget.realm,
);
setState(() {
_channel = Channel.fromJson(resp.body);
_channelProfile = ChannelMember.fromJson(respProfile.body);
});
2024-05-25 17:21:08 +00:00
} catch (e) {
context.showErrorDialog(e);
}
setState(() => _isBusy = false);
}
2024-05-31 17:25:45 +00:00
getOngoingCall() async {
final ChannelProvider provider = Get.find();
setState(() => _isBusy = true);
try {
final resp = await provider.getChannelOngoingCall(
_overrideAlias ?? widget.alias,
realm: widget.realm,
);
if (resp != null) {
setState(() => _ongoingCall = Call.fromJson(resp.body));
}
} catch (e) {
context.showErrorDialog(e);
}
setState(() => _isBusy = false);
}
Future<void> getMessages() async {
await _db!.syncMessages(_channel!, scope: widget.realm);
await syncHistory();
}
2024-05-25 17:21:08 +00:00
Future<void> syncHistory() async {
_currentHistory = await _db!.localMessages.findAllByChannel(_channel!.id);
setState(() {});
2024-05-25 17:21:08 +00:00
}
2024-05-26 05:39:21 +00:00
void listenMessages() {
final ChatProvider provider = Get.find();
_subscription = provider.stream.stream.listen((event) {
switch (event.method) {
case 'messages.new':
final payload = Message.fromJson(event.payload!);
if (payload.channelId == _channel?.id) {
_db?.receiveMessage(payload);
2024-05-26 05:39:21 +00:00
}
break;
case 'messages.update':
final payload = Message.fromJson(event.payload!);
if (payload.channelId == _channel?.id) {
_db?.replaceMessage(payload);
2024-05-26 05:39:21 +00:00
}
break;
case 'messages.burnt':
final payload = Message.fromJson(event.payload!);
if (payload.channelId == _channel?.id) {
_db?.burnMessage(payload.id);
2024-05-26 05:39:21 +00:00
}
break;
2024-05-31 17:25:45 +00:00
case 'calls.new':
final payload = Call.fromJson(event.payload!);
_ongoingCall = payload;
break;
case 'calls.end':
_ongoingCall = null;
break;
2024-05-26 05:39:21 +00:00
}
syncHistory();
2024-05-26 05:39:21 +00:00
});
}
2024-05-25 17:21:08 +00:00
bool checkMessageMergeable(Message? a, Message? b) {
if (a?.replyTo != null) return false;
if (a == null || b == null) return false;
2024-05-26 05:39:21 +00:00
if (a.sender.account.id != b.sender.account.id) return false;
2024-05-25 17:21:08 +00:00
return a.createdAt.difference(b.createdAt).inMinutes <= 3;
}
2024-06-01 12:18:25 +00:00
void showCallPrejoin() {
showModalBottomSheet(
useRootNavigator: true,
context: context,
builder: (context) => ChatCallPrejoinPopup(
ongoingCall: _ongoingCall!,
channel: _channel!,
),
);
}
Message? _messageToReplying;
Message? _messageToEditing;
Widget buildHistory(context, index) {
2024-05-25 17:21:08 +00:00
bool isMerged = false, hasMerged = false;
if (index > 0) {
hasMerged = checkMessageMergeable(
_currentHistory[index - 1].data,
_currentHistory[index].data,
2024-05-25 17:21:08 +00:00
);
}
if (index + 1 < _currentHistory.length) {
2024-05-25 17:21:08 +00:00
isMerged = checkMessageMergeable(
_currentHistory[index].data,
_currentHistory[index + 1].data,
2024-05-25 17:21:08 +00:00
);
}
2024-06-04 15:29:05 +00:00
final item = _currentHistory[index].data;
2024-06-04 15:29:05 +00:00
Widget content;
if (item.replyTo != null) {
content = Column(
children: [
ChatMessage(
2024-06-08 16:09:01 +00:00
key: Key('m${item.replyTo!.uuid}'),
item: item.replyTo!,
2024-06-04 15:29:05 +00:00
isReply: true,
).paddingOnly(left: 24, right: 4, bottom: 2),
ChatMessage(
key: Key('m${item.uuid}'),
item: item,
isMerged: isMerged,
),
],
);
} else {
content = ChatMessage(
key: Key('m${item.uuid}'),
item: item,
isMerged: isMerged,
);
}
2024-05-25 17:21:08 +00:00
return InkWell(
child: Container(
2024-06-04 15:29:05 +00:00
child: content.paddingOnly(
top: !isMerged ? 8 : 0,
bottom: !hasMerged ? 8 : 0,
2024-05-25 17:21:08 +00:00
),
),
onLongPress: () {
showModalBottomSheet(
useRootNavigator: true,
context: context,
builder: (context) => ChatMessageAction(
channel: _channel!,
realm: _channel!.realm,
item: item,
onEdit: () {
setState(() => _messageToEditing = item);
},
onReply: () {
setState(() => _messageToReplying = item);
},
),
);
},
2024-05-29 14:42:11 +00:00
);
2024-05-25 17:21:08 +00:00
}
@override
void initState() {
createHistoryDb().then((db) async {
_db = db;
await getChannel();
await syncHistory();
getProfile();
getOngoingCall();
getMessages();
2024-05-25 17:21:08 +00:00
2024-05-26 05:39:21 +00:00
listenMessages();
2024-05-25 17:21:08 +00:00
});
super.initState();
2024-05-25 17:21:08 +00:00
}
@override
Widget build(BuildContext context) {
2024-06-01 12:18:25 +00:00
if (_isBusy || _channel == null) {
2024-06-08 16:09:01 +00:00
return Material(
color: Theme.of(context).colorScheme.surface,
child: const Center(
child: CircularProgressIndicator(),
),
2024-05-25 17:21:08 +00:00
);
}
2024-05-30 14:02:54 +00:00
String title = _channel?.name ?? 'loading'.tr;
String? placeholder;
if (_channel?.type == 1) {
final otherside = _channel!.members!
.where((e) => e.account.externalId != _accountId)
.first;
title = otherside.account.nick;
placeholder = 'messageInputPlaceholder'.trParams(
{'channel': '@${otherside.account.name}'},
);
}
2024-06-01 12:18:25 +00:00
final ChatCallProvider call = Get.find();
2024-05-25 17:21:08 +00:00
return Scaffold(
appBar: AppBar(
2024-06-22 15:59:11 +00:00
title: AppBarTitle(title),
2024-05-25 17:21:08 +00:00
centerTitle: false,
2024-06-22 15:59:11 +00:00
titleSpacing: SolianTheme.titleSpacing(context),
toolbarHeight: SolianTheme.toolbarHeight(context),
2024-05-25 17:21:08 +00:00
actions: [
2024-06-06 12:23:50 +00:00
const BackgroundStateWidget(),
2024-05-31 17:25:45 +00:00
Builder(builder: (context) {
if (_isBusy) return const SizedBox();
return ChatCallButton(
realm: _channel!.realm,
channel: _channel!,
ongoingCall: _ongoingCall,
);
}),
2024-05-25 17:21:08 +00:00
IconButton(
2024-05-26 15:13:43 +00:00
icon: const Icon(Icons.more_vert),
onPressed: () {
AppRouter.instance
.pushNamed(
'channelDetail',
pathParameters: {'alias': widget.alias},
queryParameters: {'realm': widget.realm},
2024-06-08 16:09:01 +00:00
extra: ChannelDetailArguments(
profile: _channelProfile!,
channel: _channel!,
),
2024-05-26 15:13:43 +00:00
)
.then((value) {
if (value == false) AppRouter.instance.pop();
if (value != null) {
final resp = Channel.fromJson(value as Map<String, dynamic>);
getChannel(overrideAlias: resp.alias);
}
});
},
2024-05-25 17:21:08 +00:00
),
SizedBox(
width: SolianTheme.isLargeScreen(context) ? 8 : 16,
),
],
),
2024-05-26 05:39:21 +00:00
body: Stack(
2024-05-25 17:21:08 +00:00
children: [
2024-05-26 05:39:21 +00:00
Column(
children: [
Expanded(
child: ListView.builder(
itemCount: _currentHistory.length,
2024-06-08 13:35:50 +00:00
clipBehavior: Clip.none,
2024-05-26 05:39:21 +00:00
reverse: true,
itemBuilder: buildHistory,
2024-06-08 13:35:50 +00:00
).paddingOnly(bottom: 56),
2024-05-25 17:21:08 +00:00
),
2024-05-26 05:39:21 +00:00
],
),
Positioned(
2024-06-08 13:35:50 +00:00
bottom: 0,
2024-06-05 15:55:21 +00:00
left: 0,
right: 0,
2024-06-08 13:35:50 +00:00
child: ClipRect(
child: BackdropFilter(
filter: ImageFilter.blur(sigmaX: 50, sigmaY: 50),
child: SafeArea(
child: ChatMessageInput(
edit: _messageToEditing,
reply: _messageToReplying,
realm: widget.realm,
placeholder: placeholder,
channel: _channel!,
onSent: (Message item) {
setState(() {
_db?.receiveMessage(item);
syncHistory();
2024-06-08 13:35:50 +00:00
});
},
onReset: () {
setState(() {
_messageToReplying = null;
_messageToEditing = null;
});
},
),
),
),
2024-05-25 17:21:08 +00:00
),
),
2024-05-31 17:25:45 +00:00
if (_ongoingCall != null)
2024-06-01 12:18:25 +00:00
Positioned(
top: 0,
left: 0,
right: 0,
child: MaterialBanner(
padding: const EdgeInsets.only(left: 16, top: 4, bottom: 4),
leading: const Icon(Icons.call_received),
backgroundColor: Theme.of(context).colorScheme.surfaceContainer,
dividerColor: Colors.transparent,
content: Text('callOngoing'.tr),
actions: [
Obx(() {
if (call.current.value == null) {
return TextButton(
onPressed: showCallPrejoin,
child: Text('callJoin'.tr),
);
} else if (call.channel.value?.id == _channel?.id) {
return TextButton(
onPressed: () => call.gotoScreen(context),
child: Text('callResume'.tr),
);
} else {
return TextButton(
onPressed: null,
child: Text('callJoin'.tr),
);
}
})
],
),
2024-05-31 17:25:45 +00:00
),
2024-05-25 17:21:08 +00:00
],
),
);
}
2024-05-26 05:39:21 +00:00
@override
void dispose() {
_subscription?.cancel();
super.dispose();
}
2024-05-25 17:21:08 +00:00
}