|
|
|
|
@ -1,9 +1,6 @@
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
|
|
import 'package:matrix/matrix.dart';
|
|
|
|
|
|
|
|
|
|
import 'package:fluffychat/l10n/l10n.dart';
|
|
|
|
|
import 'package:fluffychat/widgets/avatar.dart';
|
|
|
|
|
import 'package:fluffychat/widgets/future_loading_dialog.dart';
|
|
|
|
|
import 'package:fluffychat/widgets/layouts/max_width_body.dart';
|
|
|
|
|
import '../../widgets/matrix.dart';
|
|
|
|
|
@ -26,7 +23,19 @@ class SettingsIgnoreListView extends StatelessWidget {
|
|
|
|
|
),
|
|
|
|
|
body: MaxWidthBody(
|
|
|
|
|
withScrolling: false,
|
|
|
|
|
child: Column(
|
|
|
|
|
child: StreamBuilder(
|
|
|
|
|
stream: client.onSync.stream.where(
|
|
|
|
|
(syncUpdate) =>
|
|
|
|
|
syncUpdate.accountData?.any(
|
|
|
|
|
(accountData) => accountData.type == 'm.ignored_user_list',
|
|
|
|
|
) ??
|
|
|
|
|
false,
|
|
|
|
|
),
|
|
|
|
|
builder: (context, asyncSnapshot) {
|
|
|
|
|
if (client.prevBatch == null) {
|
|
|
|
|
return const Center(child: CircularProgressIndicator.adaptive());
|
|
|
|
|
}
|
|
|
|
|
return Column(
|
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
|
children: [
|
|
|
|
|
Padding(
|
|
|
|
|
@ -63,31 +72,10 @@ class SettingsIgnoreListView extends StatelessWidget {
|
|
|
|
|
color: theme.dividerColor,
|
|
|
|
|
),
|
|
|
|
|
Expanded(
|
|
|
|
|
child: StreamBuilder<Object>(
|
|
|
|
|
stream: client.onSync.stream.where(
|
|
|
|
|
(syncUpdate) =>
|
|
|
|
|
syncUpdate.accountData?.any(
|
|
|
|
|
(accountData) =>
|
|
|
|
|
accountData.type == 'm.ignored_user_list',
|
|
|
|
|
) ??
|
|
|
|
|
false,
|
|
|
|
|
),
|
|
|
|
|
builder: (context, snapshot) {
|
|
|
|
|
return ListView.builder(
|
|
|
|
|
child: ListView.builder(
|
|
|
|
|
itemCount: client.ignoredUsers.length,
|
|
|
|
|
itemBuilder: (c, i) => FutureBuilder<Profile>(
|
|
|
|
|
future:
|
|
|
|
|
client.getProfileFromUserId(client.ignoredUsers[i]),
|
|
|
|
|
builder: (c, s) => ListTile(
|
|
|
|
|
leading: Avatar(
|
|
|
|
|
mxContent: s.data?.avatarUrl ?? Uri.parse(''),
|
|
|
|
|
name: s.data?.displayName ?? client.ignoredUsers[i],
|
|
|
|
|
),
|
|
|
|
|
title: Text(
|
|
|
|
|
s.data?.displayName ?? client.ignoredUsers[i],
|
|
|
|
|
),
|
|
|
|
|
subtitle:
|
|
|
|
|
Text(s.data?.userId ?? client.ignoredUsers[i]),
|
|
|
|
|
itemBuilder: (c, i) => ListTile(
|
|
|
|
|
title: Text(client.ignoredUsers[i]),
|
|
|
|
|
trailing: IconButton(
|
|
|
|
|
tooltip: L10n.of(context).delete,
|
|
|
|
|
icon: const Icon(Icons.delete_outlined),
|
|
|
|
|
@ -99,11 +87,10 @@ class SettingsIgnoreListView extends StatelessWidget {
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
|