107 lines
3.8 KiB
Dart
107 lines
3.8 KiB
Dart
import 'package:famedlysdk/famedlysdk.dart';
|
|
import 'package:fluffychat/l10n/l10n.dart';
|
|
import 'package:fluffychat/utils/app_route.dart';
|
|
import 'package:fluffychat/views/chat.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
import '../avatar.dart';
|
|
import '../matrix.dart';
|
|
import 'package:fluffychat/utils/presence_extension.dart';
|
|
|
|
class PresenceListItem extends StatelessWidget {
|
|
final Presence presence;
|
|
|
|
const PresenceListItem(this.presence);
|
|
|
|
static final Map<String, Profile> _presences = {};
|
|
|
|
Future<Profile> _requestProfile(BuildContext context) async {
|
|
_presences[presence.sender] ??=
|
|
await Matrix.of(context).client.getProfileFromUserId(presence.sender);
|
|
return _presences[presence.sender];
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return FutureBuilder<Profile>(
|
|
future: _requestProfile(context),
|
|
builder: (context, snapshot) {
|
|
if (!snapshot.hasData) return Container();
|
|
Uri avatarUrl;
|
|
var displayname = presence.sender.localpart;
|
|
if (snapshot.hasData) {
|
|
avatarUrl = snapshot.data.avatarUrl;
|
|
displayname = snapshot.data.displayname;
|
|
}
|
|
return InkWell(
|
|
onTap: () => showDialog(
|
|
context: context,
|
|
builder: (c) => AlertDialog(
|
|
title: ListTile(
|
|
contentPadding: EdgeInsets.zero,
|
|
leading: Avatar(avatarUrl, displayname),
|
|
title: Text(displayname),
|
|
subtitle: Text(presence.sender),
|
|
),
|
|
content: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: <Widget>[
|
|
Text(presence.getLocalizedStatusMessage(context)),
|
|
if (presence.presence != null)
|
|
Text(
|
|
presence.presence.toString().split('.').last,
|
|
style: TextStyle(
|
|
color: presence.currentlyActive == true
|
|
? Colors.green
|
|
: Theme.of(context).primaryColor,
|
|
),
|
|
)
|
|
],
|
|
),
|
|
actions: <Widget>[
|
|
if (presence.sender != Matrix.of(context).client.userID)
|
|
FlatButton(
|
|
child: Text(L10n.of(context).sendAMessage),
|
|
onPressed: () async {
|
|
final roomId = await User(
|
|
presence.sender,
|
|
room: Room(id: '', client: Matrix.of(context).client),
|
|
).startDirectChat();
|
|
await Navigator.of(context).pushAndRemoveUntil(
|
|
AppRoute.defaultRoute(
|
|
context,
|
|
ChatView(roomId),
|
|
),
|
|
(Route r) => r.isFirst);
|
|
},
|
|
),
|
|
FlatButton(
|
|
child: Text(L10n.of(context).close),
|
|
onPressed: () => Navigator.of(context).pop(),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
child: Container(
|
|
width: 80,
|
|
child: Column(
|
|
children: <Widget>[
|
|
SizedBox(height: 9),
|
|
Avatar(avatarUrl, displayname),
|
|
Padding(
|
|
padding: const EdgeInsets.all(6.0),
|
|
child: Text(
|
|
displayname,
|
|
overflow: TextOverflow.ellipsis,
|
|
maxLines: 1,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
});
|
|
}
|
|
}
|