2020-09-07 10:35:49 +03:00
|
|
|
import ReplyButton from '../reply_button/reply_button.vue'
|
2016-10-30 16:12:35 +01:00
|
|
|
import FavoriteButton from '../favorite_button/favorite_button.vue'
|
2019-11-15 16:29:25 +02:00
|
|
|
import ReactButton from '../react_button/react_button.vue'
|
2016-11-13 16:42:56 +01:00
|
|
|
import RetweetButton from '../retweet_button/retweet_button.vue'
|
2019-04-12 15:35:29 -04:00
|
|
|
import ExtraButtons from '../extra_buttons/extra_buttons.vue'
|
2016-11-03 16:59:27 +01:00
|
|
|
import PostStatusForm from '../post_status_form/post_status_form.vue'
|
2019-03-05 14:01:49 -05:00
|
|
|
import UserCard from '../user_card/user_card.vue'
|
2019-02-02 14:11:36 -05:00
|
|
|
import UserAvatar from '../user_avatar/user_avatar.vue'
|
2019-04-01 22:29:45 -04:00
|
|
|
import AvatarList from '../avatar_list/avatar_list.vue'
|
2019-06-18 20:28:31 +00:00
|
|
|
import Timeago from '../timeago/timeago.vue'
|
2020-04-27 12:53:04 +03:00
|
|
|
import StatusContent from '../status_content/status_content.vue'
|
2021-06-07 18:39:51 +03:00
|
|
|
import RichContent from 'src/components/rich_content/rich_content.jsx'
|
2019-10-24 16:53:36 -04:00
|
|
|
import StatusPopover from '../status_popover/status_popover.vue'
|
2020-07-16 17:42:16 +03:00
|
|
|
import UserListPopover from '../user_list_popover/user_list_popover.vue'
|
2020-01-14 10:06:14 +02:00
|
|
|
import EmojiReactions from '../emoji_reactions/emoji_reactions.vue'
|
2021-06-08 14:34:47 +03:00
|
|
|
import MentionsLine from 'src/components/mentions_line/mentions_line.vue'
|
2021-06-08 11:38:44 +03:00
|
|
|
import MentionLink from 'src/components/mention_link/mention_link.vue'
|
2018-12-13 19:57:11 +03:00
|
|
|
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
|
2019-01-30 20:49:24 +02:00
|
|
|
import { highlightClass, highlightStyle } from '../../services/user_highlighter/user_highlighter.js'
|
2020-05-25 23:38:31 +03:00
|
|
|
import { muteWordHits } from '../../services/status_parser/status_parser.js'
|
|
|
|
import { unescape, uniqBy } from 'lodash'
|
2016-10-28 18:08:03 +02:00
|
|
|
|
2020-10-19 19:38:49 +03:00
|
|
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
|
|
|
import {
|
|
|
|
faEnvelope,
|
|
|
|
faLock,
|
2020-10-21 00:28:24 +03:00
|
|
|
faLockOpen,
|
2020-10-21 00:25:59 +03:00
|
|
|
faGlobe,
|
2020-10-19 19:38:49 +03:00
|
|
|
faTimes,
|
|
|
|
faRetweet,
|
|
|
|
faReply,
|
|
|
|
faPlusSquare,
|
|
|
|
faSmileBeam,
|
|
|
|
faEllipsisH,
|
|
|
|
faStar,
|
|
|
|
faEyeSlash,
|
|
|
|
faEye,
|
2021-08-07 00:33:06 -04:00
|
|
|
faThumbtack,
|
2021-08-07 11:59:10 -04:00
|
|
|
faChevronUp,
|
|
|
|
faChevronDown,
|
|
|
|
faAngleDoubleRight
|
2020-10-19 19:38:49 +03:00
|
|
|
} from '@fortawesome/free-solid-svg-icons'
|
|
|
|
|
|
|
|
library.add(
|
|
|
|
faEnvelope,
|
2020-10-21 00:25:59 +03:00
|
|
|
faGlobe,
|
2020-10-19 19:38:49 +03:00
|
|
|
faLock,
|
2020-10-21 00:28:24 +03:00
|
|
|
faLockOpen,
|
2020-10-19 19:38:49 +03:00
|
|
|
faTimes,
|
|
|
|
faRetweet,
|
|
|
|
faReply,
|
|
|
|
faPlusSquare,
|
|
|
|
faStar,
|
|
|
|
faSmileBeam,
|
|
|
|
faEllipsisH,
|
|
|
|
faEyeSlash,
|
|
|
|
faEye,
|
2021-08-07 00:33:06 -04:00
|
|
|
faThumbtack,
|
2021-08-07 11:59:10 -04:00
|
|
|
faChevronUp,
|
|
|
|
faChevronDown,
|
|
|
|
faAngleDoubleRight
|
2020-10-19 19:38:49 +03:00
|
|
|
)
|
|
|
|
|
2016-10-28 15:19:42 +02:00
|
|
|
const Status = {
|
2018-04-09 19:43:31 +03:00
|
|
|
name: 'Status',
|
2020-07-16 17:42:16 +03:00
|
|
|
components: {
|
2020-09-07 10:35:49 +03:00
|
|
|
ReplyButton,
|
2020-07-16 17:42:16 +03:00
|
|
|
FavoriteButton,
|
|
|
|
ReactButton,
|
|
|
|
RetweetButton,
|
|
|
|
ExtraButtons,
|
|
|
|
PostStatusForm,
|
|
|
|
UserCard,
|
|
|
|
UserAvatar,
|
|
|
|
AvatarList,
|
|
|
|
Timeago,
|
|
|
|
StatusPopover,
|
|
|
|
UserListPopover,
|
|
|
|
EmojiReactions,
|
2021-06-07 18:39:51 +03:00
|
|
|
StatusContent,
|
2021-06-08 11:38:44 +03:00
|
|
|
RichContent,
|
2021-06-08 14:34:47 +03:00
|
|
|
MentionLink,
|
|
|
|
MentionsLine
|
2020-07-16 17:42:16 +03:00
|
|
|
},
|
2017-02-04 13:53:28 +01:00
|
|
|
props: [
|
|
|
|
'statusoid',
|
2019-05-06 21:36:55 -04:00
|
|
|
'expandable',
|
2017-03-09 09:19:40 +01:00
|
|
|
'inConversation',
|
2017-04-12 18:25:19 +03:00
|
|
|
'focused',
|
2017-05-31 11:47:18 +03:00
|
|
|
'highlight',
|
2017-06-04 23:58:15 +03:00
|
|
|
'compact',
|
2018-04-09 19:43:31 +03:00
|
|
|
'replies',
|
2019-03-02 16:35:38 +00:00
|
|
|
'isPreview',
|
2018-04-09 19:43:31 +03:00
|
|
|
'noHeading',
|
2019-04-30 11:06:22 -04:00
|
|
|
'inlineExpanded',
|
2019-09-13 15:34:17 -04:00
|
|
|
'showPinned',
|
2019-11-25 12:25:01 -05:00
|
|
|
'inProfile',
|
2021-08-07 00:33:06 -04:00
|
|
|
'profileUserId',
|
|
|
|
|
2021-08-07 18:53:23 -04:00
|
|
|
'simpleTree',
|
2021-08-07 00:33:06 -04:00
|
|
|
'controlledThreadDisplayStatus',
|
2021-08-07 10:28:45 -04:00
|
|
|
'controlledToggleThreadDisplay',
|
|
|
|
|
|
|
|
'controlledShowingTall',
|
|
|
|
'controlledToggleShowingTall',
|
|
|
|
'controlledExpandingSubject',
|
|
|
|
'controlledToggleExpandingSubject',
|
|
|
|
'controlledShowingLongSubject',
|
2021-08-07 11:59:10 -04:00
|
|
|
'controlledToggleShowingLongSubject',
|
|
|
|
'dive'
|
2017-02-04 13:53:28 +01:00
|
|
|
],
|
2018-08-20 02:59:06 +01:00
|
|
|
data () {
|
|
|
|
return {
|
2019-03-11 16:24:37 -04:00
|
|
|
replying: false,
|
2018-08-20 02:59:06 +01:00
|
|
|
unmuted: false,
|
|
|
|
userExpanded: false,
|
2020-09-29 10:18:37 +00:00
|
|
|
mediaPlaying: [],
|
|
|
|
suspendable: true,
|
2021-06-11 03:11:58 +03:00
|
|
|
error: null,
|
|
|
|
headTailLinks: null
|
2018-08-20 02:59:06 +01:00
|
|
|
}
|
|
|
|
},
|
2016-10-28 18:08:03 +02:00
|
|
|
computed: {
|
2017-04-09 15:53:23 +02:00
|
|
|
muteWords () {
|
2019-09-29 22:33:15 +03:00
|
|
|
return this.mergedConfig.muteWords
|
2017-04-09 15:53:23 +02:00
|
|
|
},
|
2020-05-25 23:38:31 +03:00
|
|
|
showReasonMutedThread () {
|
|
|
|
return (
|
|
|
|
this.status.thread_muted ||
|
|
|
|
(this.status.reblog && this.status.reblog.thread_muted)
|
|
|
|
) && !this.inConversation
|
|
|
|
},
|
2018-06-18 11:36:58 +03:00
|
|
|
repeaterClass () {
|
|
|
|
const user = this.statusoid.user
|
2018-06-19 16:17:50 +03:00
|
|
|
return highlightClass(user)
|
2018-06-18 11:36:58 +03:00
|
|
|
},
|
2018-04-25 17:35:25 +03:00
|
|
|
userClass () {
|
2018-06-18 11:36:58 +03:00
|
|
|
const user = this.retweet ? (this.statusoid.retweeted_status.user) : this.statusoid.user
|
2018-06-19 16:17:50 +03:00
|
|
|
return highlightClass(user)
|
2018-06-18 11:36:58 +03:00
|
|
|
},
|
2018-12-05 00:19:00 +05:30
|
|
|
deleted () {
|
2018-12-05 00:15:08 +05:30
|
|
|
return this.statusoid.deleted
|
|
|
|
},
|
2018-06-18 11:36:58 +03:00
|
|
|
repeaterStyle () {
|
|
|
|
const user = this.statusoid.user
|
2019-09-29 22:33:15 +03:00
|
|
|
const highlight = this.mergedConfig.highlight
|
2018-08-05 05:18:04 +03:00
|
|
|
return highlightStyle(highlight[user.screen_name])
|
2018-06-18 11:36:58 +03:00
|
|
|
},
|
|
|
|
userStyle () {
|
2018-08-05 05:41:37 +03:00
|
|
|
if (this.noHeading) return
|
2018-06-18 11:36:58 +03:00
|
|
|
const user = this.retweet ? (this.statusoid.retweeted_status.user) : this.statusoid.user
|
2019-09-29 22:33:15 +03:00
|
|
|
const highlight = this.mergedConfig.highlight
|
2018-08-05 05:18:04 +03:00
|
|
|
return highlightStyle(highlight[user.screen_name])
|
2018-04-25 17:35:25 +03:00
|
|
|
},
|
2019-01-22 23:57:51 +03:00
|
|
|
userProfileLink () {
|
|
|
|
return this.generateUserProfileLink(this.status.user.id, this.status.user.screen_name)
|
|
|
|
},
|
|
|
|
replyProfileLink () {
|
|
|
|
if (this.isReply) {
|
2021-06-08 17:04:57 +03:00
|
|
|
const user = this.$store.getters.findUser(this.status.in_reply_to_user_id)
|
2021-06-10 13:01:00 +03:00
|
|
|
// FIXME Why user not found sometimes???
|
|
|
|
return user ? user.statusnet_profile_url : 'NOT_FOUND'
|
2019-01-22 23:57:51 +03:00
|
|
|
}
|
|
|
|
},
|
2016-10-28 18:08:03 +02:00
|
|
|
retweet () { return !!this.statusoid.retweeted_status },
|
2021-06-07 18:39:51 +03:00
|
|
|
retweeterUser () { return this.statusoid.user },
|
2021-02-26 16:23:11 +02:00
|
|
|
retweeter () { return this.statusoid.user.name || this.statusoid.user.screen_name_ui },
|
2021-06-07 18:39:51 +03:00
|
|
|
retweeterHtml () { return this.statusoid.user.name },
|
2019-02-03 14:08:04 -05:00
|
|
|
retweeterProfileLink () { return this.generateUserProfileLink(this.statusoid.user.id, this.statusoid.user.screen_name) },
|
2016-10-28 18:08:03 +02:00
|
|
|
status () {
|
|
|
|
if (this.retweet) {
|
|
|
|
return this.statusoid.retweeted_status
|
|
|
|
} else {
|
|
|
|
return this.statusoid
|
|
|
|
}
|
2016-11-06 20:45:26 +01:00
|
|
|
},
|
2019-04-09 11:45:33 -04:00
|
|
|
statusFromGlobalRepository () {
|
|
|
|
// NOTE: Consider to replace status with statusFromGlobalRepository
|
|
|
|
return this.$store.state.statuses.allStatusesObject[this.status.id]
|
|
|
|
},
|
2016-11-06 20:45:26 +01:00
|
|
|
loggedIn () {
|
2019-11-14 00:18:14 +02:00
|
|
|
return !!this.currentUser
|
2017-02-14 00:01:50 +01:00
|
|
|
},
|
2017-04-09 15:53:23 +02:00
|
|
|
muteWordHits () {
|
2020-05-25 23:38:31 +03:00
|
|
|
return muteWordHits(this.status, this.muteWords)
|
2017-04-09 15:53:23 +02:00
|
|
|
},
|
2021-06-10 12:08:31 +03:00
|
|
|
mentionsLine () {
|
2021-08-14 21:55:38 +03:00
|
|
|
if (!this.headTailLinks) return []
|
|
|
|
const writtenSet = new Set(this.headTailLinks.writtenMentions.map(_ => _.url))
|
2021-08-12 03:08:57 +03:00
|
|
|
return this.status.attentions.filter(attn => {
|
2021-08-14 21:55:38 +03: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)
|
2021-08-12 03:08:57 +03:00
|
|
|
}).map(attn => ({
|
|
|
|
url: attn.statusnet_profile_url,
|
|
|
|
content: attn.screen_name,
|
|
|
|
userId: attn.id
|
|
|
|
}))
|
2021-06-10 12:08:31 +03:00
|
|
|
},
|
|
|
|
hasMentionsLine () {
|
|
|
|
return this.mentionsLine.length > 0
|
2021-06-08 11:38:44 +03:00
|
|
|
},
|
2020-04-21 23:27:51 +03:00
|
|
|
muted () {
|
2021-06-08 16:14:01 +03:00
|
|
|
if (this.statusoid.user.id === this.currentUser.id) return false
|
|
|
|
const reasonsToMute = this.userIsMuted ||
|
|
|
|
// Thread is muted
|
|
|
|
status.thread_muted ||
|
|
|
|
// Wordfiltered
|
|
|
|
this.muteWordHits.length > 0
|
|
|
|
return !this.unmuted && !this.shouldNotMute && reasonsToMute
|
|
|
|
},
|
|
|
|
userIsMuted () {
|
2021-01-11 19:40:35 +02:00
|
|
|
if (this.statusoid.user.id === this.currentUser.id) return false
|
2020-05-25 23:38:31 +03:00
|
|
|
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)
|
2021-06-08 16:14:01 +03:00
|
|
|
return status.muted ||
|
2020-05-25 23:38:31 +03:00
|
|
|
// Reprööt of a muted post according to BE
|
|
|
|
(reblog && reblog.muted) ||
|
|
|
|
// Muted user
|
|
|
|
relationship.muting ||
|
|
|
|
// Muted user of a reprööt
|
2021-06-08 16:14:01 +03:00
|
|
|
(relationshipReblog && relationshipReblog.muting)
|
|
|
|
},
|
|
|
|
shouldNotMute () {
|
|
|
|
const { status } = this
|
|
|
|
const { reblog } = status
|
|
|
|
return (
|
2020-05-25 23:38:31 +03:00
|
|
|
(
|
|
|
|
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
|
2021-06-08 16:14:01 +03:00
|
|
|
},
|
|
|
|
hideMutedUsers () {
|
|
|
|
return this.mergedConfig.hideMutedPosts
|
|
|
|
},
|
|
|
|
hideMutedThreads () {
|
|
|
|
return this.mergedConfig.hideMutedThreads
|
2020-04-21 23:27:51 +03:00
|
|
|
},
|
2019-02-06 10:18:13 -08:00
|
|
|
hideFilteredStatuses () {
|
2019-09-29 22:33:15 +03:00
|
|
|
return this.mergedConfig.hideFilteredStatuses
|
2019-02-06 10:18:13 -08:00
|
|
|
},
|
2021-06-08 16:14:01 +03:00
|
|
|
hideWordFilteredPosts () {
|
|
|
|
return this.mergedConfig.hideWordFilteredPosts
|
|
|
|
},
|
2019-02-08 04:25:56 -08:00
|
|
|
hideStatus () {
|
2021-06-08 16:14:01 +03:00
|
|
|
return (this.virtualHidden || !this.shouldNotMute) && (
|
|
|
|
(this.muted && this.hideFilteredStatuses) ||
|
|
|
|
(this.userIsMuted && this.hideMutedUsers) ||
|
|
|
|
(this.status.thread_muted && this.hideMutedThreads) ||
|
|
|
|
(this.muteWordHits.length > 0 && this.hideWordFilteredPosts)
|
|
|
|
)
|
2019-02-08 04:25:56 -08:00
|
|
|
},
|
2017-04-12 18:25:19 +03:00
|
|
|
isFocused () {
|
|
|
|
// retweet or root of an expanded conversation
|
2017-04-12 19:07:55 +03:00
|
|
|
if (this.focused) {
|
2017-04-12 18:25:19 +03:00
|
|
|
return true
|
2017-04-12 19:07:55 +03:00
|
|
|
} else if (!this.inConversation) {
|
2017-04-12 18:25:19 +03:00
|
|
|
return false
|
2017-04-12 19:07:55 +03:00
|
|
|
}
|
|
|
|
// use conversation highlight only when in conversation
|
|
|
|
return this.status.id === this.highlight
|
2018-04-09 19:43:31 +03:00
|
|
|
},
|
2018-08-24 20:04:26 +01:00
|
|
|
isReply () {
|
2019-01-27 11:31:23 +02:00
|
|
|
return !!(this.status.in_reply_to_status_id && this.status.in_reply_to_user_id)
|
2018-08-24 20:04:26 +01:00
|
|
|
},
|
2019-01-22 23:57:51 +03:00
|
|
|
replyToName () {
|
2019-03-09 01:34:15 +02:00
|
|
|
if (this.status.in_reply_to_screen_name) {
|
2019-01-24 20:27:20 +03:00
|
|
|
return this.status.in_reply_to_screen_name
|
2019-03-09 01:34:15 +02:00
|
|
|
} else {
|
2019-03-09 01:36:35 +02:00
|
|
|
const user = this.$store.getters.findUser(this.status.in_reply_to_user_id)
|
2021-02-26 16:23:11 +02:00
|
|
|
return user && user.screen_name_ui
|
2019-01-22 23:57:51 +03:00
|
|
|
}
|
|
|
|
},
|
2018-08-26 01:50:11 +01:00
|
|
|
replySubject () {
|
2018-09-25 15:21:47 +03:00
|
|
|
if (!this.status.summary) return ''
|
2019-02-09 04:13:52 -08:00
|
|
|
const decodedSummary = unescape(this.status.summary)
|
2019-09-29 22:33:15 +03:00
|
|
|
const behavior = this.mergedConfig.subjectLineBehavior
|
2019-02-08 08:25:53 -08:00
|
|
|
const startsWithRe = decodedSummary.match(/^re[: ]/i)
|
2019-07-07 00:54:17 +03:00
|
|
|
if ((behavior !== 'noop' && startsWithRe) || behavior === 'masto') {
|
2019-02-08 08:25:53 -08:00
|
|
|
return decodedSummary
|
2018-09-25 15:16:26 +03:00
|
|
|
} else if (behavior === 'email') {
|
2019-02-08 08:25:53 -08:00
|
|
|
return 're: '.concat(decodedSummary)
|
2018-09-25 15:16:26 +03:00
|
|
|
} else if (behavior === 'noop') {
|
|
|
|
return ''
|
2018-08-26 01:50:11 +01:00
|
|
|
}
|
|
|
|
},
|
2019-05-01 17:33:56 +03:00
|
|
|
combinedFavsAndRepeatsUsers () {
|
2019-04-09 11:45:33 -04:00
|
|
|
// Use the status from the global status repository since favs and repeats are saved in it
|
2019-05-01 17:33:56 +03:00
|
|
|
const combinedUsers = [].concat(
|
2019-04-29 22:36:39 +03:00
|
|
|
this.statusFromGlobalRepository.favoritedBy,
|
|
|
|
this.statusFromGlobalRepository.rebloggedBy
|
|
|
|
)
|
2019-05-01 17:33:56 +03:00
|
|
|
return uniqBy(combinedUsers, 'id')
|
2019-04-04 12:56:13 -04:00
|
|
|
},
|
2019-05-20 15:23:36 -04:00
|
|
|
tags () {
|
|
|
|
return this.status.tags.filter(tagObj => tagObj.hasOwnProperty('name')).map(tagObj => tagObj.name).join(' ')
|
2019-07-09 16:50:23 +03:00
|
|
|
},
|
|
|
|
hidePostStats () {
|
2019-09-29 22:33:15 +03:00
|
|
|
return this.mergedConfig.hidePostStats
|
|
|
|
},
|
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 00:33:06 -04:00
|
|
|
},
|
|
|
|
inThreadForest () {
|
|
|
|
return !!this.controlledThreadDisplayStatus
|
|
|
|
},
|
|
|
|
threadShowing () {
|
|
|
|
return this.controlledThreadDisplayStatus === 'showing'
|
2020-09-29 10:18:37 +00:00
|
|
|
}
|
2016-10-28 18:08:03 +02:00
|
|
|
},
|
2016-11-03 16:59:27 +01:00
|
|
|
methods: {
|
2018-05-21 23:01:33 +01:00
|
|
|
visibilityIcon (visibility) {
|
|
|
|
switch (visibility) {
|
|
|
|
case 'private':
|
2020-10-19 19:38:49 +03:00
|
|
|
return 'lock'
|
2018-05-21 23:01:33 +01:00
|
|
|
case 'unlisted':
|
2020-10-21 00:28:24 +03:00
|
|
|
return 'lock-open'
|
2018-05-21 23:01:33 +01:00
|
|
|
case 'direct':
|
2020-10-19 19:38:49 +03:00
|
|
|
return 'envelope'
|
2018-05-21 23:01:33 +01:00
|
|
|
default:
|
2020-10-21 00:25:59 +03:00
|
|
|
return 'globe'
|
2018-05-20 18:28:01 +02:00
|
|
|
}
|
|
|
|
},
|
2019-04-12 15:35:29 -04:00
|
|
|
showError (error) {
|
|
|
|
this.error = error
|
2019-04-27 09:36:10 -04:00
|
|
|
},
|
|
|
|
clearError () {
|
|
|
|
this.error = undefined
|
2019-04-12 15:35:29 -04:00
|
|
|
},
|
2016-11-03 16:59:27 +01:00
|
|
|
toggleReplying () {
|
2019-03-11 16:24:37 -04:00
|
|
|
this.replying = !this.replying
|
2017-02-04 13:53:28 +01:00
|
|
|
},
|
2017-06-04 23:58:15 +03:00
|
|
|
gotoOriginal (id) {
|
2017-11-14 08:55:21 +02:00
|
|
|
if (this.inConversation) {
|
2017-11-13 16:33:54 +02:00
|
|
|
this.$emit('goto', id)
|
|
|
|
}
|
2017-04-12 18:25:19 +03:00
|
|
|
},
|
2017-02-04 13:53:28 +01:00
|
|
|
toggleExpanded () {
|
|
|
|
this.$emit('toggleExpanded')
|
2017-02-14 00:01:50 +01:00
|
|
|
},
|
|
|
|
toggleMute () {
|
|
|
|
this.unmuted = !this.unmuted
|
2017-02-16 15:58:49 +01:00
|
|
|
},
|
|
|
|
toggleUserExpanded () {
|
|
|
|
this.userExpanded = !this.userExpanded
|
2017-06-07 17:58:24 +03:00
|
|
|
},
|
2019-01-22 23:57:51 +03:00
|
|
|
generateUserProfileLink (id, name) {
|
2018-12-26 14:50:48 +01:00
|
|
|
return generateProfileLink(id, name, this.$store.state.instance.restrictedNicknames)
|
2020-09-29 10:18:37 +00:00
|
|
|
},
|
|
|
|
addMediaPlaying (id) {
|
|
|
|
this.mediaPlaying.push(id)
|
|
|
|
},
|
|
|
|
removeMediaPlaying (id) {
|
|
|
|
this.mediaPlaying = this.mediaPlaying.filter(mediaId => mediaId !== id)
|
2021-06-11 03:11:58 +03:00
|
|
|
},
|
|
|
|
setHeadTailLinks (headTailLinks) {
|
|
|
|
this.headTailLinks = headTailLinks
|
2021-08-07 00:33:06 -04:00
|
|
|
},
|
|
|
|
toggleThreadDisplay () {
|
|
|
|
this.controlledToggleThreadDisplay()
|
2021-08-07 18:53:23 -04:00
|
|
|
},
|
|
|
|
scrollIfHighlighted (highlightId) {
|
|
|
|
const id = highlightId
|
2017-04-12 19:07:55 +03:00
|
|
|
if (this.status.id === id) {
|
2017-04-12 18:25:19 +03:00
|
|
|
let rect = this.$el.getBoundingClientRect()
|
2017-04-12 19:07:55 +03:00
|
|
|
if (rect.top < 100) {
|
2019-01-30 16:38:28 +02:00
|
|
|
// 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)
|
2017-06-04 23:58:15 +03:00
|
|
|
} else if (rect.bottom > window.innerHeight - 50) {
|
2019-01-30 16:38:28 +02:00
|
|
|
// Post is below screen, match its bottom to screen bottom
|
2017-06-04 23:58:15 +03:00
|
|
|
window.scrollBy(0, rect.bottom - window.innerHeight + 50)
|
2017-04-12 19:07:55 +03:00
|
|
|
}
|
2017-04-12 18:25:19 +03:00
|
|
|
}
|
2021-08-07 18:53:23 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted () {
|
|
|
|
this.scrollIfHighlighted(this.highlight)
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
'highlight': function (id) {
|
|
|
|
this.scrollIfHighlighted(id)
|
2019-06-24 05:19:43 -04:00
|
|
|
},
|
|
|
|
'status.repeat_num': function (num) {
|
2019-06-27 08:19:35 -04:00
|
|
|
// refetch repeats when repeat_num is changed in any way
|
2019-06-24 05:19:43 -04:00
|
|
|
if (this.isFocused && this.statusFromGlobalRepository.rebloggedBy && this.statusFromGlobalRepository.rebloggedBy.length !== num) {
|
2019-06-27 08:14:54 -04:00
|
|
|
this.$store.dispatch('fetchRepeats', this.status.id)
|
2019-06-24 05:19:43 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
'status.fave_num': function (num) {
|
2019-06-27 08:19:35 -04:00
|
|
|
// refetch favs when fave_num is changed in any way
|
2019-06-24 05:19:43 -04:00
|
|
|
if (this.isFocused && this.statusFromGlobalRepository.favoritedBy && this.statusFromGlobalRepository.favoritedBy.length !== num) {
|
2019-06-27 08:14:54 -04:00
|
|
|
this.$store.dispatch('fetchFavs', this.status.id)
|
2019-06-24 05:19:43 -04:00
|
|
|
}
|
2020-09-29 10:18:37 +00:00
|
|
|
},
|
|
|
|
'isSuspendable': function (val) {
|
|
|
|
this.suspendable = val
|
2017-04-12 18:25:19 +03:00
|
|
|
}
|
2018-08-27 12:51:30 +03:00
|
|
|
},
|
|
|
|
filters: {
|
|
|
|
capitalize: function (str) {
|
|
|
|
return str.charAt(0).toUpperCase() + str.slice(1)
|
|
|
|
}
|
2016-10-28 18:08:03 +02:00
|
|
|
}
|
2016-10-28 15:19:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Status
|