diff --git a/html/poketube.ejs b/html/poketube.ejs
index fb12eba7..ae1f7bf0 100644
--- a/html/poketube.ejs
+++ b/html/poketube.ejs
@@ -1383,8 +1383,9 @@ WIP!
const total = likes + dislikes;
const likePercentage = total > 0 ? ((likes / total) * 100).toFixed(2) + '%' : '0%';
+ const dislikePercentage = total > 0 ? ((dislikes / total) * 100).toFixed(2) + '%' : '0%';
- const getPercentageColor = (percentage) => {
+ const getLikePercentageColor = (percentage) => {
const num = parseFloat(percentage);
if (num >= 80) {
return 'green';
@@ -1395,10 +1396,25 @@ WIP!
}
};
- const likeColor = getPercentageColor(likePercentage);
+ const getDislikePercentageColor = (percentage) => {
+ const num = parseFloat(percentage);
+ if (num >= 50) {
+ return 'red';
+ } else if (num >= 20) {
+ return 'orange';
+ } else {
+ return 'green';
+ }
+ };
+
+ const likeColor = getLikePercentageColor(likePercentage);
+ const dislikeColor = getDislikePercentageColor(dislikePercentage);
+
%>
<%= likePercentage %> of the users lieked the video!!
+ <%= dislikePercentage %> of the users dislieked the video!!
+
RYD date created : <%=engagement.dateCreated.toLocaleString()%>
See in json