✨ Able to block anyone
💄 Optimize user profile page
This commit is contained in:
parent
3ac6822ab6
commit
2673c11046
@ -98,6 +98,8 @@
|
|||||||
"accountFriendBlocked": "Friend blocklist",
|
"accountFriendBlocked": "Friend blocklist",
|
||||||
"accountFriendListHint": "Swipe left to decline, right to approve",
|
"accountFriendListHint": "Swipe left to decline, right to approve",
|
||||||
"accountFriendRequestSent": "Friend request sent, waiting for processing...",
|
"accountFriendRequestSent": "Friend request sent, waiting for processing...",
|
||||||
|
"accountBlocked": "Account has been blocked",
|
||||||
|
"accountUnblocked": "Account has been unblocked",
|
||||||
"accountSuspended": "Account was suspended",
|
"accountSuspended": "Account was suspended",
|
||||||
"accountSuspendedAt": "Account was suspended since @date",
|
"accountSuspendedAt": "Account was suspended since @date",
|
||||||
"aspectRatio": "Aspect Ratio",
|
"aspectRatio": "Aspect Ratio",
|
||||||
@ -457,5 +459,9 @@
|
|||||||
"serviceStatus": "Status of Service",
|
"serviceStatus": "Status of Service",
|
||||||
"firstBootTime": "First boot at @time",
|
"firstBootTime": "First boot at @time",
|
||||||
"rateTheApp": "Rate the app",
|
"rateTheApp": "Rate the app",
|
||||||
"rateTheAppDesc": "Rate Solar Network on the App Store to let us serve you better!"
|
"rateTheAppDesc": "Rate Solar Network on the App Store to let us serve you better!",
|
||||||
|
"friendAdd": "Add as friend",
|
||||||
|
"blockUser": "Block user",
|
||||||
|
"unblockUser": "Unblock user",
|
||||||
|
"learnMoreAboutPerson": "Learn more about that person"
|
||||||
}
|
}
|
||||||
|
@ -98,6 +98,8 @@
|
|||||||
"accountFriendBlocked": "好友黑名单",
|
"accountFriendBlocked": "好友黑名单",
|
||||||
"accountFriendListHint": "左滑来拒绝,右滑来接受",
|
"accountFriendListHint": "左滑来拒绝,右滑来接受",
|
||||||
"accountFriendRequestSent": "好友请求已发送,等待处理对方中……",
|
"accountFriendRequestSent": "好友请求已发送,等待处理对方中……",
|
||||||
|
"accountBlocked": "已屏蔽账号",
|
||||||
|
"accountUnblocked": "已解除屏蔽账号",
|
||||||
"accountSuspended": "帐号被停用",
|
"accountSuspended": "帐号被停用",
|
||||||
"accountSuspendedAt": "该帐号自 @date 起被停用",
|
"accountSuspendedAt": "该帐号自 @date 起被停用",
|
||||||
"aspectRatio": "纵横比",
|
"aspectRatio": "纵横比",
|
||||||
@ -453,5 +455,9 @@
|
|||||||
"serviceStatus": "服务状态",
|
"serviceStatus": "服务状态",
|
||||||
"firstBootTime": "首次启动于 @time",
|
"firstBootTime": "首次启动于 @time",
|
||||||
"rateTheApp": "给应用评分",
|
"rateTheApp": "给应用评分",
|
||||||
"rateTheAppDesc": "在 App Store 上给 Solar Network 评分,让我们更好地为您服务吧!"
|
"rateTheAppDesc": "在 App Store 上给 Solar Network 评分,让我们更好地为您服务吧!",
|
||||||
|
"friendAdd": "添加好友",
|
||||||
|
"blockUser": "屏蔽用户",
|
||||||
|
"unblockUser": "解除屏蔽用户",
|
||||||
|
"learMoreAboutPerson": "了解关于 TA 的更多"
|
||||||
}
|
}
|
||||||
|
@ -34,7 +34,7 @@ class Attachment {
|
|||||||
String alt;
|
String alt;
|
||||||
String mimetype;
|
String mimetype;
|
||||||
String hash;
|
String hash;
|
||||||
int destination;
|
String destination;
|
||||||
bool isAnalyzed;
|
bool isAnalyzed;
|
||||||
bool isUploaded;
|
bool isUploaded;
|
||||||
Map<String, dynamic>? metadata;
|
Map<String, dynamic>? metadata;
|
||||||
|
@ -36,7 +36,7 @@ Attachment _$AttachmentFromJson(Map<String, dynamic> json) => Attachment(
|
|||||||
alt: json['alt'] as String,
|
alt: json['alt'] as String,
|
||||||
mimetype: json['mimetype'] as String,
|
mimetype: json['mimetype'] as String,
|
||||||
hash: json['hash'] as String,
|
hash: json['hash'] as String,
|
||||||
destination: (json['destination'] as num).toInt(),
|
destination: json['destination'] as String,
|
||||||
isAnalyzed: json['is_analyzed'] as bool,
|
isAnalyzed: json['is_analyzed'] as bool,
|
||||||
isUploaded: json['is_uploaded'] as bool,
|
isUploaded: json['is_uploaded'] as bool,
|
||||||
metadata: json['metadata'] as Map<String, dynamic>?,
|
metadata: json['metadata'] as Map<String, dynamic>?,
|
||||||
|
@ -26,6 +26,19 @@ class RelationshipProvider extends GetxController {
|
|||||||
return _friends.any((x) => x.relatedId == account.id);
|
return _friends.any((x) => x.relatedId == account.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<Relationship?> getRelationship(int relatedId) async {
|
||||||
|
final AuthProvider auth = Get.find();
|
||||||
|
final client = await auth.configureClient('auth');
|
||||||
|
final resp = await client.get('/users/me/relations/$relatedId');
|
||||||
|
if (resp.statusCode == 404) {
|
||||||
|
return null;
|
||||||
|
} else if (resp.statusCode != 200) {
|
||||||
|
throw RequestException(resp);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Relationship.fromJson(resp.body);
|
||||||
|
}
|
||||||
|
|
||||||
Future<Response> listRelation() async {
|
Future<Response> listRelation() async {
|
||||||
final AuthProvider auth = Get.find();
|
final AuthProvider auth = Get.find();
|
||||||
final client = await auth.configureClient('auth');
|
final client = await auth.configureClient('auth');
|
||||||
@ -38,7 +51,19 @@ class RelationshipProvider extends GetxController {
|
|||||||
return client.get('/users/me/relations?status=$status');
|
return client.get('/users/me/relations?status=$status');
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<Response> makeFriend(String username) async {
|
Future<Relationship?> blockUser(String username) async {
|
||||||
|
final AuthProvider auth = Get.find();
|
||||||
|
final client = await auth.configureClient('auth');
|
||||||
|
final resp =
|
||||||
|
await client.post('/users/me/relations/block?related=$username', {});
|
||||||
|
if (resp.statusCode != 200) {
|
||||||
|
throw RequestException(resp);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Relationship.fromJson(resp.body);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<Relationship?> makeFriend(String username) async {
|
||||||
final AuthProvider auth = Get.find();
|
final AuthProvider auth = Get.find();
|
||||||
final client = await auth.configureClient('auth');
|
final client = await auth.configureClient('auth');
|
||||||
final resp = await client.post('/users/me/relations?related=$username', {});
|
final resp = await client.post('/users/me/relations?related=$username', {});
|
||||||
@ -46,7 +71,7 @@ class RelationshipProvider extends GetxController {
|
|||||||
throw RequestException(resp);
|
throw RequestException(resp);
|
||||||
}
|
}
|
||||||
|
|
||||||
return resp;
|
return Relationship.fromJson(resp.body);
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<Response> handleRelation(
|
Future<Response> handleRelation(
|
||||||
@ -64,17 +89,17 @@ class RelationshipProvider extends GetxController {
|
|||||||
return resp;
|
return resp;
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<Response> editRelation(Relationship relationship, int status) async {
|
Future<Relationship?> editRelation(int relatedId, int status) async {
|
||||||
final AuthProvider auth = Get.find();
|
final AuthProvider auth = Get.find();
|
||||||
final client = await auth.configureClient('auth');
|
final client = await auth.configureClient('auth');
|
||||||
final resp = await client.patch(
|
final resp = await client.put(
|
||||||
'/users/me/relations/${relationship.relatedId}',
|
'/users/me/relations/$relatedId',
|
||||||
{'status': status},
|
{'status': status},
|
||||||
);
|
);
|
||||||
if (resp.statusCode != 200) {
|
if (resp.statusCode != 200) {
|
||||||
throw RequestException(resp);
|
throw RequestException(resp);
|
||||||
}
|
}
|
||||||
|
|
||||||
return resp;
|
return Relationship.fromJson(resp.body);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -13,6 +13,7 @@ import 'package:solian/models/attachment.dart';
|
|||||||
import 'package:solian/models/daily_sign.dart';
|
import 'package:solian/models/daily_sign.dart';
|
||||||
import 'package:solian/models/pagination.dart';
|
import 'package:solian/models/pagination.dart';
|
||||||
import 'package:solian/models/post.dart';
|
import 'package:solian/models/post.dart';
|
||||||
|
import 'package:solian/models/relations.dart';
|
||||||
import 'package:solian/models/subscription.dart';
|
import 'package:solian/models/subscription.dart';
|
||||||
import 'package:solian/providers/account_status.dart';
|
import 'package:solian/providers/account_status.dart';
|
||||||
import 'package:solian/providers/relation.dart';
|
import 'package:solian/providers/relation.dart';
|
||||||
@ -26,6 +27,7 @@ import 'package:solian/widgets/attachments/attachment_list.dart';
|
|||||||
import 'package:solian/widgets/daily_sign/history_chart.dart';
|
import 'package:solian/widgets/daily_sign/history_chart.dart';
|
||||||
import 'package:solian/widgets/posts/post_list.dart';
|
import 'package:solian/widgets/posts/post_list.dart';
|
||||||
import 'package:solian/widgets/posts/post_warped_list.dart';
|
import 'package:solian/widgets/posts/post_warped_list.dart';
|
||||||
|
import 'package:solian/widgets/reports/abuse_report.dart';
|
||||||
import 'package:solian/widgets/sized_container.dart';
|
import 'package:solian/widgets/sized_container.dart';
|
||||||
|
|
||||||
class AccountProfilePage extends StatefulWidget {
|
class AccountProfilePage extends StatefulWidget {
|
||||||
@ -50,6 +52,7 @@ class _AccountProfilePageState extends State<AccountProfilePage> {
|
|||||||
|
|
||||||
Account? _userinfo;
|
Account? _userinfo;
|
||||||
Subscription? _subscription;
|
Subscription? _subscription;
|
||||||
|
Relationship? _relationship;
|
||||||
List<Post> _pinnedPosts = List.empty();
|
List<Post> _pinnedPosts = List.empty();
|
||||||
List<DailySignRecord> _dailySignRecords = List.empty();
|
List<DailySignRecord> _dailySignRecords = List.empty();
|
||||||
int _totalUpvote = 0, _totalDownvote = 0;
|
int _totalUpvote = 0, _totalDownvote = 0;
|
||||||
@ -61,6 +64,15 @@ class _AccountProfilePageState extends State<AccountProfilePage> {
|
|||||||
setState(() => _isSubscribing = false);
|
setState(() => _isSubscribing = false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<void> _getRelationship() async {
|
||||||
|
setState(() => _isBusy = true);
|
||||||
|
|
||||||
|
final relations = Get.find<RelationshipProvider>();
|
||||||
|
_relationship = await relations.getRelationship(_userinfo!.id);
|
||||||
|
|
||||||
|
setState(() => _isBusy = false);
|
||||||
|
}
|
||||||
|
|
||||||
Future<void> _getUserinfo() async {
|
Future<void> _getUserinfo() async {
|
||||||
setState(() => _isBusy = true);
|
setState(() => _isBusy = true);
|
||||||
|
|
||||||
@ -151,6 +163,7 @@ class _AccountProfilePageState extends State<AccountProfilePage> {
|
|||||||
});
|
});
|
||||||
|
|
||||||
_getUserinfo().then((_) {
|
_getUserinfo().then((_) {
|
||||||
|
_getRelationship();
|
||||||
_getSubscription();
|
_getSubscription();
|
||||||
_getPinnedPosts();
|
_getPinnedPosts();
|
||||||
_getDailySignRecords();
|
_getDailySignRecords();
|
||||||
@ -221,7 +234,7 @@ class _AccountProfilePageState extends State<AccountProfilePage> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (_userinfo != null && _subscription == null)
|
if (_userinfo != null && _subscription == null)
|
||||||
OutlinedButton(
|
IconButton(
|
||||||
style: const ButtonStyle(
|
style: const ButtonStyle(
|
||||||
visualDensity:
|
visualDensity:
|
||||||
VisualDensity(horizontal: -4, vertical: -2),
|
VisualDensity(horizontal: -4, vertical: -2),
|
||||||
@ -235,10 +248,11 @@ class _AccountProfilePageState extends State<AccountProfilePage> {
|
|||||||
.subscribeToUser(_userinfo!.id);
|
.subscribeToUser(_userinfo!.id);
|
||||||
setState(() => _isSubscribing = false);
|
setState(() => _isSubscribing = false);
|
||||||
},
|
},
|
||||||
child: Text('subscribe'.tr),
|
icon: const Icon(Icons.add_circle_outline),
|
||||||
|
tooltip: 'subscribe'.tr,
|
||||||
)
|
)
|
||||||
else if (_userinfo != null)
|
else if (_userinfo != null)
|
||||||
OutlinedButton(
|
IconButton(
|
||||||
style: const ButtonStyle(
|
style: const ButtonStyle(
|
||||||
visualDensity:
|
visualDensity:
|
||||||
VisualDensity(horizontal: -4, vertical: -2),
|
VisualDensity(horizontal: -4, vertical: -2),
|
||||||
@ -252,10 +266,10 @@ class _AccountProfilePageState extends State<AccountProfilePage> {
|
|||||||
_subscription = null;
|
_subscription = null;
|
||||||
setState(() => _isSubscribing = false);
|
setState(() => _isSubscribing = false);
|
||||||
},
|
},
|
||||||
child: Text('unsubscribe'.tr),
|
icon: const Icon(Icons.remove_circle_outline),
|
||||||
|
tooltip: 'unsubscribe'.tr,
|
||||||
),
|
),
|
||||||
if (_userinfo != null &&
|
if (_userinfo != null && _relationship == null)
|
||||||
!_relationshipProvider.hasFriend(_userinfo!))
|
|
||||||
IconButton(
|
IconButton(
|
||||||
icon: const Icon(Icons.person_add),
|
icon: const Icon(Icons.person_add),
|
||||||
onPressed: _isMakingFriend
|
onPressed: _isMakingFriend
|
||||||
@ -263,7 +277,7 @@ class _AccountProfilePageState extends State<AccountProfilePage> {
|
|||||||
: () async {
|
: () async {
|
||||||
setState(() => _isMakingFriend = true);
|
setState(() => _isMakingFriend = true);
|
||||||
try {
|
try {
|
||||||
await _relationshipProvider
|
_relationship = await _relationshipProvider
|
||||||
.makeFriend(widget.name);
|
.makeFriend(widget.name);
|
||||||
context.showSnackbar(
|
context.showSnackbar(
|
||||||
'accountFriendRequestSent'.tr,
|
'accountFriendRequestSent'.tr,
|
||||||
@ -274,6 +288,7 @@ class _AccountProfilePageState extends State<AccountProfilePage> {
|
|||||||
setState(() => _isMakingFriend = false);
|
setState(() => _isMakingFriend = false);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
tooltip: 'friendAdd'.tr,
|
||||||
)
|
)
|
||||||
else
|
else
|
||||||
const IconButton(
|
const IconButton(
|
||||||
@ -300,6 +315,7 @@ class _AccountProfilePageState extends State<AccountProfilePage> {
|
|||||||
physics: const NeverScrollableScrollPhysics(),
|
physics: const NeverScrollableScrollPhysics(),
|
||||||
children: [
|
children: [
|
||||||
ListView(
|
ListView(
|
||||||
|
padding: EdgeInsets.zero,
|
||||||
children: [
|
children: [
|
||||||
const Gap(16),
|
const Gap(16),
|
||||||
CenteredContainer(
|
CenteredContainer(
|
||||||
@ -421,9 +437,117 @@ class _AccountProfilePageState extends State<AccountProfilePage> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
).marginOnly(
|
).marginOnly(
|
||||||
right: 24, left: 12, bottom: 8, top: 24),
|
right: 24,
|
||||||
|
left: 12,
|
||||||
|
bottom: 8,
|
||||||
|
top: 24,
|
||||||
|
),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
|
appendWidgets: [
|
||||||
|
Card(
|
||||||
|
child: Container(
|
||||||
|
padding: const EdgeInsets.symmetric(
|
||||||
|
vertical: 4,
|
||||||
|
horizontal: 8,
|
||||||
|
),
|
||||||
|
width: double.maxFinite,
|
||||||
|
child: Wrap(
|
||||||
|
alignment: WrapAlignment.spaceAround,
|
||||||
|
children: [
|
||||||
|
TextButton.icon(
|
||||||
|
style: const ButtonStyle(
|
||||||
|
visualDensity: VisualDensity(
|
||||||
|
horizontal: -4,
|
||||||
|
vertical: -2,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
onPressed: () {
|
||||||
|
showDialog(
|
||||||
|
context: context,
|
||||||
|
builder: (context) => AbuseReportDialog(
|
||||||
|
resourceId: 'user:${_userinfo!.id}',
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
icon: const Icon(
|
||||||
|
Icons.flag,
|
||||||
|
size: 16,
|
||||||
|
),
|
||||||
|
label: Text('reportAbuse'.tr),
|
||||||
|
),
|
||||||
|
if (_relationship?.status != 2)
|
||||||
|
TextButton.icon(
|
||||||
|
style: const ButtonStyle(
|
||||||
|
visualDensity: VisualDensity(
|
||||||
|
horizontal: -4,
|
||||||
|
vertical: -2,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
onPressed: _isMakingFriend
|
||||||
|
? null
|
||||||
|
: () async {
|
||||||
|
setState(
|
||||||
|
() => _isMakingFriend = true);
|
||||||
|
try {
|
||||||
|
_relationship =
|
||||||
|
await _relationshipProvider
|
||||||
|
.blockUser(widget.name);
|
||||||
|
context.showSnackbar(
|
||||||
|
'accountBlocked'.tr,
|
||||||
|
);
|
||||||
|
} catch (e) {
|
||||||
|
context.showErrorDialog(e);
|
||||||
|
} finally {
|
||||||
|
setState(() =>
|
||||||
|
_isMakingFriend = false);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
icon: const Icon(
|
||||||
|
Icons.block,
|
||||||
|
size: 16,
|
||||||
|
),
|
||||||
|
label: Text('blockUser'.tr),
|
||||||
|
)
|
||||||
|
else
|
||||||
|
TextButton.icon(
|
||||||
|
style: const ButtonStyle(
|
||||||
|
visualDensity: VisualDensity(
|
||||||
|
horizontal: -4,
|
||||||
|
vertical: -2,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
onPressed: _isMakingFriend
|
||||||
|
? null
|
||||||
|
: () async {
|
||||||
|
setState(
|
||||||
|
() => _isMakingFriend = true);
|
||||||
|
try {
|
||||||
|
_relationship =
|
||||||
|
await _relationshipProvider
|
||||||
|
.editRelation(
|
||||||
|
_userinfo!.id, 1);
|
||||||
|
context.showSnackbar(
|
||||||
|
'accountUnblocked'.tr,
|
||||||
|
);
|
||||||
|
} catch (e) {
|
||||||
|
context.showErrorDialog(e);
|
||||||
|
} finally {
|
||||||
|
setState(() =>
|
||||||
|
_isMakingFriend = false);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
icon: const Icon(
|
||||||
|
Icons.add_circle_outline,
|
||||||
|
size: 16,
|
||||||
|
),
|
||||||
|
label: Text('unblockUser'.tr),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
@ -23,6 +23,7 @@ class AccountHeadingWidget extends StatelessWidget {
|
|||||||
final AccountProfile? profile;
|
final AccountProfile? profile;
|
||||||
final List<AccountBadge>? badges;
|
final List<AccountBadge>? badges;
|
||||||
final List<Widget>? extraWidgets;
|
final List<Widget>? extraWidgets;
|
||||||
|
final List<Widget>? appendWidgets;
|
||||||
|
|
||||||
final Future<Response>? status;
|
final Future<Response>? status;
|
||||||
final Function? onEditStatus;
|
final Function? onEditStatus;
|
||||||
@ -39,6 +40,7 @@ class AccountHeadingWidget extends StatelessWidget {
|
|||||||
this.profile,
|
this.profile,
|
||||||
this.status,
|
this.status,
|
||||||
this.extraWidgets,
|
this.extraWidgets,
|
||||||
|
this.appendWidgets,
|
||||||
this.onEditStatus,
|
this.onEditStatus,
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -257,6 +259,7 @@ class AccountHeadingWidget extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
).paddingSymmetric(horizontal: 16),
|
).paddingSymmetric(horizontal: 16),
|
||||||
|
...?appendWidgets?.map((x) => x.paddingSymmetric(horizontal: 16)),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
@ -106,10 +106,14 @@ class _AccountProfilePopupState extends State<AccountProfilePopup> {
|
|||||||
extraWidgets: [
|
extraWidgets: [
|
||||||
Card(
|
Card(
|
||||||
child: ListTile(
|
child: ListTile(
|
||||||
|
leading: const Icon(
|
||||||
|
Icons.contact_page_outlined,
|
||||||
|
),
|
||||||
shape: const RoundedRectangleBorder(
|
shape: const RoundedRectangleBorder(
|
||||||
borderRadius: BorderRadius.all(Radius.circular(8)),
|
borderRadius: BorderRadius.all(Radius.circular(8)),
|
||||||
),
|
),
|
||||||
title: Text('visitProfilePage'.tr),
|
title: Text('visitProfilePage'.tr),
|
||||||
|
subtitle: Text('learMoreAboutPerson'.tr),
|
||||||
visualDensity:
|
visualDensity:
|
||||||
const VisualDensity(horizontal: -4, vertical: -2),
|
const VisualDensity(horizontal: -4, vertical: -2),
|
||||||
trailing: const Icon(Icons.chevron_right),
|
trailing: const Icon(Icons.chevron_right),
|
||||||
|
@ -28,13 +28,9 @@ class SilverRelativeList extends StatelessWidget {
|
|||||||
showModalBottomSheet(
|
showModalBottomSheet(
|
||||||
useRootNavigator: true,
|
useRootNavigator: true,
|
||||||
isScrollControlled: true,
|
isScrollControlled: true,
|
||||||
backgroundColor: Theme
|
backgroundColor: Theme.of(context).colorScheme.surface,
|
||||||
.of(context)
|
|
||||||
.colorScheme
|
|
||||||
.surface,
|
|
||||||
context: context,
|
context: context,
|
||||||
builder: (context) =>
|
builder: (context) => AccountProfilePopup(
|
||||||
AccountProfilePopup(
|
|
||||||
name: element.related.name,
|
name: element.related.name,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
@ -43,27 +39,35 @@ class SilverRelativeList extends StatelessWidget {
|
|||||||
trailing: Row(
|
trailing: Row(
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
children: [
|
children: [
|
||||||
if(element.status != 1 && element.status != 3)
|
if (element.status != 1 && element.status != 3)
|
||||||
IconButton(
|
IconButton(
|
||||||
icon: const Icon(Icons.check),
|
icon: const Icon(Icons.check),
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
final RelationshipProvider provider = Get.find();
|
final RelationshipProvider provider = Get.find();
|
||||||
if (element.status == 0) {
|
if (element.status == 0) {
|
||||||
provider.handleRelation(element, true).then((_) => onUpdate());
|
provider
|
||||||
|
.handleRelation(element, true)
|
||||||
|
.then((_) => onUpdate());
|
||||||
} else {
|
} else {
|
||||||
provider.editRelation(element, 1).then((_) => onUpdate());
|
provider
|
||||||
|
.editRelation(element.relatedId, 1)
|
||||||
|
.then((_) => onUpdate());
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
if(element.status != 2 && element.status != 3)
|
if (element.status != 2 && element.status != 3)
|
||||||
IconButton(
|
IconButton(
|
||||||
icon: const Icon(Icons.close),
|
icon: const Icon(Icons.close),
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
final RelationshipProvider provider = Get.find();
|
final RelationshipProvider provider = Get.find();
|
||||||
if (element.status == 0) {
|
if (element.status == 0) {
|
||||||
provider.handleRelation(element, false).then((_) => onUpdate());
|
provider
|
||||||
|
.handleRelation(element, false)
|
||||||
|
.then((_) => onUpdate());
|
||||||
} else {
|
} else {
|
||||||
provider.editRelation(element, 2).then((_) => onUpdate());
|
provider
|
||||||
|
.editRelation(element.relatedId, 2)
|
||||||
|
.then((_) => onUpdate());
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@ -12,8 +12,6 @@
|
|||||||
<true/>
|
<true/>
|
||||||
<key>com.apple.security.device.audio-input</key>
|
<key>com.apple.security.device.audio-input</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>com.apple.security.device.bluetooth</key>
|
|
||||||
<true/>
|
|
||||||
<key>com.apple.security.device.camera</key>
|
<key>com.apple.security.device.camera</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>com.apple.security.files.user-selected.read-only</key>
|
<key>com.apple.security.files.user-selected.read-only</key>
|
||||||
|
@ -10,8 +10,6 @@
|
|||||||
<true/>
|
<true/>
|
||||||
<key>com.apple.security.device.audio-input</key>
|
<key>com.apple.security.device.audio-input</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>com.apple.security.device.bluetooth</key>
|
|
||||||
<true/>
|
|
||||||
<key>com.apple.security.device.camera</key>
|
<key>com.apple.security.device.camera</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>com.apple.security.files.user-selected.read-only</key>
|
<key>com.apple.security.files.user-selected.read-only</key>
|
||||||
|
Loading…
Reference in New Issue
Block a user