2019-05-18 14:04:21 +00:00
|
|
|
import 'package:comunic/models/like_element.dart';
|
2019-05-16 12:52:22 +00:00
|
|
|
import 'package:meta/meta.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 {
|
2019-05-16 12:52:22 +00:00
|
|
|
final int id;
|
|
|
|
final int userID;
|
|
|
|
final int postID;
|
|
|
|
final int timeSent;
|
2019-05-18 16:48:12 +00:00
|
|
|
String content;
|
2019-05-16 12:52:22 +00:00
|
|
|
final String imageURL;
|
2019-05-18 13:54:10 +00:00
|
|
|
int likes;
|
|
|
|
bool userLike;
|
2019-05-16 12:52:22 +00:00
|
|
|
|
|
|
|
Comment({
|
|
|
|
@required this.id,
|
|
|
|
@required this.userID,
|
|
|
|
@required this.postID,
|
|
|
|
@required this.timeSent,
|
|
|
|
@required this.content,
|
|
|
|
@required this.imageURL,
|
|
|
|
@required this.likes,
|
|
|
|
@required this.userLike,
|
|
|
|
}) : assert(id != null),
|
|
|
|
assert(userID != null),
|
|
|
|
assert(postID != null),
|
|
|
|
assert(timeSent != null),
|
|
|
|
assert(content != null),
|
|
|
|
assert(likes != null),
|
|
|
|
assert(userLike != null);
|
|
|
|
|
|
|
|
bool get hasContent => content != null && content.length > 0;
|
|
|
|
|
|
|
|
bool get hasImage => imageURL != null;
|
2019-05-18 14:48:19 +00:00
|
|
|
|
|
|
|
bool get isOwner => userID == account.userID();
|
2019-05-16 12:52:22 +00:00
|
|
|
}
|