diff --git a/webapp_post.py b/webapp_post.py
index bc36ad7b..3260ff68 100644
--- a/webapp_post.py
+++ b/webapp_post.py
@@ -391,6 +391,72 @@ def getAnnounceIconHtml(nickname: str, domainFull: str,
return announceStr
+def getLikeIconHtml(nickname: str, domainFull: str,
+ isModerationPost: bool,
+ showLikeButton: bool,
+ postJsonObject: {},
+ enableTimingLog: bool,
+ postStartTime,
+ translate: {}, pageNumberParam: str,
+ timelinePostBookmark: str,
+ boxName: str, iconsPath: str) -> str:
+ """Returns html for like icon/button
+ """
+ likeStr = ''
+ if not isModerationPost and showLikeButton:
+ likeIcon = 'like_inactive.png'
+ likeLink = 'like'
+ likeTitle = translate['Like this post']
+ likeCount = noOfLikes(postJsonObject)
+
+ # benchmark 12.1
+ if enableTimingLog:
+ timeDiff = int((time.time() - postStartTime) * 1000)
+ if timeDiff > 100:
+ print('TIMING INDIV ' + boxName + ' 12.1 = ' + str(timeDiff))
+
+ likeCountStr = ''
+ if likeCount > 0:
+ if likeCount <= 10:
+ likeCountStr = ' (' + str(likeCount) + ')'
+ else:
+ likeCountStr = ' (10+)'
+ if likedByPerson(postJsonObject, nickname, domainFull):
+ if likeCount == 1:
+ # liked by the reader only
+ likeCountStr = ''
+ likeIcon = 'like.png'
+ likeLink = 'unlike'
+ likeTitle = translate['Undo the like']
+
+ # benchmark 12.2
+ if enableTimingLog:
+ timeDiff = int((time.time() - postStartTime) * 1000)
+ if timeDiff > 100:
+ print('TIMING INDIV ' + boxName + ' 12.2 = ' + str(timeDiff))
+
+ likeStr = ''
+ if likeCountStr:
+ # show the number of likes next to icon
+ likeStr += '\n'
+ likeStr += \
+ ' \n'
+ likeStr += \
+ ' ' + \
+ '\n'
+ return likeStr
+
+
def individualPostAsHtml(allowDownloads: bool,
recentPostsCache: {}, maxRecentPosts: int,
iconsPath: str, translate: {},
@@ -686,58 +752,15 @@ def individualPostAsHtml(allowDownloads: bool,
if os.path.isfile(hideLikeButtonFile):
showLikeButton = False
- likeStr = ''
- if not isModerationPost and showLikeButton:
- likeIcon = 'like_inactive.png'
- likeLink = 'like'
- likeTitle = translate['Like this post']
- likeCount = noOfLikes(postJsonObject)
-
- # benchmark 12.1
- if enableTimingLog:
- timeDiff = int((time.time() - postStartTime) * 1000)
- if timeDiff > 100:
- print('TIMING INDIV ' + boxName + ' 12.1 = ' + str(timeDiff))
-
- likeCountStr = ''
- if likeCount > 0:
- if likeCount <= 10:
- likeCountStr = ' (' + str(likeCount) + ')'
- else:
- likeCountStr = ' (10+)'
- if likedByPerson(postJsonObject, nickname, domainFull):
- if likeCount == 1:
- # liked by the reader only
- likeCountStr = ''
- likeIcon = 'like.png'
- likeLink = 'unlike'
- likeTitle = translate['Undo the like']
-
- # benchmark 12.2
- if enableTimingLog:
- timeDiff = int((time.time() - postStartTime) * 1000)
- if timeDiff > 100:
- print('TIMING INDIV ' + boxName + ' 12.2 = ' + str(timeDiff))
-
- likeStr = ''
- if likeCountStr:
- # show the number of likes next to icon
- likeStr += '\n'
- likeStr += \
- ' \n'
- likeStr += \
- ' ' + \
- '\n'
+ likeStr = getLikeIconHtml(nickname, domainFull,
+ isModerationPost,
+ showLikeButton,
+ postJsonObject,
+ enableTimingLog,
+ postStartTime,
+ translate, pageNumberParam,
+ timelinePostBookmark,
+ boxName, iconsPath)
# benchmark 12.5
if enableTimingLog: