Solian/lib/widgets/channel/channel_list.dart

296 lines
8.6 KiB
Dart
Raw Normal View History

import 'dart:math';
2024-05-29 15:22:24 +00:00
import 'package:flutter/material.dart';
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
import 'package:gap/gap.dart';
2024-05-29 15:22:24 +00:00
import 'package:get/get.dart';
2024-08-01 16:54:19 +00:00
import 'package:solian/controllers/chat_events_controller.dart';
2024-05-29 15:22:24 +00:00
import 'package:solian/models/channel.dart';
2024-08-01 16:54:19 +00:00
import 'package:solian/platform.dart';
2024-10-05 07:11:48 +00:00
import 'package:solian/providers/database/database.dart';
2024-05-29 15:22:24 +00:00
import 'package:solian/router.dart';
import 'package:solian/widgets/account/account_avatar.dart';
2024-05-30 14:02:54 +00:00
class ChannelListWidget extends StatefulWidget {
2024-05-29 15:22:24 +00:00
final List<Channel> channels;
final int selfId;
2024-07-12 13:59:16 +00:00
final bool isDense;
final bool isCollapsed;
2024-05-30 14:02:54 +00:00
final bool noCategory;
2024-07-12 13:59:16 +00:00
final bool useReplace;
final Function(Channel)? onSelected;
2024-05-29 15:22:24 +00:00
2024-05-30 14:02:54 +00:00
const ChannelListWidget({
super.key,
required this.channels,
required this.selfId,
2024-07-12 13:59:16 +00:00
this.isDense = false,
this.isCollapsed = false,
2024-05-30 14:02:54 +00:00
this.noCategory = false,
2024-07-12 13:59:16 +00:00
this.useReplace = false,
this.onSelected,
2024-05-30 14:02:54 +00:00
});
2024-05-29 15:22:24 +00:00
@override
2024-05-30 14:02:54 +00:00
State<ChannelListWidget> createState() => _ChannelListWidgetState();
}
2024-05-29 15:22:24 +00:00
2024-05-30 14:02:54 +00:00
class _ChannelListWidgetState extends State<ChannelListWidget> {
final List<Channel> _globalChannels = List.empty(growable: true);
final Map<String, List<Channel>> _inRealms = {};
2024-05-29 15:22:24 +00:00
2024-10-05 07:11:48 +00:00
Map<int, LocalMessageEventTableData>? _lastMessages;
2024-08-01 16:54:19 +00:00
final ChatEventController _eventController = ChatEventController();
2024-10-05 07:11:48 +00:00
Future<void> _loadLastMessages() async {
final messages = await _eventController.src.getLastInAllChannels();
setState(() {
_lastMessages = messages
.map((k, v) => MapEntry(k, v.firstOrNull))
.cast<int, LocalMessageEventTableData>();
});
}
2024-08-01 16:54:19 +00:00
void _mapChannels() {
2024-05-30 14:02:54 +00:00
_inRealms.clear();
_globalChannels.clear();
if (widget.noCategory) {
_globalChannels.addAll(widget.channels);
return;
}
for (final channel in widget.channels) {
if (channel.realmId != null) {
2024-06-01 16:39:50 +00:00
if (_inRealms[channel.realm!.alias] == null) {
_inRealms[channel.realm!.alias] = List.empty(growable: true);
2024-05-30 14:02:54 +00:00
}
2024-06-01 16:39:50 +00:00
_inRealms[channel.realm!.alias]!.add(channel);
2024-05-30 14:02:54 +00:00
} else {
_globalChannels.add(channel);
}
}
}
@override
void didUpdateWidget(covariant ChannelListWidget oldWidget) {
super.didUpdateWidget(oldWidget);
2024-08-01 16:54:19 +00:00
setState(() => _mapChannels());
2024-05-30 14:02:54 +00:00
}
2024-06-22 18:25:45 +00:00
@override
void initState() {
super.initState();
2024-08-01 16:54:19 +00:00
_mapChannels();
2024-10-05 07:11:48 +00:00
_eventController.initialize().then((_) {
_loadLastMessages();
});
2024-06-22 18:25:45 +00:00
}
2024-08-01 16:54:19 +00:00
void _gotoChannel(Channel item) {
2024-07-12 13:59:16 +00:00
if (widget.useReplace) {
AppRouter.instance.pushReplacementNamed(
'channelChat',
pathParameters: {'alias': item.alias},
queryParameters: {
if (item.realmId != null) 'realm': item.realm!.alias,
},
);
} else {
AppRouter.instance.pushNamed(
'channelChat',
pathParameters: {'alias': item.alias},
queryParameters: {
if (item.realmId != null) 'realm': item.realm!.alias,
},
);
}
if (widget.onSelected != null) {
widget.onSelected!(item);
}
2024-07-12 13:59:16 +00:00
}
2024-10-05 07:11:48 +00:00
Widget _buildChannelDescription(Channel item, ChannelMember? otherside) {
2024-08-01 16:54:19 +00:00
if (PlatformInfo.isWeb) {
2024-10-05 07:11:48 +00:00
return otherside != null
? Text(
'channelDirectDescription'.trParams(
{'username': '@${otherside.account.name}'},
),
maxLines: 1,
overflow: TextOverflow.ellipsis,
)
: Text(
item.description,
maxLines: 1,
overflow: TextOverflow.ellipsis,
);
2024-08-01 16:54:19 +00:00
}
2024-10-05 07:11:48 +00:00
return AnimatedSwitcher(
switchInCurve: Curves.easeIn,
switchOutCurve: Curves.easeOut,
transitionBuilder: (child, animation) {
return FadeTransition(opacity: animation, child: child);
},
duration: const Duration(milliseconds: 300),
child: (_lastMessages == null || _lastMessages![item.id] == null)
? Builder(builder: (context) {
return otherside != null
? Text(
'channelDirectDescription'.trParams(
{'username': '@${otherside.account.name}'},
),
maxLines: 1,
overflow: TextOverflow.ellipsis,
)
: Text(
item.description,
maxLines: 1,
overflow: TextOverflow.ellipsis,
);
})
: Builder(
builder: (context) {
final data = _lastMessages![item.id]!.data!;
return Text(
'${data.sender.account.nick}: ${data.body['text'] ?? 'Unsupported message to preview'}',
maxLines: 1,
overflow: TextOverflow.ellipsis,
);
},
),
layoutBuilder: (currentChild, previousChildren) {
return Stack(
alignment: Alignment.centerLeft,
children: <Widget>[
...previousChildren,
if (currentChild != null) currentChild,
],
2024-08-01 16:54:19 +00:00
);
},
);
}
Widget _buildEntry(Channel item) {
2024-07-12 13:59:16 +00:00
final padding = widget.isDense
? const EdgeInsets.symmetric(horizontal: 20)
: const EdgeInsets.symmetric(horizontal: 16);
2024-07-12 13:59:16 +00:00
final otherside =
item.members!.where((e) => e.account.id != widget.selfId).firstOrNull;
2024-05-30 14:02:54 +00:00
if (item.type == 1 && otherside != null) {
final avatar = AccountAvatar(
content: otherside.account.avatar,
radius: widget.isDense ? 12 : 20,
bgColor: Theme.of(context).colorScheme.primary,
feColor: Theme.of(context).colorScheme.onPrimary,
);
if (widget.isCollapsed) {
return Tooltip(
message: otherside.account.nick,
child: InkWell(
child: avatar.paddingSymmetric(vertical: 12),
onTap: () => _gotoChannel(item),
),
);
}
2024-05-30 14:02:54 +00:00
return ListTile(
leading: avatar,
2024-07-12 13:59:16 +00:00
contentPadding: padding,
2024-05-30 14:02:54 +00:00
title: Text(otherside.account.nick),
2024-10-05 07:11:48 +00:00
subtitle:
!widget.isDense ? _buildChannelDescription(item, otherside) : null,
2024-08-01 16:54:19 +00:00
onTap: () => _gotoChannel(item),
2024-07-12 13:59:16 +00:00
);
} else {
final avatar = CircleAvatar(
backgroundColor: item.realmId == null
? Theme.of(context).colorScheme.primary
: Colors.transparent,
radius: widget.isDense ? 12 : 20,
child: FaIcon(
FontAwesomeIcons.hashtag,
color: item.realmId == null
? Theme.of(context).colorScheme.onPrimary
: Theme.of(context).colorScheme.primary,
size: widget.isDense ? 12 : 16,
),
);
if (widget.isCollapsed) {
return Tooltip(
message: item.name,
child: InkWell(
child: avatar.paddingSymmetric(vertical: 12),
onTap: () => _gotoChannel(item),
),
);
}
2024-07-12 13:59:16 +00:00
return ListTile(
minTileHeight: widget.isDense ? 48 : null,
leading: avatar,
2024-07-12 13:59:16 +00:00
contentPadding: padding,
title: Text(item.name),
2024-10-05 07:11:48 +00:00
subtitle: !widget.isDense ? _buildChannelDescription(item, null) : null,
2024-08-01 16:54:19 +00:00
onTap: () => _gotoChannel(item),
2024-05-30 14:02:54 +00:00
);
}
2024-05-29 15:22:24 +00:00
}
2024-05-30 14:02:54 +00:00
@override
Widget build(BuildContext context) {
if (widget.noCategory) {
2024-07-06 10:17:54 +00:00
return CustomScrollView(
slivers: [
SliverList.builder(
itemCount: _globalChannels.length,
itemBuilder: (context, index) {
final element = _globalChannels[index];
2024-08-01 16:54:19 +00:00
return _buildEntry(element);
2024-07-06 10:17:54 +00:00
},
),
SliverGap(max(16, MediaQuery.of(context).padding.bottom)),
2024-07-06 10:17:54 +00:00
],
2024-05-30 14:02:54 +00:00
);
}
2024-07-06 10:17:54 +00:00
return CustomScrollView(
slivers: [
SliverList.builder(
itemCount: _globalChannels.length,
itemBuilder: (context, index) {
final element = _globalChannels[index];
2024-08-01 16:54:19 +00:00
return _buildEntry(element);
2024-07-06 10:17:54 +00:00
},
),
2024-07-12 13:59:16 +00:00
SliverList.list(
children: _inRealms.entries.map((element) {
return ExpansionTile(
2024-08-01 16:54:19 +00:00
tilePadding: const EdgeInsets.only(left: 20, right: 24),
2024-07-12 13:59:16 +00:00
minTileHeight: 48,
title: Text(element.value.first.realm!.name),
leading: CircleAvatar(
backgroundColor: Colors.teal,
radius: widget.isDense ? 12 : 24,
child: Icon(
Icons.workspaces,
color: Colors.white,
size: widget.isDense ? 12 : 16,
),
),
2024-08-01 16:54:19 +00:00
children: element.value.map((x) => _buildEntry(x)).toList(),
2024-07-12 13:59:16 +00:00
);
}).toList(),
),
2024-05-30 14:02:54 +00:00
],
);
}
2024-05-29 15:22:24 +00:00
}