1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/helpers/likes_helper.dart

30 lines
647 B
Dart
Raw Normal View History

2019-05-11 13:35:07 +00:00
import 'package:comunic/enums/likes_type.dart';
2020-04-18 13:24:57 +00:00
import 'package:comunic/helpers/websocket_helper.dart';
2019-05-11 13:35:07 +00:00
import 'package:meta/meta.dart';
/// Likes helper
///
/// @author Pierre HUBERT
const LikesAPIMap = {
LikesType.USER: "user",
LikesType.POST: "post",
LikesType.COMMENT: "comment",
LikesType.GROUP: "group",
};
class LikesHelper {
/// Update liking status of an element
2020-04-18 13:24:57 +00:00
Future<void> setLiking({
2019-05-11 13:35:07 +00:00
@required LikesType type,
@required bool like,
@required int id,
}) async {
2020-04-18 13:24:57 +00:00
return (await ws("likes/update", {
"type": LikesAPIMap[type],
"like": like.toString(),
"id": id.toString(),
}));
2019-05-11 13:35:07 +00:00
}
}