1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00
comunicmobile/lib/models/friend.dart

45 lines
1.4 KiB
Dart
Raw Normal View History

2019-05-04 17:35:03 +00:00
import 'package:comunic/helpers/database/database_contract.dart';
import 'package:comunic/models/cache_model.dart';
import 'package:comunic/utils/date_utils.dart';
/// Single user Friend information
///
/// @author Pierre HUBERT
2019-05-04 17:35:03 +00:00
class Friend extends CacheModel implements Comparable<Friend> {
bool accepted;
final int? lastActive;
final bool following;
final bool canPostTexts;
Friend({
required int id,
required this.accepted,
required int this.lastActive,
required this.following,
required this.canPostTexts,
2022-03-11 16:16:46 +00:00
}) : super(id: id);
/// Check out whether friend is connected or not
bool get isConnected => time() - 30 < lastActive!;
2019-05-04 17:35:03 +00:00
@override
int compareTo(Friend other) => other.lastActive!.compareTo(lastActive!);
2019-05-04 17:35:03 +00:00
@override
Map<String, dynamic> toMap() => {
FriendsListTableContract.C_ID: id.toString(),
FriendsListTableContract.C_ACCEPTED: accepted ? 1 : 0,
FriendsListTableContract.C_LAST_ACTIVE: lastActive,
FriendsListTableContract.C_FOLLOWING: following ? 1 : 0,
FriendsListTableContract.C_CAN_POST_TEXTS: canPostTexts ? 1 : 0
};
Friend.fromMap(Map<String, dynamic> map)
2022-03-11 16:16:46 +00:00
: accepted = map[FriendsListTableContract.C_ACCEPTED] == 1,
2019-05-04 17:35:03 +00:00
lastActive = map[FriendsListTableContract.C_LAST_ACTIVE],
following = map[FriendsListTableContract.C_FOLLOWING] == 1,
canPostTexts = map[FriendsListTableContract.C_CAN_POST_TEXTS] == 1,
super.fromMap(map);
}