yandere_fe/src/components/status/status.js

324 lines
11 KiB
JavaScript
Raw Normal View History

2016-10-30 08:12:35 -07: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 08:59:27 -07:00
import PostStatusForm from '../post_status_form/post_status_form.vue'
2019-03-05 11:01:49 -08:00
import UserCard from '../user_card/user_card.vue'
import UserAvatar from '../user_avatar/user_avatar.vue'
2019-04-01 19:29:45 -07:00
import AvatarList from '../avatar_list/avatar_list.vue'
2019-06-18 13:28:31 -07:00
import Timeago from '../timeago/timeago.vue'
import StatusContent from '../status_content/status_content.vue'
import StatusPopover from '../status_popover/status_popover.vue'
2020-01-14 00:06:14 -08:00
import EmojiReactions from '../emoji_reactions/emoji_reactions.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'
2019-11-13 14:18:14 -08:00
import { mapGetters, mapState } from 'vuex'
2016-10-28 09:08:03 -07:00
2016-10-28 06:19:42 -07:00
const Status = {
2018-04-09 09:43:31 -07:00
name: 'Status',
props: [
'statusoid',
'expandable',
'inConversation',
'focused',
'highlight',
'compact',
2018-04-09 09:43:31 -07:00
'replies',
'isPreview',
2018-04-09 09:43:31 -07:00
'noHeading',
'inlineExpanded',
'showPinned',
'inProfile',
'profileUserId'
],
data () {
return {
2019-03-11 13:24:37 -07:00
replying: false,
unmuted: false,
userExpanded: false,
error: null
}
},
2016-10-28 09:08:03 -07:00
computed: {
muteWords () {
return this.mergedConfig.muteWords
},
showReasonMutedThread () {
return (
this.status.thread_muted ||
(this.status.reblog && this.status.reblog.thread_muted)
) && !this.inConversation
},
2018-06-18 01:36:58 -07:00
repeaterClass () {
const user = this.statusoid.user
return highlightClass(user)
2018-06-18 01:36:58 -07:00
},
2018-04-25 07:35:25 -07:00
userClass () {
2018-06-18 01:36:58 -07:00
const user = this.retweet ? (this.statusoid.retweeted_status.user) : this.statusoid.user
return highlightClass(user)
2018-06-18 01:36:58 -07:00
},
2018-12-04 10:49:00 -08:00
deleted () {
return this.statusoid.deleted
},
2018-06-18 01:36:58 -07:00
repeaterStyle () {
const user = this.statusoid.user
const highlight = this.mergedConfig.highlight
return highlightStyle(highlight[user.screen_name])
2018-06-18 01:36:58 -07:00
},
userStyle () {
if (this.noHeading) return
2018-06-18 01:36:58 -07: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 07:35:25 -07:00
},
userProfileLink () {
return this.generateUserProfileLink(this.status.user.id, this.status.user.screen_name)
},
replyProfileLink () {
if (this.isReply) {
2019-01-30 06:57:19 -08:00
return this.generateUserProfileLink(this.status.in_reply_to_user_id, this.replyToName)
}
},
2016-10-28 09:08:03 -07:00
retweet () { return !!this.statusoid.retweeted_status },
retweeter () { return this.statusoid.user.name || this.statusoid.user.screen_name },
retweeterHtml () { return this.statusoid.user.name_html },
retweeterProfileLink () { return this.generateUserProfileLink(this.statusoid.user.id, this.statusoid.user.screen_name) },
2016-10-28 09:08:03 -07:00
status () {
if (this.retweet) {
return this.statusoid.retweeted_status
} else {
return this.statusoid
}
2016-11-06 11:45:26 -08:00
},
statusFromGlobalRepository () {
// NOTE: Consider to replace status with statusFromGlobalRepository
return this.$store.state.statuses.allStatusesObject[this.status.id]
},
2016-11-06 11:45:26 -08:00
loggedIn () {
2019-11-13 14:18:14 -08:00
return !!this.currentUser
2017-02-13 15:01:50 -08:00
},
muteWordHits () {
return muteWordHits(this.status, this.muteWords)
},
2020-04-21 13:27:51 -07:00
muted () {
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 = (
// Currently showing status
this.unmuted ||
(
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
return !excusesNotToMute && reasonsToMute
2020-04-21 13:27:51 -07:00
},
2019-02-06 10:18:13 -08:00
hideFilteredStatuses () {
return this.mergedConfig.hideFilteredStatuses
2019-02-06 10:18:13 -08:00
},
2019-02-08 04:25:56 -08:00
hideStatus () {
2019-02-08 05:17:20 -08:00
return (this.hideReply || this.deleted) || (this.muted && this.hideFilteredStatuses)
2019-02-08 04:25:56 -08:00
},
isFocused () {
// retweet or root of an expanded conversation
2017-04-12 09:07:55 -07:00
if (this.focused) {
return true
2017-04-12 09:07:55 -07:00
} else if (!this.inConversation) {
return false
2017-04-12 09:07:55 -07:00
}
// use conversation highlight only when in conversation
return this.status.id === this.highlight
2018-04-09 09:43:31 -07: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 09:27:20 -08:00
return this.status.in_reply_to_screen_name
} else {
2019-03-08 15:36:35 -08:00
const user = this.$store.getters.findUser(this.status.in_reply_to_user_id)
return user && user.screen_name
}
},
hideReply () {
if (this.mergedConfig.replyVisibility === 'all') {
return false
}
2019-05-06 13:17:29 -07:00
if (this.inConversation || !this.isReply) {
return false
}
2019-11-13 14:18:14 -08:00
if (this.status.user.id === this.currentUser.id) {
return false
}
2019-01-17 12:44:31 -08:00
if (this.status.type === 'retweet') {
return false
}
const checkFollowing = this.mergedConfig.replyVisibility === 'following'
for (var i = 0; i < this.status.attentions.length; ++i) {
if (this.status.user.id === this.status.attentions[i].id) {
continue
}
2020-04-21 13:27:51 -07:00
// There's zero guarantee of this working. If we happen to have that user and their
// relationship in store then it will work, but there's kinda little chance of having
// them for people you're not following.
const relationship = this.$store.state.users.relationships[this.status.attentions[i].id]
if (checkFollowing && relationship && relationship.following) {
return false
}
2019-11-13 14:18:14 -08:00
if (this.status.attentions[i].id === this.currentUser.id) {
return false
}
}
return this.status.attentions.length > 0
},
2018-08-25 17:50:11 -07:00
replySubject () {
2018-09-25 05:21:47 -07:00
if (!this.status.summary) return ''
2019-02-09 04:13:52 -08:00
const decodedSummary = unescape(this.status.summary)
const behavior = this.mergedConfig.subjectLineBehavior
2019-02-08 08:25:53 -08:00
const startsWithRe = decodedSummary.match(/^re[: ]/i)
2019-07-06 14:54:17 -07:00
if ((behavior !== 'noop' && startsWithRe) || behavior === 'masto') {
2019-02-08 08:25:53 -08:00
return decodedSummary
2018-09-25 05:16:26 -07:00
} else if (behavior === 'email') {
2019-02-08 08:25:53 -08:00
return 're: '.concat(decodedSummary)
2018-09-25 05:16:26 -07:00
} else if (behavior === 'noop') {
return ''
2018-08-25 17:50:11 -07:00
}
},
combinedFavsAndRepeatsUsers () {
// Use the status from the global status repository since favs and repeats are saved in it
const combinedUsers = [].concat(
2019-04-29 12:36:39 -07:00
this.statusFromGlobalRepository.favoritedBy,
this.statusFromGlobalRepository.rebloggedBy
)
return uniqBy(combinedUsers, 'id')
2019-04-04 09:56:13 -07:00
},
tags () {
return this.status.tags.filter(tagObj => tagObj.hasOwnProperty('name')).map(tagObj => tagObj.name).join(' ')
},
hidePostStats () {
return this.mergedConfig.hidePostStats
},
2019-11-13 14:18:14 -08:00
...mapGetters(['mergedConfig']),
...mapState({
betterShadow: state => state.interface.browserSupport.cssFilter,
currentUser: state => state.users.currentUser
})
2016-10-28 09:08:03 -07:00
},
components: {
2016-11-03 08:59:27 -07:00
FavoriteButton,
ReactButton,
RetweetButton,
ExtraButtons,
2017-02-16 06:58:49 -08:00
PostStatusForm,
2019-03-05 11:01:49 -08:00
UserCard,
UserAvatar,
2019-06-18 13:28:31 -07:00
AvatarList,
Timeago,
2020-01-14 00:06:14 -08:00
StatusPopover,
EmojiReactions,
StatusContent
2016-11-03 08:59:27 -07:00
},
methods: {
2018-05-21 15:01:33 -07: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-20 09:28:01 -07:00
}
},
showError (error) {
this.error = error
2019-04-27 06:36:10 -07:00
},
clearError () {
this.error = undefined
},
2016-11-03 08:59:27 -07:00
toggleReplying () {
2019-03-11 13:24:37 -07:00
this.replying = !this.replying
},
gotoOriginal (id) {
if (this.inConversation) {
this.$emit('goto', id)
}
},
toggleExpanded () {
this.$emit('toggleExpanded')
2017-02-13 15:01:50 -08:00
},
toggleMute () {
this.unmuted = !this.unmuted
2017-02-16 06:58:49 -08:00
},
toggleUserExpanded () {
this.userExpanded = !this.userExpanded
},
generateUserProfileLink (id, name) {
return generateProfileLink(id, name, this.$store.state.instance.restrictedNicknames)
2018-08-04 19:44:02 -07:00
}
},
watch: {
2017-04-12 09:07:55 -07:00
'highlight': function (id) {
if (this.status.id === id) {
let rect = this.$el.getBoundingClientRect()
2017-04-12 09:07:55 -07: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 09:07:55 -07:00
}
}
},
'status.repeat_num': function (num) {
2019-06-27 05:19:35 -07: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 05:14:54 -07:00
this.$store.dispatch('fetchRepeats', this.status.id)
}
},
'status.fave_num': function (num) {
2019-06-27 05:19:35 -07: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 05:14:54 -07:00
this.$store.dispatch('fetchFavs', this.status.id)
}
}
2018-08-27 02:51:30 -07:00
},
filters: {
capitalize: function (str) {
return str.charAt(0).toUpperCase() + str.slice(1)
}
2016-10-28 09:08:03 -07:00
}
2016-10-28 06:19:42 -07:00
}
export default Status