akkoma-fe/src/components/status/status.js

544 lines
17 KiB
JavaScript
Raw Normal View History

import ReplyButton from '../reply_button/reply_button.vue'
import QuoteButton from '../quote_button/quote_button.vue'
2016-10-30 15:12:35 +00:00
import FavoriteButton from '../favorite_button/favorite_button.vue'
import ReactButton from '../react_button/react_button.vue'
import RetweetButton from '../retweet_button/retweet_button.vue'
import ExtraButtons from '../extra_buttons/extra_buttons.vue'
2016-11-03 15:59:27 +00:00
import PostStatusForm from '../post_status_form/post_status_form.vue'
2019-03-05 19:01:49 +00:00
import UserCard from '../user_card/user_card.vue'
import UserAvatar from '../user_avatar/user_avatar.vue'
2019-04-02 02:29:45 +00:00
import AvatarList from '../avatar_list/avatar_list.vue'
2019-06-18 20:28:31 +00:00
import Timeago from '../timeago/timeago.vue'
import StatusContent from '../status_content/status_content.vue'
import RichContent from 'src/components/rich_content/rich_content.jsx'
import StatusPopover from '../status_popover/status_popover.vue'
import UserListPopover from '../user_list_popover/user_list_popover.vue'
2020-01-14 08:06:14 +00:00
import EmojiReactions from '../emoji_reactions/emoji_reactions.vue'
import MentionsLine from 'src/components/mentions_line/mentions_line.vue'
2021-06-08 08:38:44 +00:00
import MentionLink from 'src/components/mention_link/mention_link.vue'
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
import { highlightClass, highlightStyle } from '../../services/user_highlighter/user_highlighter.js'
import { muteWordHits } from '../../services/status_parser/status_parser.js'
import { unescape, uniqBy } from 'lodash'
2016-10-28 16:08:03 +00:00
import { library } from '@fortawesome/fontawesome-svg-core'
import {
faEnvelope,
faLock,
faLockOpen,
2020-10-20 21:25:59 +00:00
faGlobe,
faTimes,
faRetweet,
faReply,
faPlusSquare,
faSmileBeam,
faEllipsisH,
faStar,
faEyeSlash,
faEye,
2021-08-07 04:33:06 +00:00
faThumbtack,
faChevronUp,
faChevronDown,
faAngleDoubleRight
} from '@fortawesome/free-solid-svg-icons'
library.add(
faEnvelope,
2020-10-20 21:25:59 +00:00
faGlobe,
faLock,
faLockOpen,
faTimes,
faRetweet,
faReply,
faPlusSquare,
faStar,
faSmileBeam,
faEllipsisH,
faEyeSlash,
faEye,
2021-08-07 04:33:06 +00:00
faThumbtack,
faChevronUp,
faChevronDown,
faAngleDoubleRight
)
const camelCase = name => name.charAt(0).toUpperCase() + name.slice(1)
const controlledOrUncontrolledGetters = list => list.reduce((res, name) => {
const camelized = camelCase(name)
const toggle = `controlledToggle${camelized}`
const controlledName = `controlled${camelized}`
const uncontrolledName = `uncontrolled${camelized}`
res[name] = function () {
2022-03-29 16:44:07 +00:00
return ((this.$data[toggle] !== undefined || this.$props[toggle] !== undefined) && this[toggle]) ? this[controlledName] : this[uncontrolledName]
}
return res
}, {})
const controlledOrUncontrolledToggle = (obj, name) => {
const camelized = camelCase(name)
const toggle = `controlledToggle${camelized}`
const uncontrolledName = `uncontrolled${camelized}`
if (obj[toggle]) {
obj[toggle]()
} else {
obj[uncontrolledName] = !obj[uncontrolledName]
}
}
const controlledOrUncontrolledSet = (obj, name, val) => {
const camelized = camelCase(name)
const set = `controlledSet${camelized}`
const uncontrolledName = `uncontrolled${camelized}`
if (obj[set]) {
obj[set](val)
} else {
obj[uncontrolledName] = val
}
}
2016-10-28 13:19:42 +00:00
const Status = {
2018-04-09 16:43:31 +00:00
name: 'Status',
components: {
ReplyButton,
FavoriteButton,
ReactButton,
RetweetButton,
ExtraButtons,
PostStatusForm,
UserCard,
UserAvatar,
AvatarList,
Timeago,
StatusPopover,
UserListPopover,
EmojiReactions,
StatusContent,
2021-06-08 08:38:44 +00:00
RichContent,
MentionLink,
MentionsLine,
QuoteButton
},
props: [
'statusoid',
'expandable',
'inConversation',
'focused',
'highlight',
'compact',
2018-04-09 16:43:31 +00:00
'replies',
'isPreview',
2018-04-09 16:43:31 +00:00
'noHeading',
'inlineExpanded',
'showPinned',
'inProfile',
2021-08-07 04:33:06 +00:00
'profileUserId',
2021-08-07 22:53:23 +00:00
'simpleTree',
2021-08-07 04:33:06 +00:00
'controlledThreadDisplayStatus',
2021-08-07 14:28:45 +00:00
'controlledToggleThreadDisplay',
'showOtherRepliesAsButton',
2021-08-07 14:28:45 +00:00
'controlledShowingTall',
'controlledToggleShowingTall',
'controlledExpandingSubject',
'controlledToggleExpandingSubject',
'controlledShowingLongSubject',
'controlledToggleShowingLongSubject',
'controlledReplying',
'controlledToggleReplying',
'controlledQuoting',
'controlledToggleQuoting',
'controlledMediaPlaying',
'controlledSetMediaPlaying',
'dive'
],
data () {
return {
uncontrolledReplying: false,
uncontrolledQuoting: false,
unmuted: false,
userExpanded: false,
uncontrolledMediaPlaying: [],
2020-09-29 10:18:37 +00:00
suspendable: true,
error: null,
headTailLinks: null
}
},
2016-10-28 16:08:03 +00:00
computed: {
...controlledOrUncontrolledGetters(['replying', 'quoting', 'mediaPlaying']),
muteWords () {
return this.mergedConfig.muteWords
},
showReasonMutedThread () {
return (
this.status.thread_muted ||
(this.status.reblog && this.status.reblog.thread_muted)
) && !this.inConversation
},
2018-06-18 08:36:58 +00:00
repeaterClass () {
const user = this.statusoid.user
return highlightClass(user)
2018-06-18 08:36:58 +00:00
},
2018-04-25 14:35:25 +00:00
userClass () {
2018-06-18 08:36:58 +00:00
const user = this.retweet ? (this.statusoid.retweeted_status.user) : this.statusoid.user
return highlightClass(user)
2018-06-18 08:36:58 +00:00
},
2018-12-04 18:49:00 +00:00
deleted () {
return this.statusoid.deleted
},
2018-06-18 08:36:58 +00:00
repeaterStyle () {
const user = this.statusoid.user
const highlight = this.mergedConfig.highlight
return highlightStyle(highlight[user.screen_name])
2018-06-18 08:36:58 +00:00
},
userStyle () {
if (this.noHeading) return
2018-06-18 08:36:58 +00:00
const user = this.retweet ? (this.statusoid.retweeted_status.user) : this.statusoid.user
const highlight = this.mergedConfig.highlight
return highlightStyle(highlight[user.screen_name])
2018-04-25 14:35:25 +00:00
},
userProfileLink () {
return this.generateUserProfileLink(this.status.user.id, this.status.user.screen_name)
},
replyProfileLink () {
if (this.isReply) {
2021-06-08 14:04:57 +00:00
const user = this.$store.getters.findUser(this.status.in_reply_to_user_id)
// FIXME Why user not found sometimes???
return user ? user.statusnet_profile_url : 'NOT_FOUND'
}
},
2016-10-28 16:08:03 +00:00
retweet () { return !!this.statusoid.retweeted_status },
retweeterUser () { return this.statusoid.user },
retweeter () { return this.statusoid.user.name || this.statusoid.user.screen_name_ui },
retweeterHtml () { return this.statusoid.user.name },
retweeterProfileLink () { return this.generateUserProfileLink(this.statusoid.user.id, this.statusoid.user.screen_name) },
2016-10-28 16:08:03 +00:00
status () {
if (this.retweet) {
return this.statusoid.retweeted_status
} else {
return this.statusoid
}
2016-11-06 19:45:26 +00:00
},
statusFromGlobalRepository () {
// NOTE: Consider to replace status with statusFromGlobalRepository
return this.$store.state.statuses.allStatusesObject[this.status.id]
},
2016-11-06 19:45:26 +00:00
loggedIn () {
2019-11-13 22:18:14 +00:00
return !!this.currentUser
2017-02-13 23:01:50 +00:00
},
muteWordHits () {
return muteWordHits(this.status, this.muteWords)
},
rtBotStatus () {
return this.statusoid.user.bot
},
2022-02-28 20:07:20 +00:00
botStatus () {
return this.status.user.bot
},
botIndicator () {
return this.botStatus && !this.hideBotIndication
},
rtBotIndicator () {
return this.rtBotStatus && !this.hideBotIndication
},
mentionsLine () {
2021-08-14 18:55:38 +00:00
if (!this.headTailLinks) return []
const writtenSet = new Set(this.headTailLinks.writtenMentions.map(_ => _.url))
return this.status.attentions.filter(attn => {
2021-08-14 18:55:38 +00:00
// no reply user
return attn.id !== this.status.in_reply_to_user_id &&
// no self-replies
attn.statusnet_profile_url !== this.status.user.statusnet_profile_url &&
// don't include if mentions is written
!writtenSet.has(attn.statusnet_profile_url)
}).map(attn => ({
url: attn.statusnet_profile_url,
content: attn.screen_name,
userId: attn.id
}))
},
hasMentionsLine () {
return this.mentionsLine.length > 0
2021-06-08 08:38:44 +00:00
},
mentionsBlockedUser () {
// XXX: doesn't work on domain blocks, because users from blocked domains
// don't appear in `attentions' and therefore cannot be filtered.
let mentions = false
// find if user in mentions list is blocked
this.status.attentions.forEach((attn) => {
if (attn.id === this.currentUser.id) return
const relationship = this.$store.getters.relationship(attn.id)
if (relationship.blocking) {
mentions = true
}
})
return mentions
},
mentionsMutedUser () {
// XXX: doesn't work on domain blocks, because users from blocked domains
// don't appear in `attentions' and therefore cannot be filtered.
let mentions = false
// find if user in mentions list is blocked
this.status.attentions.forEach((attn) => {
if (attn.id === this.currentUser.id) return
const relationship = this.$store.getters.relationship(attn.id)
if (relationship.muting) {
mentions = true
}
})
return mentions
},
2020-04-21 20:27:51 +00:00
muted () {
if (this.statusoid.user.id === this.currentUser.id) return false
const reasonsToMute = this.userIsMuted ||
// Thread is muted
status.thread_muted ||
// Wordfiltered
2022-02-28 20:07:20 +00:00
this.muteWordHits.length > 0 ||
// bot status
(this.muteBotStatuses && this.botStatus && !this.compact) ||
// mentions blocked user
this.mentionsBlockedUser ||
// mentions muted user
this.mentionsMutedUser
return !this.unmuted && !this.shouldNotMute && reasonsToMute
},
userIsMuted () {
2021-01-11 17:40:35 +00:00
if (this.statusoid.user.id === this.currentUser.id) return false
const { status } = this
const { reblog } = status
const relationship = this.$store.getters.relationship(status.user.id)
const relationshipReblog = reblog && this.$store.getters.relationship(reblog.user.id)
return status.muted ||
// Reprööt of a muted post according to BE
(reblog && reblog.muted) ||
// Muted user
relationship.muting ||
// Muted user of a reprööt
(relationshipReblog && relationshipReblog.muting)
},
shouldNotMute () {
const { status } = this
const { reblog } = status
return (
(
this.inProfile && (
// Don't mute user's posts on user timeline (except reblogs)
(!reblog && status.user.id === this.profileUserId) ||
// Same as above but also allow self-reblogs
(reblog && reblog.user.id === this.profileUserId)
)
) ||
// Don't mute statuses in muted conversation when said conversation is opened
(this.inConversation && status.thread_muted)
// No excuses if post has muted words
) && !this.muteWordHits.length > 0
},
hideMutedUsers () {
return this.mergedConfig.hideMutedPosts
},
hideMutedThreads () {
return this.mergedConfig.hideMutedThreads
2020-04-21 20:27:51 +00:00
},
2019-02-06 18:18:13 +00:00
hideFilteredStatuses () {
return this.mergedConfig.hideFilteredStatuses
2019-02-06 18:18:13 +00:00
},
hideThreadsWithBlockedUsers () {
return this.mergedConfig.hideThreadsWithBlockedUsers
},
hideWordFilteredPosts () {
return this.mergedConfig.hideWordFilteredPosts
},
2019-02-08 12:25:56 +00:00
hideStatus () {
2022-03-28 14:37:26 +00:00
return (!this.shouldNotMute) && (
(this.muted && this.hideFilteredStatuses) ||
(this.userIsMuted && this.hideMutedUsers) ||
((this.status.thread_muted || this.mentionsMutedUser) && this.hideMutedThreads) ||
(this.muteWordHits.length > 0 && this.hideWordFilteredPosts) ||
(this.mentionsBlockedUser && this.hideThreadsWithBlockedUsers)
)
2019-02-08 12:25:56 +00:00
},
isFocused () {
// retweet or root of an expanded conversation
2017-04-12 16:07:55 +00:00
if (this.focused) {
return true
2017-04-12 16:07:55 +00:00
} else if (!this.inConversation) {
return false
2017-04-12 16:07:55 +00:00
}
// use conversation highlight only when in conversation
return this.status.id === this.highlight
2018-04-09 16:43:31 +00:00
},
isReply () {
return !!(this.status.in_reply_to_status_id && this.status.in_reply_to_user_id)
},
replyToName () {
if (this.status.in_reply_to_screen_name) {
2019-01-24 17:27:20 +00:00
return this.status.in_reply_to_screen_name
} else {
2019-03-08 23:36:35 +00:00
const user = this.$store.getters.findUser(this.status.in_reply_to_user_id)
return user && user.screen_name_ui
}
},
2018-08-26 00:50:11 +00:00
replySubject () {
2018-09-25 12:21:47 +00:00
if (!this.status.summary) return ''
2019-02-09 12:13:52 +00:00
const decodedSummary = unescape(this.status.summary)
const behavior = this.mergedConfig.subjectLineBehavior
2019-02-08 16:25:53 +00:00
const startsWithRe = decodedSummary.match(/^re[: ]/i)
2019-07-06 21:54:17 +00:00
if ((behavior !== 'noop' && startsWithRe) || behavior === 'masto') {
2019-02-08 16:25:53 +00:00
return decodedSummary
2018-09-25 12:16:26 +00:00
} else if (behavior === 'email') {
2019-02-08 16:25:53 +00:00
return 're: '.concat(decodedSummary)
2018-09-25 12:16:26 +00:00
} else if (behavior === 'noop') {
return ''
2018-08-26 00:50:11 +00:00
}
},
combinedFavsAndRepeatsUsers () {
// Use the status from the global status repository since favs and repeats are saved in it
const combinedUsers = [].concat(
2019-04-29 19:36:39 +00:00
this.statusFromGlobalRepository.favoritedBy,
this.statusFromGlobalRepository.rebloggedBy
)
return uniqBy(combinedUsers, 'id')
2019-04-04 16:56:13 +00:00
},
tags () {
return this.status.tags.filter(tagObj => tagObj.hasOwnProperty('name')).map(tagObj => tagObj.name).join(' ')
},
hidePostStats () {
return this.mergedConfig.hidePostStats
},
2022-02-28 20:07:20 +00:00
muteBotStatuses () {
return this.mergedConfig.muteBotStatuses
},
hideBotIndication () {
return this.mergedConfig.hideBotIndication
},
2020-09-29 10:18:37 +00:00
currentUser () {
return this.$store.state.users.currentUser
},
betterShadow () {
return this.$store.state.interface.browserSupport.cssFilter
},
mergedConfig () {
return this.$store.getters.mergedConfig
},
isSuspendable () {
return !this.replying && this.mediaPlaying.length === 0
2021-08-07 04:33:06 +00:00
},
inThreadForest () {
return !!this.controlledThreadDisplayStatus
},
threadShowing () {
return this.controlledThreadDisplayStatus === 'showing'
},
visibilityLocalized () {
return this.$i18n.t('general.scope_in_timeline.' + this.status.visibility)
},
isEdited () {
return this.status.edited_at !== null
},
editingAvailable () {
return this.$store.state.instance.editingAvailable
2020-09-29 10:18:37 +00:00
}
2016-10-28 16:08:03 +00:00
},
2016-11-03 15:59:27 +00:00
methods: {
2018-05-21 22:01:33 +00:00
visibilityIcon (visibility) {
switch (visibility) {
case 'private':
return 'lock'
2018-05-21 22:01:33 +00:00
case 'unlisted':
return 'lock-open'
2018-05-21 22:01:33 +00:00
case 'direct':
return 'envelope'
2021-07-01 15:06:59 +00:00
case 'local':
2021-11-20 14:38:01 +00:00
return 'users'
2018-05-21 22:01:33 +00:00
default:
2020-10-20 21:25:59 +00:00
return 'globe'
2018-05-20 16:28:01 +00:00
}
},
showError (error) {
this.error = error
2019-04-27 13:36:10 +00:00
},
clearError () {
this.error = undefined
},
2016-11-03 15:59:27 +00:00
toggleReplying () {
controlledOrUncontrolledToggle(this, 'replying')
},
toggleQuoting () {
controlledOrUncontrolledToggle(this, 'quoting')
},
gotoOriginal (id) {
if (this.inConversation) {
this.$emit('goto', id)
}
},
toggleExpanded () {
this.$emit('toggleExpanded')
2017-02-13 23:01:50 +00:00
},
toggleMute () {
this.unmuted = !this.unmuted
2017-02-16 14:58:49 +00:00
},
toggleUserExpanded () {
this.userExpanded = !this.userExpanded
},
generateUserProfileLink (id, name) {
return generateProfileLink(id, name, this.$store.state.instance.restrictedNicknames)
2020-09-29 10:18:37 +00:00
},
addMediaPlaying (id) {
controlledOrUncontrolledSet(this, 'mediaPlaying', this.mediaPlaying.concat(id))
2020-09-29 10:18:37 +00:00
},
removeMediaPlaying (id) {
controlledOrUncontrolledSet(this, 'mediaPlaying', this.mediaPlaying.filter(mediaId => mediaId !== id))
},
setHeadTailLinks (headTailLinks) {
this.headTailLinks = headTailLinks
2021-08-07 04:33:06 +00:00
},
toggleThreadDisplay () {
this.controlledToggleThreadDisplay()
2021-08-07 22:53:23 +00:00
},
scrollIfHighlighted (highlightId) {
const id = highlightId
2017-04-12 16:07:55 +00:00
if (this.status.id === id) {
let rect = this.$el.getBoundingClientRect()
2017-04-12 16:07:55 +00:00
if (rect.top < 100) {
// Post is above screen, match its top to screen top
window.scrollBy(0, rect.top - 100)
} else if (rect.height >= (window.innerHeight - 50)) {
// Post we want to see is taller than screen so match its top to screen top
window.scrollBy(0, rect.top - 100)
} else if (rect.bottom > window.innerHeight - 50) {
// Post is below screen, match its bottom to screen bottom
window.scrollBy(0, rect.bottom - window.innerHeight + 50)
2017-04-12 16:07:55 +00:00
}
}
2021-08-07 22:53:23 +00:00
}
},
watch: {
'highlight': function (id) {
this.scrollIfHighlighted(id)
},
'status.repeat_num': function (num) {
2019-06-27 12:19:35 +00:00
// refetch repeats when repeat_num is changed in any way
if (this.isFocused && this.statusFromGlobalRepository.rebloggedBy && this.statusFromGlobalRepository.rebloggedBy.length !== num) {
2019-06-27 12:14:54 +00:00
this.$store.dispatch('fetchRepeats', this.status.id)
}
},
'status.fave_num': function (num) {
2019-06-27 12:19:35 +00:00
// refetch favs when fave_num is changed in any way
if (this.isFocused && this.statusFromGlobalRepository.favoritedBy && this.statusFromGlobalRepository.favoritedBy.length !== num) {
2019-06-27 12:14:54 +00:00
this.$store.dispatch('fetchFavs', this.status.id)
}
2020-09-29 10:18:37 +00:00
},
'isSuspendable': function (val) {
this.suspendable = val
}
2016-10-28 16:08:03 +00:00
}
2016-10-28 13:19:42 +00:00
}
export default Status