2016-10-28 16:08:03 +00:00
|
|
|
import Attachment from '../attachment/attachment.vue'
|
2016-10-30 15:12:35 +00:00
|
|
|
import FavoriteButton from '../favorite_button/favorite_button.vue'
|
2016-11-13 15:42:56 +00:00
|
|
|
import RetweetButton from '../retweet_button/retweet_button.vue'
|
2016-12-07 20:50:46 +00:00
|
|
|
import DeleteButton from '../delete_button/delete_button.vue'
|
2016-11-03 15:59:27 +00:00
|
|
|
import PostStatusForm from '../post_status_form/post_status_form.vue'
|
2017-02-16 14:58:49 +00:00
|
|
|
import UserCardContent from '../user_card_content/user_card_content.vue'
|
2018-02-03 16:55:45 +00:00
|
|
|
import StillImage from '../still-image/still-image.vue'
|
2017-11-13 14:33:54 +00:00
|
|
|
import { filter, find } from 'lodash'
|
2018-06-18 09:09:14 +00:00
|
|
|
import { highlightClass, highlightStyle } from '../../services/user_highlighter/user_highlighter.js'
|
2016-10-28 16:08:03 +00:00
|
|
|
|
2016-10-28 13:19:42 +00:00
|
|
|
const Status = {
|
2018-04-09 16:43:31 +00:00
|
|
|
name: 'Status',
|
2017-02-04 12:53:28 +00:00
|
|
|
props: [
|
|
|
|
'statusoid',
|
2017-03-05 13:34:14 +00:00
|
|
|
'expandable',
|
2017-03-09 08:19:40 +00:00
|
|
|
'inConversation',
|
2017-04-12 15:25:19 +00:00
|
|
|
'focused',
|
2017-05-31 08:47:18 +00:00
|
|
|
'highlight',
|
2017-06-04 20:58:15 +00:00
|
|
|
'compact',
|
2018-04-09 16:43:31 +00:00
|
|
|
'replies',
|
|
|
|
'noReplyLinks',
|
|
|
|
'noHeading',
|
|
|
|
'inlineExpanded'
|
2017-02-04 12:53:28 +00:00
|
|
|
],
|
2018-08-20 01:59:06 +00:00
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
replying: false,
|
|
|
|
expanded: false,
|
|
|
|
unmuted: false,
|
|
|
|
userExpanded: false,
|
|
|
|
preview: null,
|
|
|
|
showPreview: false,
|
|
|
|
showingTall: false,
|
2018-08-20 02:41:40 +00:00
|
|
|
expandingSubject: !this.$store.state.config.collapseMessageWithSubject
|
2018-08-20 01:59:06 +00:00
|
|
|
}
|
|
|
|
},
|
2016-10-28 16:08:03 +00:00
|
|
|
computed: {
|
2017-04-09 13:53:23 +00:00
|
|
|
muteWords () {
|
|
|
|
return this.$store.state.config.muteWords
|
|
|
|
},
|
2018-06-18 08:36:58 +00:00
|
|
|
repeaterClass () {
|
|
|
|
const user = this.statusoid.user
|
2018-06-19 13:17:50 +00:00
|
|
|
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
|
2018-06-19 13:17:50 +00:00
|
|
|
return highlightClass(user)
|
2018-06-18 08:36:58 +00:00
|
|
|
},
|
|
|
|
repeaterStyle () {
|
|
|
|
const user = this.statusoid.user
|
2018-06-19 13:17:50 +00:00
|
|
|
const highlight = this.$store.state.config.highlight
|
2018-08-05 02:18:04 +00:00
|
|
|
return highlightStyle(highlight[user.screen_name])
|
2018-06-18 08:36:58 +00:00
|
|
|
},
|
|
|
|
userStyle () {
|
2018-08-05 02:41:37 +00:00
|
|
|
if (this.noHeading) return
|
2018-06-18 08:36:58 +00:00
|
|
|
const user = this.retweet ? (this.statusoid.retweeted_status.user) : this.statusoid.user
|
2018-06-19 13:17:50 +00:00
|
|
|
const highlight = this.$store.state.config.highlight
|
2018-08-05 02:18:04 +00:00
|
|
|
return highlightStyle(highlight[user.screen_name])
|
2018-04-25 14:35:25 +00:00
|
|
|
},
|
2017-03-04 20:25:59 +00:00
|
|
|
hideAttachments () {
|
2017-03-05 13:34:14 +00:00
|
|
|
return (this.$store.state.config.hideAttachments && !this.inConversation) ||
|
|
|
|
(this.$store.state.config.hideAttachmentsInConv && this.inConversation)
|
2017-03-04 20:25:59 +00:00
|
|
|
},
|
2016-10-28 16:08:03 +00:00
|
|
|
retweet () { return !!this.statusoid.retweeted_status },
|
|
|
|
retweeter () { return this.statusoid.user.name },
|
2018-08-09 09:52:34 +00:00
|
|
|
retweeterHtml () { return this.statusoid.user.name_html },
|
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
|
|
|
},
|
|
|
|
loggedIn () {
|
|
|
|
return !!this.$store.state.users.currentUser
|
2017-02-13 23:01:50 +00:00
|
|
|
},
|
2017-04-09 13:53:23 +00:00
|
|
|
muteWordHits () {
|
|
|
|
const statusText = this.status.text.toLowerCase()
|
|
|
|
const hits = filter(this.muteWords, (muteWord) => {
|
|
|
|
return statusText.includes(muteWord.toLowerCase())
|
|
|
|
})
|
|
|
|
|
|
|
|
return hits
|
|
|
|
},
|
|
|
|
muted () { return !this.unmuted && (this.status.user.muted || this.muteWordHits.length > 0) },
|
2017-04-12 15:25:19 +00:00
|
|
|
isFocused () {
|
|
|
|
// retweet or root of an expanded conversation
|
2017-04-12 16:07:55 +00:00
|
|
|
if (this.focused) {
|
2017-04-12 15:25:19 +00:00
|
|
|
return true
|
2017-04-12 16:07:55 +00:00
|
|
|
} else if (!this.inConversation) {
|
2017-04-12 15:25:19 +00:00
|
|
|
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
|
|
|
},
|
|
|
|
// 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.
|
2018-08-20 01:59:06 +00:00
|
|
|
tallStatus () {
|
|
|
|
const lengthScore = this.status.statusnet_html.split(/<p|<br/).length + this.status.text.length / 80
|
|
|
|
return lengthScore > 20
|
|
|
|
},
|
2018-08-24 19:04:26 +00:00
|
|
|
isReply () {
|
|
|
|
if (this.status.in_reply_to_status_id) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
// For private replies where we can't see the OP, in_reply_to_status_id will be null.
|
|
|
|
// So instead, check that the post starts with a @mention.
|
|
|
|
if (this.status.visibility === 'private') {
|
|
|
|
var textBody = this.status.text
|
|
|
|
if (this.status.summary !== null) {
|
2018-08-24 19:19:22 +00:00
|
|
|
textBody = textBody.substring(this.status.summary.length, textBody.length)
|
2018-08-24 19:04:26 +00:00
|
|
|
}
|
|
|
|
return textBody.startsWith('@')
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
},
|
|
|
|
hideReply () {
|
|
|
|
if (this.$store.state.config.replyVisibility === 'all') {
|
|
|
|
return false
|
|
|
|
}
|
2018-08-24 20:46:45 +00:00
|
|
|
if (this.inlineExpanded || this.expanded || this.inConversation || !this.isReply) {
|
2018-08-24 19:04:26 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
if (this.status.user.id === this.$store.state.users.currentUser.id) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if (this.status.activity_type === 'repeat') {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
var checkFollowing = this.$store.state.config.replyVisibility === 'following'
|
|
|
|
for (var i = 0; i < this.status.attentions.length; ++i) {
|
|
|
|
if (this.status.user.id === this.status.attentions[i].id) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if (checkFollowing && this.status.attentions[i].following) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if (this.status.attentions[i].id === this.$store.state.users.currentUser.id) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return this.status.attentions.length > 0
|
|
|
|
},
|
2018-08-20 02:41:40 +00:00
|
|
|
hideSubjectStatus () {
|
|
|
|
if (this.tallStatus && !this.$store.state.config.collapseMessageWithSubject) {
|
2018-08-20 02:08:39 +00:00
|
|
|
return false
|
|
|
|
}
|
2018-08-20 02:41:40 +00:00
|
|
|
return !this.expandingSubject && this.status.summary
|
2018-08-20 01:59:06 +00:00
|
|
|
},
|
2018-04-09 16:43:31 +00:00
|
|
|
hideTallStatus () {
|
2018-08-20 02:41:40 +00:00
|
|
|
if (this.status.summary && this.$store.state.config.collapseMessageWithSubject) {
|
2018-08-20 01:59:06 +00:00
|
|
|
return false
|
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
if (this.showingTall) {
|
|
|
|
return false
|
|
|
|
}
|
2018-08-20 01:59:06 +00:00
|
|
|
return this.tallStatus
|
|
|
|
},
|
|
|
|
showingMore () {
|
2018-08-20 02:41:40 +00:00
|
|
|
return this.showingTall || (this.status.summary && this.expandingSubject)
|
2018-04-09 16:43:31 +00:00
|
|
|
},
|
2018-08-25 23:21:54 +00:00
|
|
|
nsfwClickthrough () {
|
|
|
|
if (!this.status.nsfw) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if (this.status.summary && this.$store.state.config.collapseMessageWithSubject) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
},
|
2018-08-26 00:50:11 +00:00
|
|
|
replySubject () {
|
|
|
|
if (this.status.summary && !this.status.summary.match(/^re[: ]/i)) {
|
|
|
|
return 're: '.concat(this.status.summary)
|
|
|
|
}
|
|
|
|
return this.status.summary
|
|
|
|
},
|
2018-04-09 16:43:31 +00:00
|
|
|
attachmentSize () {
|
|
|
|
if ((this.$store.state.config.hideAttachments && !this.inConversation) ||
|
|
|
|
(this.$store.state.config.hideAttachmentsInConv && this.inConversation)) {
|
|
|
|
return 'hide'
|
|
|
|
} else if (this.compact) {
|
|
|
|
return 'small'
|
|
|
|
}
|
|
|
|
return 'normal'
|
2017-03-08 23:09:23 +00:00
|
|
|
}
|
2016-10-28 16:08:03 +00:00
|
|
|
},
|
|
|
|
components: {
|
2016-10-30 15:12:35 +00:00
|
|
|
Attachment,
|
2016-11-03 15:59:27 +00:00
|
|
|
FavoriteButton,
|
2016-11-13 15:42:56 +00:00
|
|
|
RetweetButton,
|
2016-12-07 20:50:46 +00:00
|
|
|
DeleteButton,
|
2017-02-16 14:58:49 +00:00
|
|
|
PostStatusForm,
|
2018-02-03 16:55:45 +00:00
|
|
|
UserCardContent,
|
|
|
|
StillImage
|
2016-11-03 15:59:27 +00:00
|
|
|
},
|
|
|
|
methods: {
|
2018-05-21 22:01:33 +00: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 16:28:01 +00:00
|
|
|
}
|
|
|
|
},
|
2017-02-19 11:58:25 +00:00
|
|
|
linkClicked ({target}) {
|
2017-02-19 12:25:30 +00:00
|
|
|
if (target.tagName === 'SPAN') {
|
|
|
|
target = target.parentNode
|
|
|
|
}
|
2017-02-19 11:58:25 +00:00
|
|
|
if (target.tagName === 'A') {
|
|
|
|
window.open(target.href, '_blank')
|
|
|
|
}
|
|
|
|
},
|
2016-11-03 15:59:27 +00:00
|
|
|
toggleReplying () {
|
|
|
|
this.replying = !this.replying
|
2017-02-04 12:53:28 +00:00
|
|
|
},
|
2017-06-04 20:58:15 +00:00
|
|
|
gotoOriginal (id) {
|
2017-04-12 15:25:19 +00:00
|
|
|
// only handled by conversation, not status_or_conversation
|
2017-11-14 06:55:21 +00:00
|
|
|
if (this.inConversation) {
|
2017-11-13 14:33:54 +00:00
|
|
|
this.$emit('goto', id)
|
|
|
|
}
|
2017-04-12 15:25:19 +00:00
|
|
|
},
|
2017-02-04 12:53:28 +00:00
|
|
|
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
|
2017-06-07 14:58:24 +00:00
|
|
|
},
|
2018-08-20 01:59:06 +00:00
|
|
|
toggleShowMore () {
|
|
|
|
if (this.showingTall) {
|
|
|
|
this.showingTall = false
|
2018-08-20 02:41:40 +00:00
|
|
|
} else if (this.expandingSubject) {
|
|
|
|
this.expandingSubject = false
|
2018-08-20 01:59:06 +00:00
|
|
|
} else if (this.hideTallStatus) {
|
|
|
|
this.showingTall = true
|
2018-08-20 02:41:40 +00:00
|
|
|
} else if (this.hideSubjectStatus) {
|
|
|
|
this.expandingSubject = true
|
2018-08-20 01:59:06 +00:00
|
|
|
}
|
2018-04-09 16:43:31 +00:00
|
|
|
},
|
2017-06-07 14:58:24 +00:00
|
|
|
replyEnter (id, event) {
|
2017-11-13 14:33:54 +00:00
|
|
|
this.showPreview = true
|
|
|
|
const targetId = Number(id)
|
|
|
|
const statuses = this.$store.state.statuses.allStatuses
|
|
|
|
|
|
|
|
if (!this.preview) {
|
|
|
|
// if we have the status somewhere already
|
|
|
|
this.preview = find(statuses, { 'id': targetId })
|
|
|
|
// or if we have to fetch it
|
|
|
|
if (!this.preview) {
|
|
|
|
this.$store.state.api.backendInteractor.fetchStatus({id}).then((status) => {
|
|
|
|
this.preview = status
|
|
|
|
})
|
|
|
|
}
|
|
|
|
} else if (this.preview.id !== targetId) {
|
|
|
|
this.preview = find(statuses, { 'id': targetId })
|
|
|
|
}
|
2017-06-07 14:58:24 +00:00
|
|
|
},
|
|
|
|
replyLeave () {
|
2017-11-13 14:33:54 +00:00
|
|
|
this.showPreview = false
|
2018-08-05 02:44:02 +00:00
|
|
|
}
|
2017-04-12 15:25:19 +00:00
|
|
|
},
|
|
|
|
watch: {
|
2017-04-12 16:07:55 +00:00
|
|
|
'highlight': function (id) {
|
|
|
|
id = Number(id)
|
|
|
|
if (this.status.id === id) {
|
2017-04-12 15:25:19 +00:00
|
|
|
let rect = this.$el.getBoundingClientRect()
|
2017-04-12 16:07:55 +00:00
|
|
|
if (rect.top < 100) {
|
2017-04-12 15:47:47 +00:00
|
|
|
window.scrollBy(0, rect.top - 200)
|
2017-06-04 20:58:15 +00:00
|
|
|
} else if (rect.bottom > window.innerHeight - 50) {
|
|
|
|
window.scrollBy(0, rect.bottom - window.innerHeight + 50)
|
2017-04-12 16:07:55 +00:00
|
|
|
}
|
2017-04-12 15:25:19 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-27 09:51:30 +00:00
|
|
|
},
|
|
|
|
filters: {
|
|
|
|
capitalize: function (str) {
|
|
|
|
return str.charAt(0).toUpperCase() + str.slice(1)
|
|
|
|
}
|
2016-10-28 16:08:03 +00:00
|
|
|
}
|
2016-10-28 13:19:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Status
|