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

464 行
16 KiB
JavaScript
Raw 通常表示 履歴

2016-10-29 01:08:03 +09:00
import Attachment from '../attachment/attachment.vue'
2016-10-31 00:12:35 +09: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'
2019-06-19 05:28:31 +09:00
import Poll from '../poll/poll.vue'
import ExtraButtons from '../extra_buttons/extra_buttons.vue'
2016-11-04 00:59:27 +09:00
import PostStatusForm from '../post_status_form/post_status_form.vue'
2019-03-06 04:01:49 +09:00
import UserCard from '../user_card/user_card.vue'
import UserAvatar from '../user_avatar/user_avatar.vue'
2019-01-27 00:45:03 +09:00
import Gallery from '../gallery/gallery.vue'
2019-01-27 22:47:30 +09:00
import LinkPreview from '../link-preview/link-preview.vue'
2019-04-02 11:29:45 +09:00
import AvatarList from '../avatar_list/avatar_list.vue'
2019-06-19 05:28:31 +09:00
import Timeago from '../timeago/timeago.vue'
import StatusPopover from '../status_popover/status_popover.vue'
2020-01-14 17:06:14 +09:00
import EmojiReactions from '../emoji_reactions/emoji_reactions.vue'
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
2019-01-27 00:45:03 +09:00
import fileType from 'src/services/file_type/file_type.service'
2019-11-14 07:18:14 +09:00
import { processHtml } from 'src/services/tiny_post_html_processor/tiny_post_html_processor.service.js'
import { highlightClass, highlightStyle } from '../../services/user_highlighter/user_highlighter.js'
import { mentionMatchesUrl, extractTagFromUrl } from 'src/services/matcher/matcher.service.js'
import { filter, unescape, uniqBy } from 'lodash'
2019-11-14 07:18:14 +09:00
import { mapGetters, mapState } from 'vuex'
2016-10-29 01:08:03 +09:00
2016-10-28 22:19:42 +09:00
const Status = {
2018-04-10 01:43:31 +09:00
name: 'Status',
props: [
'statusoid',
'expandable',
'inConversation',
'focused',
'highlight',
'compact',
2018-04-10 01:43:31 +09:00
'replies',
'isPreview',
2018-04-10 01:43:31 +09:00
'noHeading',
'inlineExpanded',
'showPinned',
'inProfile',
'profileUserId'
],
data () {
return {
2019-03-12 05:24:37 +09:00
replying: false,
unmuted: false,
userExpanded: false,
showingTall: this.inConversation && this.focused,
showingLongSubject: false,
2019-04-08 00:38:16 +09:00
error: null,
2019-11-14 07:41:14 +09:00
// not as computed because it sets the initial state which will be changed later
2019-11-14 07:52:38 +09:00
expandingSubject: !this.$store.getters.mergedConfig.collapseMessageWithSubject
}
},
2016-10-29 01:08:03 +09:00
computed: {
localCollapseSubjectDefault () {
return this.mergedConfig.collapseMessageWithSubject
},
muteWords () {
return this.mergedConfig.muteWords
},
2018-06-18 17:36:58 +09:00
repeaterClass () {
const user = this.statusoid.user
return highlightClass(user)
2018-06-18 17:36:58 +09:00
},
2018-04-25 23:35:25 +09:00
userClass () {
2018-06-18 17:36:58 +09:00
const user = this.retweet ? (this.statusoid.retweeted_status.user) : this.statusoid.user
return highlightClass(user)
2018-06-18 17:36:58 +09:00
},
2018-12-05 03:49:00 +09:00
deleted () {
return this.statusoid.deleted
},
2018-06-18 17:36:58 +09:00
repeaterStyle () {
const user = this.statusoid.user
const highlight = this.mergedConfig.highlight
return highlightStyle(highlight[user.screen_name])
2018-06-18 17:36:58 +09:00
},
userStyle () {
if (this.noHeading) return
2018-06-18 17:36:58 +09: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 23:35:25 +09:00
},
hideAttachments () {
return (this.mergedConfig.hideAttachments && !this.inConversation) ||
(this.mergedConfig.hideAttachmentsInConv && this.inConversation)
},
userProfileLink () {
return this.generateUserProfileLink(this.status.user.id, this.status.user.screen_name)
},
replyProfileLink () {
if (this.isReply) {
2019-01-30 23:57:19 +09:00
return this.generateUserProfileLink(this.status.in_reply_to_user_id, this.replyToName)
}
},
2016-10-29 01:08:03 +09: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-29 01:08:03 +09:00
status () {
if (this.retweet) {
return this.statusoid.retweeted_status
} else {
return this.statusoid
}
2016-11-07 04:45:26 +09:00
},
statusFromGlobalRepository () {
// NOTE: Consider to replace status with statusFromGlobalRepository
return this.$store.state.statuses.allStatusesObject[this.status.id]
},
2016-11-07 04:45:26 +09:00
loggedIn () {
2019-11-14 07:18:14 +09:00
return !!this.currentUser
2017-02-14 08:01:50 +09:00
},
muteWordHits () {
const statusText = this.status.text.toLowerCase()
2019-07-21 02:06:54 +09:00
const statusSummary = this.status.summary.toLowerCase()
const hits = filter(this.muteWords, (muteWord) => {
2019-07-21 02:06:54 +09:00
return statusText.includes(muteWord.toLowerCase()) || statusSummary.includes(muteWord.toLowerCase())
})
return hits
},
muted () { return !this.unmuted && ((!(this.inProfile && this.status.user.id === this.profileUserId) && this.status.user.muted) || (!this.inConversation && this.status.thread_muted) || this.muteWordHits.length > 0) },
2019-02-07 03:18:13 +09:00
hideFilteredStatuses () {
return this.mergedConfig.hideFilteredStatuses
2019-02-07 03:18:13 +09:00
},
2019-02-08 21:25:56 +09:00
hideStatus () {
2019-02-08 22:17:20 +09:00
return (this.hideReply || this.deleted) || (this.muted && this.hideFilteredStatuses)
2019-02-08 21:25:56 +09:00
},
isFocused () {
// retweet or root of an expanded conversation
2017-04-13 01:07:55 +09:00
if (this.focused) {
return true
2017-04-13 01:07:55 +09:00
} else if (!this.inConversation) {
return false
2017-04-13 01:07:55 +09:00
}
// use conversation highlight only when in conversation
return this.status.id === this.highlight
2018-04-10 01:43:31 +09:00
},
// This is a bit hacky, but we want to approximate post height before rendering
// so we count newlines (masto uses <p> for paragraphs, GS uses <br> between them)
// as well as approximate line count by counting characters and approximating ~80
// per line.
//
// Using max-height + overflow: auto for status components resulted in false positives
// very often with japanese characters, and it was very annoying.
tallStatus () {
const lengthScore = this.status.statusnet_html.split(/<p|<br/).length + this.status.text.length / 80
return lengthScore > 20
},
longSubject () {
return this.status.summary.length > 900
},
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-25 02:27:20 +09:00
return this.status.in_reply_to_screen_name
} else {
2019-03-09 08:36:35 +09: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-07 05:17:29 +09:00
if (this.inConversation || !this.isReply) {
return false
}
2019-11-14 07:18:14 +09:00
if (this.status.user.id === this.currentUser.id) {
return false
}
2019-01-18 05:44:31 +09: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
}
const taggedUser = this.$store.getters.findUser(this.status.attentions[i].id)
if (checkFollowing && taggedUser && taggedUser.following) {
return false
}
2019-11-14 07:18:14 +09:00
if (this.status.attentions[i].id === this.currentUser.id) {
return false
}
}
return this.status.attentions.length > 0
},
// When a status has a subject and is also tall, we should only have one show more/less button. If the default is to collapse statuses with subjects, we just treat it like a status with a subject; otherwise, we just treat it like a tall status.
mightHideBecauseSubject () {
return this.status.summary && (!this.tallStatus || this.localCollapseSubjectDefault)
},
mightHideBecauseTall () {
return this.tallStatus && (!this.status.summary || !this.localCollapseSubjectDefault)
},
hideSubjectStatus () {
return this.mightHideBecauseSubject && !this.expandingSubject
},
2018-04-10 01:43:31 +09:00
hideTallStatus () {
return this.mightHideBecauseTall && !this.showingTall
},
showingMore () {
return (this.mightHideBecauseTall && this.showingTall) || (this.mightHideBecauseSubject && this.expandingSubject)
2018-04-10 01:43:31 +09:00
},
nsfwClickthrough () {
if (!this.status.nsfw) {
return false
}
if (this.status.summary && this.localCollapseSubjectDefault) {
return false
}
return true
},
2018-08-26 09:50:11 +09:00
replySubject () {
2018-09-25 21:21:47 +09:00
if (!this.status.summary) return ''
2019-02-09 21:13:52 +09:00
const decodedSummary = unescape(this.status.summary)
const behavior = this.mergedConfig.subjectLineBehavior
2019-02-09 01:25:53 +09:00
const startsWithRe = decodedSummary.match(/^re[: ]/i)
2019-07-07 06:54:17 +09:00
if ((behavior !== 'noop' && startsWithRe) || behavior === 'masto') {
2019-02-09 01:25:53 +09:00
return decodedSummary
2018-09-25 21:16:26 +09:00
} else if (behavior === 'email') {
2019-02-09 01:25:53 +09:00
return 're: '.concat(decodedSummary)
2018-09-25 21:16:26 +09:00
} else if (behavior === 'noop') {
return ''
2018-08-26 09:50:11 +09:00
}
},
2018-04-10 01:43:31 +09:00
attachmentSize () {
if ((this.mergedConfig.hideAttachments && !this.inConversation) ||
(this.mergedConfig.hideAttachmentsInConv && this.inConversation) ||
(this.status.attachments.length > this.maxThumbnails)) {
2018-04-10 01:43:31 +09:00
return 'hide'
} else if (this.compact) {
return 'small'
}
return 'normal'
2019-01-27 00:45:03 +09:00
},
galleryTypes () {
if (this.attachmentSize === 'hide') {
return []
}
return this.mergedConfig.playVideosInModal
? ['image', 'video']
: ['image']
2019-01-27 00:45:03 +09:00
},
galleryAttachments () {
return this.status.attachments.filter(
file => fileType.fileMatchesSomeType(this.galleryTypes, file)
)
},
nonGalleryAttachments () {
return this.status.attachments.filter(
file => !fileType.fileMatchesSomeType(this.galleryTypes, file)
)
},
hasImageAttachments () {
return this.status.attachments.some(
file => fileType.fileType(file.mimetype) === 'image'
)
},
hasVideoAttachments () {
return this.status.attachments.some(
file => fileType.fileType(file.mimetype) === 'video'
)
},
maxThumbnails () {
return this.mergedConfig.maxThumbnails
},
2019-11-14 07:18:14 +09:00
postBodyHtml () {
const html = this.status.statusnet_html
2019-11-14 07:47:20 +09:00
if (this.mergedConfig.greentext) {
try {
if (html.includes('&gt;')) {
// This checks if post has '>' at the beginning, excluding mentions so that @mention >impying works
return processHtml(html, (string) => {
if (string.includes('&gt;') &&
string
2019-11-14 07:52:38 +09:00
.replace(/<[^>]+?>/gi, '') // remove all tags
.replace(/@\w+/gi, '') // remove mentions (even failed ones)
.trim()
.startsWith('&gt;')) {
2019-11-14 07:47:20 +09:00
return `<span class='greentext'>${string}</span>`
} else {
return string
}
})
} else {
return html
}
} catch (e) {
console.err('Failed to process status html', e)
2019-11-14 07:18:14 +09:00
return html
}
2019-11-14 07:47:20 +09:00
} else {
2019-11-14 07:18:14 +09:00
return html
}
},
contentHtml () {
2019-04-02 02:01:28 +09:00
if (!this.status.summary_html) {
2019-11-14 07:18:14 +09:00
return this.postBodyHtml
2019-04-02 02:01:28 +09:00
}
2019-11-14 07:18:14 +09:00
return this.status.summary_html + '<br />' + this.postBodyHtml
2019-04-02 11:29:45 +09:00
},
combinedFavsAndRepeatsUsers () {
// Use the status from the global status repository since favs and repeats are saved in it
const combinedUsers = [].concat(
2019-04-30 04:36:39 +09:00
this.statusFromGlobalRepository.favoritedBy,
this.statusFromGlobalRepository.rebloggedBy
)
return uniqBy(combinedUsers, 'id')
2019-04-05 01:56:13 +09:00
},
ownStatus () {
2019-11-14 07:18:14 +09:00
return this.status.user.id === this.currentUser.id
},
tags () {
return this.status.tags.filter(tagObj => tagObj.hasOwnProperty('name')).map(tagObj => tagObj.name).join(' ')
},
hidePostStats () {
return this.mergedConfig.hidePostStats
},
2019-11-14 07:18:14 +09:00
...mapGetters(['mergedConfig']),
...mapState({
betterShadow: state => state.interface.browserSupport.cssFilter,
currentUser: state => state.users.currentUser
})
2016-10-29 01:08:03 +09:00
},
components: {
2016-10-31 00:12:35 +09:00
Attachment,
2016-11-04 00:59:27 +09:00
FavoriteButton,
ReactButton,
RetweetButton,
ExtraButtons,
2017-02-16 23:58:49 +09:00
PostStatusForm,
2019-06-19 05:28:31 +09:00
Poll,
2019-03-06 04:01:49 +09:00
UserCard,
UserAvatar,
Gallery,
2019-04-02 11:29:45 +09:00
LinkPreview,
2019-06-19 05:28:31 +09:00
AvatarList,
Timeago,
2020-01-14 17:06:14 +09:00
StatusPopover,
EmojiReactions
2016-11-04 00:59:27 +09:00
},
methods: {
2018-05-22 07:01:33 +09: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 01:28:01 +09:00
}
},
showError (error) {
this.error = error
2019-04-27 22:36:10 +09:00
},
clearError () {
this.error = undefined
},
linkClicked (event) {
2019-07-24 09:59:37 +09:00
const target = event.target.closest('.status-content a')
2019-07-24 04:43:03 +09:00
if (target) {
if (target.className.match(/mention/)) {
const href = target.href
const attn = this.status.attentions.find(attn => mentionMatchesUrl(attn, href))
if (attn) {
event.stopPropagation()
event.preventDefault()
const link = this.generateUserProfileLink(attn.id, attn.screen_name)
this.$router.push(link)
return
}
}
if (target.rel.match(/(?:^|\s)tag(?:$|\s)/) || target.className.match(/hashtag/)) {
// Extract tag name from link url
const tag = extractTagFromUrl(target.href)
if (tag) {
const link = this.generateTagLink(tag)
this.$router.push(link)
2019-02-11 23:45:22 +09:00
return
}
}
window.open(target.href, '_blank')
}
},
2016-11-04 00:59:27 +09:00
toggleReplying () {
2019-03-12 05:24:37 +09:00
this.replying = !this.replying
},
gotoOriginal (id) {
if (this.inConversation) {
this.$emit('goto', id)
}
},
toggleExpanded () {
this.$emit('toggleExpanded')
2017-02-14 08:01:50 +09:00
},
toggleMute () {
this.unmuted = !this.unmuted
2017-02-16 23:58:49 +09:00
},
toggleUserExpanded () {
this.userExpanded = !this.userExpanded
},
toggleShowMore () {
if (this.mightHideBecauseTall) {
this.showingTall = !this.showingTall
} else if (this.mightHideBecauseSubject) {
this.expandingSubject = !this.expandingSubject
}
2018-04-10 01:43:31 +09:00
},
generateUserProfileLink (id, name) {
return generateProfileLink(id, name, this.$store.state.instance.restrictedNicknames)
},
generateTagLink (tag) {
return `/tag/${tag}`
},
setMedia () {
2019-01-27 00:45:03 +09:00
const attachments = this.attachmentSize === 'hide' ? this.status.attachments : this.galleryAttachments
return () => this.$store.dispatch('setMedia', attachments)
2018-08-05 11:44:02 +09:00
}
},
watch: {
2017-04-13 01:07:55 +09:00
'highlight': function (id) {
if (this.status.id === id) {
let rect = this.$el.getBoundingClientRect()
2017-04-13 01:07:55 +09: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-13 01:07:55 +09:00
}
}
},
'status.repeat_num': function (num) {
2019-06-27 21:19:35 +09: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 21:14:54 +09:00
this.$store.dispatch('fetchRepeats', this.status.id)
}
},
'status.fave_num': function (num) {
2019-06-27 21:19:35 +09: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 21:14:54 +09:00
this.$store.dispatch('fetchFavs', this.status.id)
}
}
2018-08-27 18:51:30 +09:00
},
filters: {
capitalize: function (str) {
return str.charAt(0).toUpperCase() + str.slice(1)
}
2016-10-29 01:08:03 +09:00
}
2016-10-28 22:19:42 +09:00
}
export default Status