mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 03:29:30 +01:00
174 lines
6.5 KiB
Dart
174 lines
6.5 KiB
Dart
import 'dart:math';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
|
import 'package:future_loading_dialog/future_loading_dialog.dart';
|
|
import 'package:matrix/matrix.dart';
|
|
import 'package:matrix_link_text/link_text.dart';
|
|
import 'package:vrouter/vrouter.dart';
|
|
|
|
import 'package:fluffychat/config/themes.dart';
|
|
import 'package:fluffychat/utils/url_launcher.dart';
|
|
import 'package:fluffychat/widgets/content_banner.dart';
|
|
import 'package:fluffychat/widgets/matrix.dart';
|
|
import '../utils/localized_exception_extension.dart';
|
|
|
|
class PublicRoomBottomSheet extends StatelessWidget {
|
|
final String? roomAlias;
|
|
final BuildContext outerContext;
|
|
final PublicRoomsChunk? chunk;
|
|
final VoidCallback? onRoomJoined;
|
|
|
|
PublicRoomBottomSheet({
|
|
this.roomAlias,
|
|
required this.outerContext,
|
|
this.chunk,
|
|
this.onRoomJoined,
|
|
Key? key,
|
|
}) : super(key: key) {
|
|
assert(roomAlias != null || chunk != null);
|
|
}
|
|
|
|
void _joinRoom(BuildContext context) async {
|
|
final client = Matrix.of(context).client;
|
|
final result = await showFutureLoadingDialog<String>(
|
|
context: context,
|
|
future: () => chunk?.joinRule == 'knock'
|
|
? client.knockRoom(chunk!.roomId)
|
|
: client.joinRoom(roomAlias ?? chunk!.roomId),
|
|
);
|
|
if (result.error == null) {
|
|
if (client.getRoomById(result.result!) == null) {
|
|
await client.onSync.stream.firstWhere(
|
|
(sync) => sync.rooms?.join?.containsKey(result.result) ?? false);
|
|
}
|
|
// don't open the room if the joined room is a space
|
|
if (!client.getRoomById(result.result!)!.isSpace) {
|
|
VRouter.of(context).toSegments(['rooms', result.result!]);
|
|
}
|
|
Navigator.of(context, rootNavigator: false).pop();
|
|
return;
|
|
}
|
|
}
|
|
|
|
bool _testRoom(PublicRoomsChunk r) => r.canonicalAlias == roomAlias;
|
|
|
|
Future<PublicRoomsChunk> _search(BuildContext context) async {
|
|
final chunk = this.chunk;
|
|
if (chunk != null) return chunk;
|
|
final query = await Matrix.of(context).client.queryPublicRooms(
|
|
server: roomAlias!.domain,
|
|
filter: PublicRoomQueryFilter(
|
|
genericSearchTerm: roomAlias,
|
|
),
|
|
);
|
|
if (!query.chunk.any(_testRoom)) {
|
|
throw (L10n.of(context)!.noRoomsFound);
|
|
}
|
|
return query.chunk.firstWhere(_testRoom);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final roomAlias = this.roomAlias;
|
|
return Center(
|
|
child: SizedBox(
|
|
width: min(
|
|
MediaQuery.of(context).size.width, FluffyThemes.columnWidth * 1.5),
|
|
child: Material(
|
|
elevation: 4,
|
|
child: SafeArea(
|
|
child: Scaffold(
|
|
extendBodyBehindAppBar: true,
|
|
appBar: AppBar(
|
|
elevation: 0,
|
|
titleSpacing: 0,
|
|
backgroundColor:
|
|
Theme.of(context).scaffoldBackgroundColor.withOpacity(0.5),
|
|
title: Text(
|
|
roomAlias ?? chunk!.name ?? chunk!.roomId,
|
|
overflow: TextOverflow.fade,
|
|
),
|
|
leading: IconButton(
|
|
icon: const Icon(Icons.arrow_downward_outlined),
|
|
onPressed: Navigator.of(context, rootNavigator: false).pop,
|
|
tooltip: L10n.of(context)!.close,
|
|
),
|
|
actions: [
|
|
TextButton.icon(
|
|
onPressed: () => _joinRoom(context),
|
|
label: Text(L10n.of(context)!.joinRoom),
|
|
icon: const Icon(Icons.login_outlined),
|
|
),
|
|
],
|
|
),
|
|
body: FutureBuilder<PublicRoomsChunk>(
|
|
future: _search(context),
|
|
builder: (context, snapshot) {
|
|
final profile = snapshot.data;
|
|
return ListView(
|
|
padding: EdgeInsets.zero,
|
|
children: [
|
|
if (profile == null)
|
|
Container(
|
|
height: 156,
|
|
alignment: Alignment.center,
|
|
color: Theme.of(context).secondaryHeaderColor,
|
|
child: snapshot.hasError
|
|
? Text(
|
|
snapshot.error!.toLocalizedString(context))
|
|
: const CircularProgressIndicator.adaptive(
|
|
strokeWidth: 2),
|
|
)
|
|
else
|
|
ContentBanner(
|
|
mxContent: profile.avatarUrl,
|
|
height: 156,
|
|
defaultIcon: Icons.group_outlined,
|
|
client: Matrix.of(context).client,
|
|
),
|
|
ListTile(
|
|
title: Text(profile?.name ??
|
|
roomAlias?.localpart ??
|
|
chunk!.roomId.localpart ??
|
|
''),
|
|
subtitle: Text(
|
|
'${L10n.of(context)!.participant}: ${profile?.numJoinedMembers ?? 0}',
|
|
),
|
|
trailing: const Icon(Icons.account_box_outlined),
|
|
),
|
|
if (profile?.topic?.isNotEmpty ?? false)
|
|
ListTile(
|
|
title: Text(
|
|
L10n.of(context)!.groupDescription,
|
|
style: TextStyle(
|
|
color: Theme.of(context).colorScheme.secondary,
|
|
),
|
|
),
|
|
subtitle: LinkText(
|
|
text: profile!.topic!,
|
|
linkStyle:
|
|
const TextStyle(color: Colors.blueAccent),
|
|
textStyle: TextStyle(
|
|
fontSize: 14,
|
|
color: Theme.of(context)
|
|
.textTheme
|
|
.bodyText2!
|
|
.color,
|
|
),
|
|
onLinkTap: (url) =>
|
|
UrlLauncher(context, url).launchUrl(),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|