2016-10-28 09:08:03 -07:00
|
|
|
import Attachment from '../attachment/attachment.vue'
|
2016-10-30 08:12:35 -07:00
|
|
|
import FavoriteButton from '../favorite_button/favorite_button.vue'
|
2016-11-13 07:42:56 -08:00
|
|
|
import RetweetButton from '../retweet_button/retweet_button.vue'
|
2016-12-07 12:50:46 -08:00
|
|
|
import DeleteButton from '../delete_button/delete_button.vue'
|
2016-11-03 08:59:27 -07:00
|
|
|
import PostStatusForm from '../post_status_form/post_status_form.vue'
|
2017-02-16 06:58:49 -08:00
|
|
|
import UserCardContent from '../user_card_content/user_card_content.vue'
|
2016-10-28 09:08:03 -07:00
|
|
|
|
2016-10-28 06:19:42 -07:00
|
|
|
const Status = {
|
2017-02-04 04:53:28 -08:00
|
|
|
props: [
|
|
|
|
'statusoid',
|
2017-03-05 05:34:14 -08:00
|
|
|
'expandable',
|
2017-03-09 00:19:40 -08:00
|
|
|
'inConversation',
|
2017-03-05 07:31:01 -08:00
|
|
|
'focused'
|
2017-02-04 04:53:28 -08:00
|
|
|
],
|
2016-11-03 08:59:27 -07:00
|
|
|
data: () => ({
|
2017-02-04 04:53:28 -08:00
|
|
|
replying: false,
|
2017-02-13 15:01:50 -08:00
|
|
|
expanded: false,
|
2017-02-16 06:58:49 -08:00
|
|
|
unmuted: false,
|
|
|
|
userExpanded: false
|
2016-11-03 08:59:27 -07:00
|
|
|
}),
|
2016-10-28 09:08:03 -07:00
|
|
|
computed: {
|
2017-03-04 12:25:59 -08:00
|
|
|
hideAttachments () {
|
2017-03-05 05:34:14 -08:00
|
|
|
return (this.$store.state.config.hideAttachments && !this.inConversation) ||
|
|
|
|
(this.$store.state.config.hideAttachmentsInConv && this.inConversation)
|
2017-03-04 12:25:59 -08:00
|
|
|
},
|
2016-10-28 09:08:03 -07: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 11:45:26 -08:00
|
|
|
},
|
|
|
|
loggedIn () {
|
|
|
|
return !!this.$store.state.users.currentUser
|
2017-02-13 15:01:50 -08:00
|
|
|
},
|
2017-03-05 02:56:28 -08:00
|
|
|
muted () { return !this.unmuted && this.status.user.muted },
|
2017-03-08 15:09:23 -08:00
|
|
|
isReply () { return !!this.status.in_reply_to_status_id },
|
|
|
|
borderColor () {
|
|
|
|
return {
|
2017-03-09 02:48:43 -08:00
|
|
|
borderBottomColor: this.$store.state.config.colors['base02']
|
2017-03-08 15:09:23 -08:00
|
|
|
}
|
|
|
|
}
|
2016-10-28 09:08:03 -07:00
|
|
|
},
|
|
|
|
components: {
|
2016-10-30 08:12:35 -07:00
|
|
|
Attachment,
|
2016-11-03 08:59:27 -07:00
|
|
|
FavoriteButton,
|
2016-11-13 07:42:56 -08:00
|
|
|
RetweetButton,
|
2016-12-07 12:50:46 -08:00
|
|
|
DeleteButton,
|
2017-02-16 06:58:49 -08:00
|
|
|
PostStatusForm,
|
|
|
|
UserCardContent
|
2016-11-03 08:59:27 -07:00
|
|
|
},
|
|
|
|
methods: {
|
2017-02-19 03:58:25 -08:00
|
|
|
linkClicked ({target}) {
|
2017-02-19 04:25:30 -08:00
|
|
|
if (target.tagName === 'SPAN') {
|
|
|
|
target = target.parentNode
|
|
|
|
}
|
2017-02-19 03:58:25 -08:00
|
|
|
if (target.tagName === 'A') {
|
|
|
|
window.open(target.href, '_blank')
|
|
|
|
}
|
|
|
|
},
|
2016-11-03 08:59:27 -07:00
|
|
|
toggleReplying () {
|
|
|
|
this.replying = !this.replying
|
2017-02-04 04:53:28 -08:00
|
|
|
},
|
|
|
|
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
|
2016-11-03 08:59:27 -07:00
|
|
|
}
|
2016-10-28 09:08:03 -07:00
|
|
|
}
|
2016-10-28 06:19:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Status
|