mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-14 16:09:31 +01:00
fix: Start chat with yourself from status
This commit is contained in:
parent
08f24d7e28
commit
f3b3584f73
@ -39,17 +39,19 @@ class StatusListTile extends StatelessWidget {
|
||||
),
|
||||
subtitle: Text(status.dateTime.localizedTime(context),
|
||||
style: TextStyle(fontSize: 14)),
|
||||
trailing: PopupMenuButton(
|
||||
onSelected: (_) => AdaptivePageLayout.of(context).pushNamed(
|
||||
'/settings/ignore',
|
||||
arguments: status.senderId),
|
||||
itemBuilder: (_) => [
|
||||
PopupMenuItem(
|
||||
child: Text(L10n.of(context).ignore),
|
||||
value: 'ignore',
|
||||
),
|
||||
],
|
||||
),
|
||||
trailing: Matrix.of(context).client.userID == status.senderId
|
||||
? null
|
||||
: PopupMenuButton(
|
||||
onSelected: (_) => AdaptivePageLayout.of(context)
|
||||
.pushNamed('/settings/ignore',
|
||||
arguments: status.senderId),
|
||||
itemBuilder: (_) => [
|
||||
PopupMenuItem(
|
||||
child: Text(L10n.of(context).ignore),
|
||||
value: 'ignore',
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
isImage
|
||||
? CachedNetworkImage(
|
||||
@ -85,20 +87,24 @@ class StatusListTile extends StatelessWidget {
|
||||
children: [
|
||||
IconButton(
|
||||
icon: Icon(CupertinoIcons.chat_bubble),
|
||||
onPressed: () async {
|
||||
final result = await showFutureLoadingDialog(
|
||||
context: context,
|
||||
future: () => User(
|
||||
status.senderId,
|
||||
room:
|
||||
Room(id: '', client: Matrix.of(context).client),
|
||||
).startDirectChat(),
|
||||
);
|
||||
if (result.error == null) {
|
||||
await AdaptivePageLayout.of(context)
|
||||
.pushNamed('/rooms/${result.result}');
|
||||
}
|
||||
},
|
||||
onPressed:
|
||||
Matrix.of(context).client.userID == status.senderId
|
||||
? null
|
||||
: () async {
|
||||
final result = await showFutureLoadingDialog(
|
||||
context: context,
|
||||
future: () => User(
|
||||
status.senderId,
|
||||
room: Room(
|
||||
id: '',
|
||||
client: Matrix.of(context).client),
|
||||
).startDirectChat(),
|
||||
);
|
||||
if (result.error == null) {
|
||||
await AdaptivePageLayout.of(context)
|
||||
.pushNamed('/rooms/${result.result}');
|
||||
}
|
||||
},
|
||||
),
|
||||
IconButton(
|
||||
icon: Icon(Icons.ios_share),
|
||||
|
Loading…
Reference in New Issue
Block a user