From c8caa477d7f9d6b793ba0f75c736510f47298014 Mon Sep 17 00:00:00 2001 From: HJ Date: Tue, 22 Jan 2019 21:08:28 +0000 Subject: [PATCH] Revert "fix reply-to tooltip being somewhat unreliable" This reverts commit 66dc72deb2b4b518ba09b984d792be57451c4bfc --- src/components/status/status.js | 20 +------------------ src/components/status/status.vue | 12 +++++------ .../entity_normalizer.service.js | 8 -------- 3 files changed, 7 insertions(+), 33 deletions(-) diff --git a/src/components/status/status.js b/src/components/status/status.js index 44a6d5c5..105a736b 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -73,16 +73,6 @@ const Status = { return (this.$store.state.config.hideAttachments && !this.inConversation) || (this.$store.state.config.hideAttachmentsInConv && this.inConversation) }, - userProfileLink () { - return this.generateUserProfileLink(this.status.user.id, this.status.user.screen_name) - }, - replyProfileLink () { - if (this.isReply) { - return this.generateUserProfileLink(this.status.in_reply_to_status_id, this.replyToName) - } else { - return '' - } - }, retweet () { return !!this.statusoid.retweeted_status }, retweeter () { return this.statusoid.user.name }, retweeterHtml () { return this.statusoid.user.name_html }, @@ -129,14 +119,6 @@ const Status = { isReply () { return !!this.status.in_reply_to_status_id }, - replyToName () { - const user = this.$store.state.users.usersObject[this.status.in_reply_to_user_id] - if (user) { - return user.screen_name - } else { - return this.status.in_reply_to_screen_name || '' - } - }, hideReply () { if (this.$store.state.config.replyVisibility === 'all') { return false @@ -295,7 +277,7 @@ const Status = { replyLeave () { this.showPreview = false }, - generateUserProfileLink (id, name) { + userProfileLink (id, name) { return generateProfileLink(id, name, this.$store.state.instance.restrictedNicknames) } }, diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 5c956467..4a1aef8f 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -3,7 +3,7 @@