2016-10-31 02:12:35 +11:00
|
|
|
import FavoriteButton from '../favorite_button/favorite_button.vue'
|
2019-11-16 01:29:25 +11:00
|
|
|
import ReactButton from '../react_button/react_button.vue'
|
2016-11-14 02:42:56 +11:00
|
|
|
import RetweetButton from '../retweet_button/retweet_button.vue'
|
2019-04-13 05:35:29 +10:00
|
|
|
import ExtraButtons from '../extra_buttons/extra_buttons.vue'
|
2016-11-04 02:59:27 +11:00
|
|
|
import PostStatusForm from '../post_status_form/post_status_form.vue'
|
2019-03-06 06:01:49 +11:00
|
|
|
import UserCard from '../user_card/user_card.vue'
|
2019-02-03 06:11:36 +11:00
|
|
|
import UserAvatar from '../user_avatar/user_avatar.vue'
|
2019-04-02 13:29:45 +11:00
|
|
|
import AvatarList from '../avatar_list/avatar_list.vue'
|
2019-06-19 06:28:31 +10:00
|
|
|
import Timeago from '../timeago/timeago.vue'
|
2020-04-27 19:53:04 +10:00
|
|
|
import StatusContent from '../status_content/status_content.vue'
|
2019-10-25 07:53:36 +11:00
|
|
|
import StatusPopover from '../status_popover/status_popover.vue'
|
2020-01-14 19:06:14 +11:00
|
|
|
import EmojiReactions from '../emoji_reactions/emoji_reactions.vue'
|
2018-12-14 03:57:11 +11:00
|
|
|
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
|
2019-01-31 05:49:24 +11:00
|
|
|
import { highlightClass, highlightStyle } from '../../services/user_highlighter/user_highlighter.js'
|
2020-05-26 06:38:31 +10:00
|
|
|
import { muteWordHits } from '../../services/status_parser/status_parser.js'
|
|
|
|
import { unescape, uniqBy } from 'lodash'
|
2019-11-14 09:18:14 +11:00
|
|
|
import { mapGetters, mapState } from 'vuex'
|
2016-10-29 03:08:03 +11:00
|
|
|
|
2016-10-29 00:19:42 +11:00
|
|
|
const Status = {
|
2018-04-10 02:43:31 +10:00
|
|
|
name: 'Status',
|
2017-02-04 23:53:28 +11:00
|
|
|
props: [
|
|
|
|
'statusoid',
|
2019-05-07 11:36:55 +10:00
|
|
|
'expandable',
|
2017-03-09 19:19:40 +11:00
|
|
|
'inConversation',
|
2017-04-13 01:25:19 +10:00
|
|
|
'focused',
|
2017-05-31 18:47:18 +10:00
|
|
|
'highlight',
|
2017-06-05 06:58:15 +10:00
|
|
|
'compact',
|
2018-04-10 02:43:31 +10:00
|
|
|
'replies',
|
2019-03-03 03:35:38 +11:00
|
|
|
'isPreview',
|
2018-04-10 02:43:31 +10:00
|
|
|
'noHeading',
|
2019-05-01 01:06:22 +10:00
|
|
|
'inlineExpanded',
|
2019-09-14 05:34:17 +10:00
|
|
|
'showPinned',
|
2019-11-26 04:25:01 +11:00
|
|
|
'inProfile',
|
|
|
|
'profileUserId'
|
2017-02-04 23:53:28 +11:00
|
|
|
],
|
2018-08-20 11:59:06 +10:00
|
|
|
data () {
|
|
|
|
return {
|
2019-03-12 07:24:37 +11:00
|
|
|
replying: false,
|
2018-08-20 11:59:06 +10:00
|
|
|
unmuted: false,
|
|
|
|
userExpanded: false,
|
2020-04-27 19:53:04 +10:00
|
|
|
error: null
|
2018-08-20 11:59:06 +10:00
|
|
|
}
|
|
|
|
},
|
2016-10-29 03:08:03 +11:00
|
|
|
computed: {
|
2017-04-09 23:53:23 +10:00
|
|
|
muteWords () {
|
2019-09-30 05:33:15 +10:00
|
|
|
return this.mergedConfig.muteWords
|
2017-04-09 23:53:23 +10:00
|
|
|
},
|
2020-05-26 06:38:31 +10:00
|
|
|
showReasonMutedThread () {
|
|
|
|
return (
|
|
|
|
this.status.thread_muted ||
|
|
|
|
(this.status.reblog && this.status.reblog.thread_muted)
|
|
|
|
) && !this.inConversation
|
|
|
|
},
|
2018-06-18 18:36:58 +10:00
|
|
|
repeaterClass () {
|
|
|
|
const user = this.statusoid.user
|
2018-06-19 23:17:50 +10:00
|
|
|
return highlightClass(user)
|
2018-06-18 18:36:58 +10:00
|
|
|
},
|
2018-04-26 00:35:25 +10:00
|
|
|
userClass () {
|
2018-06-18 18:36:58 +10:00
|
|
|
const user = this.retweet ? (this.statusoid.retweeted_status.user) : this.statusoid.user
|
2018-06-19 23:17:50 +10:00
|
|
|
return highlightClass(user)
|
2018-06-18 18:36:58 +10:00
|
|
|
},
|
2018-12-05 05:49:00 +11:00
|
|
|
deleted () {
|
2018-12-05 05:45:08 +11:00
|
|
|
return this.statusoid.deleted
|
|
|
|
},
|
2018-06-18 18:36:58 +10:00
|
|
|
repeaterStyle () {
|
|
|
|
const user = this.statusoid.user
|
2019-09-30 05:33:15 +10:00
|
|
|
const highlight = this.mergedConfig.highlight
|
2018-08-05 12:18:04 +10:00
|
|
|
return highlightStyle(highlight[user.screen_name])
|
2018-06-18 18:36:58 +10:00
|
|
|
},
|
|
|
|
userStyle () {
|
2018-08-05 12:41:37 +10:00
|
|
|
if (this.noHeading) return
|
2018-06-18 18:36:58 +10:00
|
|
|
const user = this.retweet ? (this.statusoid.retweeted_status.user) : this.statusoid.user
|
2019-09-30 05:33:15 +10:00
|
|
|
const highlight = this.mergedConfig.highlight
|
2018-08-05 12:18:04 +10:00
|
|
|
return highlightStyle(highlight[user.screen_name])
|
2018-04-26 00:35:25 +10:00
|
|
|
},
|
2019-01-23 07:57:51 +11:00
|
|
|
userProfileLink () {
|
|
|
|
return this.generateUserProfileLink(this.status.user.id, this.status.user.screen_name)
|
|
|
|
},
|
|
|
|
replyProfileLink () {
|
|
|
|
if (this.isReply) {
|
2019-01-31 01:57:19 +11:00
|
|
|
return this.generateUserProfileLink(this.status.in_reply_to_user_id, this.replyToName)
|
2019-01-23 07:57:51 +11:00
|
|
|
}
|
|
|
|
},
|
2016-10-29 03:08:03 +11:00
|
|
|
retweet () { return !!this.statusoid.retweeted_status },
|
2019-02-02 09:40:06 +11:00
|
|
|
retweeter () { return this.statusoid.user.name || this.statusoid.user.screen_name },
|
2018-08-09 19:52:34 +10:00
|
|
|
retweeterHtml () { return this.statusoid.user.name_html },
|
2019-02-04 06:08:04 +11:00
|
|
|
retweeterProfileLink () { return this.generateUserProfileLink(this.statusoid.user.id, this.statusoid.user.screen_name) },
|
2016-10-29 03:08:03 +11:00
|
|
|
status () {
|
|
|
|
if (this.retweet) {
|
|
|
|
return this.statusoid.retweeted_status
|
|
|
|
} else {
|
|
|
|
return this.statusoid
|
|
|
|
}
|
2016-11-07 06:45:26 +11:00
|
|
|
},
|
2019-04-10 01:45:33 +10:00
|
|
|
statusFromGlobalRepository () {
|
|
|
|
// NOTE: Consider to replace status with statusFromGlobalRepository
|
|
|
|
return this.$store.state.statuses.allStatusesObject[this.status.id]
|
|
|
|
},
|
2016-11-07 06:45:26 +11:00
|
|
|
loggedIn () {
|
2019-11-14 09:18:14 +11:00
|
|
|
return !!this.currentUser
|
2017-02-14 10:01:50 +11:00
|
|
|
},
|
2017-04-09 23:53:23 +10:00
|
|
|
muteWordHits () {
|
2020-05-26 06:38:31 +10:00
|
|
|
return muteWordHits(this.status, this.muteWords)
|
2017-04-09 23:53:23 +10:00
|
|
|
},
|
2020-04-22 06:27:51 +10:00
|
|
|
muted () {
|
2020-05-26 06:38:31 +10: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)
|
|
|
|
const reasonsToMute = (
|
|
|
|
// Post is muted according to BE
|
|
|
|
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) ||
|
|
|
|
// Thread is muted
|
|
|
|
status.thread_muted ||
|
|
|
|
// Wordfiltered
|
|
|
|
this.muteWordHits.length > 0
|
|
|
|
)
|
|
|
|
const excusesNotToMute = (
|
|
|
|
(
|
|
|
|
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
|
|
|
|
|
2020-05-26 08:01:25 +10:00
|
|
|
return !this.unmuted && !excusesNotToMute && reasonsToMute
|
2020-04-22 06:27:51 +10:00
|
|
|
},
|
2019-02-07 05:18:13 +11:00
|
|
|
hideFilteredStatuses () {
|
2019-09-30 05:33:15 +10:00
|
|
|
return this.mergedConfig.hideFilteredStatuses
|
2019-02-07 05:18:13 +11:00
|
|
|
},
|
2019-02-08 23:25:56 +11:00
|
|
|
hideStatus () {
|
2020-07-01 00:02:38 +10:00
|
|
|
return this.deleted || (this.muted && this.hideFilteredStatuses)
|
2019-02-08 23:25:56 +11:00
|
|
|
},
|
2017-04-13 01:25:19 +10:00
|
|
|
isFocused () {
|
|
|
|
// retweet or root of an expanded conversation
|
2017-04-13 02:07:55 +10:00
|
|
|
if (this.focused) {
|
2017-04-13 01:25:19 +10:00
|
|
|
return true
|
2017-04-13 02:07:55 +10:00
|
|
|
} else if (!this.inConversation) {
|
2017-04-13 01:25:19 +10:00
|
|
|
return false
|
2017-04-13 02:07:55 +10:00
|
|
|
}
|
|
|
|
// use conversation highlight only when in conversation
|
|
|
|
return this.status.id === this.highlight
|
2018-04-10 02:43:31 +10:00
|
|
|
},
|
2018-08-25 05:04:26 +10:00
|
|
|
isReply () {
|
2019-01-27 20:31:23 +11:00
|
|
|
return !!(this.status.in_reply_to_status_id && this.status.in_reply_to_user_id)
|
2018-08-25 05:04:26 +10:00
|
|
|
},
|
2019-01-23 07:57:51 +11:00
|
|
|
replyToName () {
|
2019-03-09 10:34:15 +11:00
|
|
|
if (this.status.in_reply_to_screen_name) {
|
2019-01-25 04:27:20 +11:00
|
|
|
return this.status.in_reply_to_screen_name
|
2019-03-09 10:34:15 +11:00
|
|
|
} else {
|
2019-03-09 10:36:35 +11:00
|
|
|
const user = this.$store.getters.findUser(this.status.in_reply_to_user_id)
|
|
|
|
return user && user.screen_name
|
2019-01-23 07:57:51 +11:00
|
|
|
}
|
|
|
|
},
|
2018-08-26 10:50:11 +10:00
|
|
|
replySubject () {
|
2018-09-25 22:21:47 +10:00
|
|
|
if (!this.status.summary) return ''
|
2019-02-09 23:13:52 +11:00
|
|
|
const decodedSummary = unescape(this.status.summary)
|
2019-09-30 05:33:15 +10:00
|
|
|
const behavior = this.mergedConfig.subjectLineBehavior
|
2019-02-09 03:25:53 +11:00
|
|
|
const startsWithRe = decodedSummary.match(/^re[: ]/i)
|
2019-07-07 07:54:17 +10:00
|
|
|
if ((behavior !== 'noop' && startsWithRe) || behavior === 'masto') {
|
2019-02-09 03:25:53 +11:00
|
|
|
return decodedSummary
|
2018-09-25 22:16:26 +10:00
|
|
|
} else if (behavior === 'email') {
|
2019-02-09 03:25:53 +11:00
|
|
|
return 're: '.concat(decodedSummary)
|
2018-09-25 22:16:26 +10:00
|
|
|
} else if (behavior === 'noop') {
|
|
|
|
return ''
|
2018-08-26 10:50:11 +10:00
|
|
|
}
|
|
|
|
},
|
2019-05-02 00:33:56 +10:00
|
|
|
combinedFavsAndRepeatsUsers () {
|
2019-04-10 01:45:33 +10:00
|
|
|
// Use the status from the global status repository since favs and repeats are saved in it
|
2019-05-02 00:33:56 +10:00
|
|
|
const combinedUsers = [].concat(
|
2019-04-30 05:36:39 +10:00
|
|
|
this.statusFromGlobalRepository.favoritedBy,
|
|
|
|
this.statusFromGlobalRepository.rebloggedBy
|
|
|
|
)
|
2019-05-02 00:33:56 +10:00
|
|
|
return uniqBy(combinedUsers, 'id')
|
2019-04-05 03:56:13 +11:00
|
|
|
},
|
2019-05-21 05:23:36 +10:00
|
|
|
tags () {
|
|
|
|
return this.status.tags.filter(tagObj => tagObj.hasOwnProperty('name')).map(tagObj => tagObj.name).join(' ')
|
2019-07-09 23:50:23 +10:00
|
|
|
},
|
|
|
|
hidePostStats () {
|
2019-09-30 05:33:15 +10:00
|
|
|
return this.mergedConfig.hidePostStats
|
|
|
|
},
|
2019-11-14 09:18:14 +11:00
|
|
|
...mapGetters(['mergedConfig']),
|
|
|
|
...mapState({
|
|
|
|
betterShadow: state => state.interface.browserSupport.cssFilter,
|
|
|
|
currentUser: state => state.users.currentUser
|
|
|
|
})
|
2016-10-29 03:08:03 +11:00
|
|
|
},
|
|
|
|
components: {
|
2016-11-04 02:59:27 +11:00
|
|
|
FavoriteButton,
|
2019-11-16 01:29:25 +11:00
|
|
|
ReactButton,
|
2016-11-14 02:42:56 +11:00
|
|
|
RetweetButton,
|
2019-04-13 05:35:29 +10:00
|
|
|
ExtraButtons,
|
2017-02-17 01:58:49 +11:00
|
|
|
PostStatusForm,
|
2019-03-06 06:01:49 +11:00
|
|
|
UserCard,
|
2019-02-03 06:11:36 +11:00
|
|
|
UserAvatar,
|
2019-06-19 06:28:31 +10:00
|
|
|
AvatarList,
|
2019-10-25 07:53:36 +11:00
|
|
|
Timeago,
|
2020-01-14 19:06:14 +11:00
|
|
|
StatusPopover,
|
2020-04-27 19:53:04 +10:00
|
|
|
EmojiReactions,
|
|
|
|
StatusContent
|
2016-11-04 02:59:27 +11:00
|
|
|
},
|
|
|
|
methods: {
|
2018-05-22 08:01:33 +10:00
|
|
|
visibilityIcon (visibility) {
|
|
|
|
switch (visibility) {
|
|
|
|
case 'private':
|
|
|
|
return 'icon-lock'
|
|
|
|
case 'unlisted':
|
|
|
|
return 'icon-lock-open-alt'
|
|
|
|
case 'direct':
|
|
|
|
return 'icon-mail-alt'
|
|
|
|
default:
|
|
|
|
return 'icon-globe'
|
2018-05-21 02:28:01 +10:00
|
|
|
}
|
|
|
|
},
|
2019-04-13 05:35:29 +10:00
|
|
|
showError (error) {
|
|
|
|
this.error = error
|
2019-04-27 23:36:10 +10:00
|
|
|
},
|
|
|
|
clearError () {
|
|
|
|
this.error = undefined
|
2019-04-13 05:35:29 +10:00
|
|
|
},
|
2016-11-04 02:59:27 +11:00
|
|
|
toggleReplying () {
|
2019-03-12 07:24:37 +11:00
|
|
|
this.replying = !this.replying
|
2017-02-04 23:53:28 +11:00
|
|
|
},
|
2017-06-05 06:58:15 +10:00
|
|
|
gotoOriginal (id) {
|
2017-11-14 17:55:21 +11:00
|
|
|
if (this.inConversation) {
|
2017-11-14 01:33:54 +11:00
|
|
|
this.$emit('goto', id)
|
|
|
|
}
|
2017-04-13 01:25:19 +10:00
|
|
|
},
|
2017-02-04 23:53:28 +11:00
|
|
|
toggleExpanded () {
|
|
|
|
this.$emit('toggleExpanded')
|
2017-02-14 10:01:50 +11:00
|
|
|
},
|
|
|
|
toggleMute () {
|
|
|
|
this.unmuted = !this.unmuted
|
2017-02-17 01:58:49 +11:00
|
|
|
},
|
|
|
|
toggleUserExpanded () {
|
|
|
|
this.userExpanded = !this.userExpanded
|
2017-06-08 00:58:24 +10:00
|
|
|
},
|
2019-01-23 07:57:51 +11:00
|
|
|
generateUserProfileLink (id, name) {
|
2018-12-27 00:50:48 +11:00
|
|
|
return generateProfileLink(id, name, this.$store.state.instance.restrictedNicknames)
|
2018-08-05 12:44:02 +10:00
|
|
|
}
|
2017-04-13 01:25:19 +10:00
|
|
|
},
|
|
|
|
watch: {
|
2017-04-13 02:07:55 +10:00
|
|
|
'highlight': function (id) {
|
|
|
|
if (this.status.id === id) {
|
2017-04-13 01:25:19 +10:00
|
|
|
let rect = this.$el.getBoundingClientRect()
|
2017-04-13 02:07:55 +10:00
|
|
|
if (rect.top < 100) {
|
2019-01-31 01:38:28 +11: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-05 06:58:15 +10:00
|
|
|
} else if (rect.bottom > window.innerHeight - 50) {
|
2019-01-31 01:38:28 +11:00
|
|
|
// Post is below screen, match its bottom to screen bottom
|
2017-06-05 06:58:15 +10:00
|
|
|
window.scrollBy(0, rect.bottom - window.innerHeight + 50)
|
2017-04-13 02:07:55 +10:00
|
|
|
}
|
2017-04-13 01:25:19 +10:00
|
|
|
}
|
2019-06-24 19:19:43 +10:00
|
|
|
},
|
|
|
|
'status.repeat_num': function (num) {
|
2019-06-27 22:19:35 +10:00
|
|
|
// refetch repeats when repeat_num is changed in any way
|
2019-06-24 19:19:43 +10:00
|
|
|
if (this.isFocused && this.statusFromGlobalRepository.rebloggedBy && this.statusFromGlobalRepository.rebloggedBy.length !== num) {
|
2019-06-27 22:14:54 +10:00
|
|
|
this.$store.dispatch('fetchRepeats', this.status.id)
|
2019-06-24 19:19:43 +10:00
|
|
|
}
|
|
|
|
},
|
|
|
|
'status.fave_num': function (num) {
|
2019-06-27 22:19:35 +10:00
|
|
|
// refetch favs when fave_num is changed in any way
|
2019-06-24 19:19:43 +10:00
|
|
|
if (this.isFocused && this.statusFromGlobalRepository.favoritedBy && this.statusFromGlobalRepository.favoritedBy.length !== num) {
|
2019-06-27 22:14:54 +10:00
|
|
|
this.$store.dispatch('fetchFavs', this.status.id)
|
2019-06-24 19:19:43 +10:00
|
|
|
}
|
2017-04-13 01:25:19 +10:00
|
|
|
}
|
2018-08-27 19:51:30 +10:00
|
|
|
},
|
|
|
|
filters: {
|
|
|
|
capitalize: function (str) {
|
|
|
|
return str.charAt(0).toUpperCase() + str.slice(1)
|
|
|
|
}
|
2016-10-29 03:08:03 +11:00
|
|
|
}
|
2016-10-29 00:19:42 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Status
|