2021-12-24 14:18:09 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
import 'package:adaptive_dialog/adaptive_dialog.dart';
|
2022-04-08 10:12:58 +02:00
|
|
|
import 'package:collection/collection.dart';
|
2021-12-24 14:18:09 +01:00
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
|
|
|
import 'package:future_loading_dialog/future_loading_dialog.dart';
|
|
|
|
import 'package:matrix/matrix.dart';
|
|
|
|
import 'package:vrouter/vrouter.dart';
|
|
|
|
|
|
|
|
import 'package:fluffychat/utils/matrix_sdk_extensions.dart/client_stories_extension.dart';
|
|
|
|
import 'package:fluffychat/widgets/avatar.dart';
|
|
|
|
import 'package:fluffychat/widgets/matrix.dart';
|
|
|
|
|
2021-12-25 18:47:36 +01:00
|
|
|
enum ContextualRoomAction {
|
|
|
|
mute,
|
|
|
|
unmute,
|
|
|
|
leave,
|
|
|
|
}
|
2021-12-24 14:18:09 +01:00
|
|
|
|
|
|
|
class StoriesHeader extends StatelessWidget {
|
2022-07-07 18:50:13 +02:00
|
|
|
final String filter;
|
|
|
|
const StoriesHeader({required this.filter, Key? key}) : super(key: key);
|
2021-12-24 14:18:09 +01:00
|
|
|
|
|
|
|
void _addToStoryAction(BuildContext context) =>
|
|
|
|
VRouter.of(context).to('/stories/create');
|
|
|
|
|
2021-12-26 09:31:48 +01:00
|
|
|
void _goToStoryAction(BuildContext context, String roomId) async {
|
|
|
|
final room = Matrix.of(context).client.getRoomById(roomId);
|
|
|
|
if (room == null) return;
|
|
|
|
if (room.membership != Membership.join) {
|
|
|
|
final result = await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: room.join,
|
|
|
|
);
|
|
|
|
if (result.error != null) return;
|
|
|
|
}
|
|
|
|
VRouter.of(context).toSegments(['stories', roomId]);
|
|
|
|
}
|
2021-12-24 14:18:09 +01:00
|
|
|
|
|
|
|
void _contextualActions(BuildContext context, Room room) async {
|
|
|
|
final action = await showModalActionSheet<ContextualRoomAction>(
|
2021-12-25 14:07:48 +01:00
|
|
|
cancelLabel: L10n.of(context)!.cancel,
|
2021-12-24 14:18:09 +01:00
|
|
|
context: context,
|
|
|
|
actions: [
|
|
|
|
if (room.pushRuleState != PushRuleState.notify)
|
|
|
|
SheetAction(
|
|
|
|
label: L10n.of(context)!.unmuteChat,
|
|
|
|
key: ContextualRoomAction.unmute,
|
|
|
|
icon: Icons.notifications_outlined,
|
|
|
|
)
|
|
|
|
else
|
|
|
|
SheetAction(
|
|
|
|
label: L10n.of(context)!.muteChat,
|
|
|
|
key: ContextualRoomAction.mute,
|
|
|
|
icon: Icons.notifications_off_outlined,
|
|
|
|
),
|
|
|
|
SheetAction(
|
|
|
|
label: L10n.of(context)!.unsubscribeStories,
|
|
|
|
key: ContextualRoomAction.leave,
|
|
|
|
icon: Icons.unsubscribe_outlined,
|
|
|
|
isDestructiveAction: true,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
if (action == null) return;
|
|
|
|
switch (action) {
|
|
|
|
case ContextualRoomAction.mute:
|
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.setPushRuleState(PushRuleState.dontNotify),
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
case ContextualRoomAction.unmute:
|
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.setPushRuleState(PushRuleState.notify),
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
case ContextualRoomAction.leave:
|
|
|
|
await showFutureLoadingDialog(
|
|
|
|
context: context,
|
|
|
|
future: () => room.leave(),
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final client = Matrix.of(context).client;
|
2022-08-10 21:15:13 +02:00
|
|
|
if (Matrix.of(context).shareContent != null) {
|
|
|
|
return ListTile(
|
|
|
|
leading: CircleAvatar(
|
|
|
|
radius: Avatar.defaultSize / 2,
|
|
|
|
backgroundColor: Theme.of(context).colorScheme.surface,
|
|
|
|
foregroundColor: Theme.of(context).textTheme.bodyText1?.color,
|
|
|
|
child: const Icon(Icons.camera_alt_outlined),
|
|
|
|
),
|
|
|
|
title: Text(L10n.of(context)!.addToStory),
|
|
|
|
onTap: () => _addToStoryAction(context),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (client.storiesRooms.isEmpty ||
|
|
|
|
!client.storiesRooms.any((room) =>
|
|
|
|
room.displayname.toLowerCase().contains(filter.toLowerCase()))) {
|
|
|
|
return Container();
|
|
|
|
}
|
|
|
|
final ownStoryRoom = client.storiesRooms
|
|
|
|
.firstWhereOrNull((r) => r.creatorId == client.userID);
|
|
|
|
final stories = [
|
|
|
|
if (ownStoryRoom != null) ownStoryRoom,
|
|
|
|
...client.storiesRooms..remove(ownStoryRoom),
|
|
|
|
];
|
|
|
|
return SizedBox(
|
|
|
|
height: 96,
|
|
|
|
child: ListView.builder(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 12),
|
|
|
|
scrollDirection: Axis.horizontal,
|
|
|
|
itemCount: stories.length,
|
|
|
|
itemBuilder: (context, i) {
|
|
|
|
final room = stories[i];
|
|
|
|
return FutureBuilder<Profile>(
|
|
|
|
future: room.getCreatorProfile(),
|
|
|
|
builder: (context, snapshot) {
|
|
|
|
final userId = room.creatorId;
|
|
|
|
final displayname = snapshot.data?.displayName ??
|
|
|
|
userId?.localpart ??
|
|
|
|
'Unknown';
|
|
|
|
final avatarUrl = snapshot.data?.avatarUrl;
|
|
|
|
if (!displayname.toLowerCase().contains(filter.toLowerCase())) {
|
|
|
|
return Container();
|
|
|
|
}
|
|
|
|
return _StoryButton(
|
|
|
|
profile: Profile(
|
|
|
|
displayName: displayname,
|
|
|
|
avatarUrl: avatarUrl,
|
|
|
|
userId: userId ?? 'Unknown',
|
|
|
|
),
|
|
|
|
heroTag: 'stories_${room.id}',
|
|
|
|
hasPosts: room.hasPosts || room == ownStoryRoom,
|
|
|
|
showEditFab: userId == client.userID,
|
|
|
|
unread: room.membership == Membership.invite ||
|
|
|
|
(room.hasNewMessages && room.hasPosts),
|
|
|
|
onPressed: () => _goToStoryAction(context, room.id),
|
|
|
|
onLongPressed: () => _contextualActions(context, room),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
),
|
2022-02-03 08:52:22 +01:00
|
|
|
);
|
2021-12-24 14:18:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension on Room {
|
2022-02-18 20:25:09 +01:00
|
|
|
Future<Profile> getCreatorProfile() =>
|
|
|
|
client.getProfileFromUserId(getState(EventTypes.RoomCreate)!.senderId);
|
2021-12-25 14:07:48 +01:00
|
|
|
|
|
|
|
bool get hasPosts {
|
2021-12-26 08:33:57 +01:00
|
|
|
if (membership == Membership.invite) return true;
|
2021-12-25 14:07:48 +01:00
|
|
|
final lastEvent = this.lastEvent;
|
|
|
|
if (lastEvent == null) return false;
|
|
|
|
if (lastEvent.type != EventTypes.Message) return false;
|
|
|
|
if (DateTime.now().difference(lastEvent.originServerTs).inHours >
|
|
|
|
ClientStoriesExtension.lifeTimeInHours) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2021-12-24 14:18:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class _StoryButton extends StatelessWidget {
|
2022-04-08 07:33:00 +02:00
|
|
|
final Profile profile;
|
|
|
|
final bool showEditFab;
|
|
|
|
final bool unread;
|
2022-07-07 12:14:28 +02:00
|
|
|
final bool hasPosts;
|
2021-12-24 14:18:09 +01:00
|
|
|
final void Function() onPressed;
|
|
|
|
final void Function()? onLongPressed;
|
2022-07-08 10:41:36 +02:00
|
|
|
final String heroTag;
|
2021-12-24 14:18:09 +01:00
|
|
|
|
|
|
|
const _StoryButton({
|
2022-04-08 07:33:00 +02:00
|
|
|
required this.profile,
|
2021-12-24 14:18:09 +01:00
|
|
|
required this.onPressed,
|
2022-07-08 10:41:36 +02:00
|
|
|
required this.heroTag,
|
2022-04-08 07:33:00 +02:00
|
|
|
this.showEditFab = false,
|
2022-07-07 12:14:28 +02:00
|
|
|
this.hasPosts = true,
|
2021-12-24 14:18:09 +01:00
|
|
|
this.unread = false,
|
|
|
|
this.onLongPressed,
|
|
|
|
Key? key,
|
|
|
|
}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return SizedBox(
|
2021-12-25 18:47:36 +01:00
|
|
|
width: 78,
|
2021-12-24 14:18:09 +01:00
|
|
|
child: InkWell(
|
2022-02-06 20:59:30 +01:00
|
|
|
borderRadius: BorderRadius.circular(7),
|
2021-12-24 14:18:09 +01:00
|
|
|
onTap: onPressed,
|
|
|
|
onLongPress: onLongPressed,
|
2022-07-07 12:14:28 +02:00
|
|
|
child: Opacity(
|
|
|
|
opacity: hasPosts ? 1 : 0.4,
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 4),
|
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
const SizedBox(height: 8),
|
|
|
|
Material(
|
|
|
|
borderRadius: BorderRadius.circular(Avatar.defaultSize),
|
|
|
|
child: Container(
|
|
|
|
padding: const EdgeInsets.all(3),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
gradient: unread
|
|
|
|
? const LinearGradient(
|
|
|
|
colors: [
|
|
|
|
Colors.red,
|
|
|
|
Colors.purple,
|
|
|
|
Colors.orange,
|
|
|
|
],
|
|
|
|
begin: Alignment.topLeft,
|
|
|
|
end: Alignment.bottomRight,
|
|
|
|
)
|
|
|
|
: null,
|
2022-07-08 17:58:31 +02:00
|
|
|
color: unread
|
|
|
|
? null
|
|
|
|
: Theme.of(context).colorScheme.surfaceVariant,
|
2022-07-07 12:14:28 +02:00
|
|
|
borderRadius: BorderRadius.circular(Avatar.defaultSize),
|
|
|
|
),
|
|
|
|
child: Stack(
|
|
|
|
children: [
|
|
|
|
Material(
|
|
|
|
color: Theme.of(context).colorScheme.surface,
|
|
|
|
borderRadius:
|
|
|
|
BorderRadius.circular(Avatar.defaultSize),
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.all(2.0),
|
|
|
|
child: CircleAvatar(
|
|
|
|
radius: 30,
|
|
|
|
backgroundColor:
|
|
|
|
Theme.of(context).colorScheme.surface,
|
|
|
|
foregroundColor:
|
|
|
|
Theme.of(context).textTheme.bodyText1?.color,
|
2022-07-08 10:41:36 +02:00
|
|
|
child: Hero(
|
|
|
|
tag: heroTag,
|
|
|
|
child: Avatar(
|
|
|
|
mxContent: profile.avatarUrl,
|
|
|
|
name: profile.displayName,
|
|
|
|
size: 100,
|
|
|
|
fontSize: 24,
|
|
|
|
),
|
2022-07-07 12:14:28 +02:00
|
|
|
),
|
2022-04-08 07:33:00 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2022-07-07 12:14:28 +02:00
|
|
|
if (showEditFab)
|
|
|
|
Positioned(
|
|
|
|
right: 0,
|
|
|
|
bottom: 0,
|
|
|
|
child: SizedBox(
|
|
|
|
width: 24,
|
|
|
|
height: 24,
|
|
|
|
child: FloatingActionButton.small(
|
|
|
|
heroTag: null,
|
|
|
|
onPressed: () =>
|
|
|
|
VRouter.of(context).to('/stories/create'),
|
|
|
|
child: const Icon(
|
|
|
|
Icons.add_outlined,
|
|
|
|
size: 16,
|
|
|
|
),
|
2022-04-08 07:33:00 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2022-07-07 12:14:28 +02:00
|
|
|
],
|
|
|
|
),
|
2021-12-25 18:47:36 +01:00
|
|
|
),
|
2021-12-24 14:18:09 +01:00
|
|
|
),
|
2022-07-07 12:14:28 +02:00
|
|
|
Center(
|
|
|
|
child: Text(
|
|
|
|
profile.displayName ?? '',
|
|
|
|
maxLines: 1,
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 12,
|
|
|
|
fontWeight: unread ? FontWeight.bold : null,
|
|
|
|
),
|
2022-05-29 11:37:01 +02:00
|
|
|
),
|
2021-12-24 14:18:09 +01:00
|
|
|
),
|
2022-07-07 12:14:28 +02:00
|
|
|
],
|
|
|
|
),
|
2021-12-24 14:18:09 +01:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2022-04-08 10:12:58 +02:00
|
|
|
|
|
|
|
extension on Room {
|
|
|
|
String? get creatorId => getState(EventTypes.RoomCreate)?.senderId;
|
|
|
|
}
|