2020-04-15 17:17:29 +00:00
|
|
|
import 'package:comunic/enums/likes_type.dart';
|
2020-04-16 12:07:21 +00:00
|
|
|
import 'package:comunic/models/displayed_content.dart';
|
2019-05-18 14:04:21 +00:00
|
|
|
import 'package:comunic/models/like_element.dart';
|
2019-05-18 14:48:19 +00:00
|
|
|
import 'package:comunic/utils/account_utils.dart' as account;
|
2019-05-16 12:52:22 +00:00
|
|
|
|
|
|
|
/// Comments
|
|
|
|
///
|
|
|
|
/// Contains information about a single comment
|
|
|
|
///
|
|
|
|
/// @author Pierre HUBERT
|
|
|
|
|
2019-05-18 14:04:21 +00:00
|
|
|
class Comment implements LikeElement {
|
2022-03-10 18:39:57 +00:00
|
|
|
final int id;
|
|
|
|
final int userID;
|
|
|
|
final int postID;
|
|
|
|
final int timeSent;
|
|
|
|
DisplayedString content;
|
|
|
|
final String? imageURL;
|
|
|
|
int likes;
|
|
|
|
bool userLike;
|
2019-05-16 12:52:22 +00:00
|
|
|
|
|
|
|
Comment({
|
2022-03-10 18:39:57 +00:00
|
|
|
required this.id,
|
|
|
|
required this.userID,
|
|
|
|
required this.postID,
|
|
|
|
required this.timeSent,
|
|
|
|
required this.content,
|
|
|
|
required this.imageURL,
|
|
|
|
required this.likes,
|
|
|
|
required this.userLike,
|
2022-03-10 19:36:55 +00:00
|
|
|
});
|
2019-05-16 12:52:22 +00:00
|
|
|
|
2022-03-10 19:36:55 +00:00
|
|
|
bool get hasContent => !content.isNull && content.length > 0;
|
2019-05-16 12:52:22 +00:00
|
|
|
|
|
|
|
bool get hasImage => imageURL != null;
|
2019-05-18 14:48:19 +00:00
|
|
|
|
|
|
|
bool get isOwner => userID == account.userID();
|
2020-04-15 17:17:29 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
LikesType get likeType => LikesType.COMMENT;
|
2019-05-16 12:52:22 +00:00
|
|
|
}
|