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'
|
2017-04-09 13:53:23 +00:00
|
|
|
import { filter } from 'lodash'
|
2016-10-28 16:08:03 +00:00
|
|
|
|
2016-10-28 13:19:42 +00:00
|
|
|
const 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',
|
|
|
|
'compact'
|
2017-02-04 12:53:28 +00:00
|
|
|
],
|
2016-11-03 15:59:27 +00:00
|
|
|
data: () => ({
|
2017-02-04 12:53:28 +00:00
|
|
|
replying: false,
|
2017-02-13 23:01:50 +00:00
|
|
|
expanded: false,
|
2017-02-16 14:58:49 +00:00
|
|
|
unmuted: false,
|
|
|
|
userExpanded: false
|
2016-11-03 15:59:27 +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
|
|
|
|
},
|
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 },
|
|
|
|
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-03-08 23:09:23 +00:00
|
|
|
isReply () { return !!this.status.in_reply_to_status_id },
|
|
|
|
borderColor () {
|
|
|
|
return {
|
2017-03-09 10:48:43 +00:00
|
|
|
borderBottomColor: this.$store.state.config.colors['base02']
|
2017-03-08 23:09:23 +00:00
|
|
|
}
|
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
|
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,
|
|
|
|
UserCardContent
|
2016-11-03 15:59:27 +00:00
|
|
|
},
|
|
|
|
methods: {
|
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-04-12 15:25:19 +00:00
|
|
|
gotoOriginal () {
|
|
|
|
// only handled by conversation, not status_or_conversation
|
|
|
|
this.$emit('goto', this.status.in_reply_to_status_id)
|
|
|
|
},
|
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
|
2016-11-03 15:59:27 +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-04-12 16:10:38 +00:00
|
|
|
} else if (rect.bottom > window.innerHeight - 100) {
|
2017-04-12 16:07:55 +00:00
|
|
|
// will be useful when scrolling down to replies or root posts is in
|
2017-04-12 15:47:47 +00:00
|
|
|
window.scrollBy(0, rect.bottom + 200)
|
2017-04-12 16:07:55 +00:00
|
|
|
}
|
2017-04-12 15:25:19 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-28 16:08:03 +00:00
|
|
|
}
|
2016-10-28 13:19:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Status
|