From 85c69ffadad027fe262006eea1886eb2cadaffd2 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 23 Sep 2019 13:19:00 +0100 Subject: [PATCH] Displaying emoji in name on profile --- epicyon-profile.css | 11 +++++++++++ webinterface.py | 23 ++++++++++++++++------- 2 files changed, 27 insertions(+), 7 deletions(-) diff --git a/epicyon-profile.css b/epicyon-profile.css index 3a54a811..86b0b016 100644 --- a/epicyon-profile.css +++ b/epicyon-profile.css @@ -391,6 +391,17 @@ a:link { transform: translateY(-40%); } +.container img.emojiprofile { + float: none; + width: 50px; + margin-left: 0px; + margin-right: 0px; + padding-right: 0px; + border-radius: 0px; + -ms-transform: translateY(-40%); + transform: translateY(-40%); +} + .containericons { padding: 0px 0px; margin: 0px 0px; diff --git a/webinterface.py b/webinterface.py index ca57276e..ab2b9ea3 100644 --- a/webinterface.py +++ b/webinterface.py @@ -1181,6 +1181,10 @@ def htmlProfile(translate: {},projectVersion: str, \ domain,port=getDomainFromActor(profileJson['id']) if not domain: return "" + displayName= \ + addEmojiToDisplayName(baseDir,httpPrefix, \ + nickname,domain, \ + displayName,True) domainFull=domain if port: domainFull=domain+':'+str(port) @@ -1414,7 +1418,7 @@ def contentWarningScript() -> str: '}\n' return script -def htmlReplaceEmojiFromTags(content: str,tag: [],inMessageContent: bool) -> str: +def htmlReplaceEmojiFromTags(content: str,tag: [],messageType: str) -> str: """Uses the tags to replace :emoji: with html image markup """ for tagItem in tag: @@ -1431,8 +1435,10 @@ def htmlReplaceEmojiFromTags(content: str,tag: [],inMessageContent: bool) -> str if tagItem['name'] not in content: continue htmlClass='emoji' - if not inMessageContent: + if messageType=='post header': htmlClass='emojiheader' + if messageType=='profile': + htmlClass='emojiprofile' emojiHtml="\""+tagItem['name'].replace(':','')+"\"" content=content.replace(tagItem['name'],emojiHtml) return content @@ -1614,7 +1620,7 @@ def rejectAnnounce(announceFilename: str): def addEmojiToDisplayName(baseDir: str,httpPrefix: str, \ nickname: str,domain: str, \ - displayName: str) -> str: + displayName: str,inProfileName: bool) -> str: """Adds emoji icons to display names on individual posts """ if ':' in displayName: @@ -1628,7 +1634,10 @@ def addEmojiToDisplayName(baseDir: str,httpPrefix: str, \ emojiTagsList=[] for tagName,tag in emojiTags.items(): emojiTagsList.append(tag) - displayName=htmlReplaceEmojiFromTags(displayName,emojiTagsList,False) + if not inProfileName: + displayName=htmlReplaceEmojiFromTags(displayName,emojiTagsList,'post header') + else: + displayName=htmlReplaceEmojiFromTags(displayName,emojiTagsList,'profile') return displayName def individualPostAsHtml(iconsDir: str,translate: {}, \ @@ -1768,7 +1777,7 @@ def individualPostAsHtml(iconsDir: str,translate: {}, \ displayName= \ addEmojiToDisplayName(baseDir,httpPrefix, \ nickname,domain, \ - displayName) + displayName,False) titleStr+=''+displayName+'' else: titleStr+='@'+actorNickname+'@'+actorDomain+'' @@ -1894,7 +1903,7 @@ def individualPostAsHtml(iconsDir: str,translate: {}, \ displayName= \ addEmojiToDisplayName(baseDir,httpPrefix, \ nickname,domain, \ - displayName) + displayName,False) titleStr=displayName+' '+titleStr avatarImageInPost= \ @@ -2020,7 +2029,7 @@ def individualPostAsHtml(iconsDir: str,translate: {}, \ contentStr+='' if postJsonObject['object'].get('tag'): - contentStr=htmlReplaceEmojiFromTags(contentStr,postJsonObject['object']['tag'],True) + contentStr=htmlReplaceEmojiFromTags(contentStr,postJsonObject['object']['tag'],'content') contentStr='
'+contentStr+'
'