2016-10-29 03:08:03 +11:00
|
|
|
import Attachment from '../attachment/attachment.vue'
|
2016-10-31 02:12:35 +11:00
|
|
|
import FavoriteButton from '../favorite_button/favorite_button.vue'
|
2016-11-14 02:42:56 +11:00
|
|
|
import RetweetButton from '../retweet_button/retweet_button.vue'
|
2016-12-08 07:50:46 +11:00
|
|
|
import DeleteButton from '../delete_button/delete_button.vue'
|
2016-11-04 02:59:27 +11:00
|
|
|
import PostStatusForm from '../post_status_form/post_status_form.vue'
|
2016-10-29 03:08:03 +11:00
|
|
|
|
2016-10-29 00:19:42 +11:00
|
|
|
const Status = {
|
2017-02-04 23:53:28 +11:00
|
|
|
props: [
|
|
|
|
'statusoid',
|
|
|
|
'expandable'
|
|
|
|
],
|
2016-11-04 02:59:27 +11:00
|
|
|
data: () => ({
|
2017-02-04 23:53:28 +11:00
|
|
|
replying: false,
|
|
|
|
expanded: false
|
2016-11-04 02:59:27 +11:00
|
|
|
}),
|
2016-10-29 03:08:03 +11:00
|
|
|
computed: {
|
|
|
|
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-07 06:45:26 +11:00
|
|
|
},
|
|
|
|
loggedIn () {
|
|
|
|
return !!this.$store.state.users.currentUser
|
2016-12-08 07:50:46 +11:00
|
|
|
}
|
2016-10-29 03:08:03 +11:00
|
|
|
},
|
|
|
|
components: {
|
2016-10-31 02:12:35 +11:00
|
|
|
Attachment,
|
2016-11-04 02:59:27 +11:00
|
|
|
FavoriteButton,
|
2016-11-14 02:42:56 +11:00
|
|
|
RetweetButton,
|
2016-12-08 07:50:46 +11:00
|
|
|
DeleteButton,
|
2016-11-04 02:59:27 +11:00
|
|
|
PostStatusForm
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
toggleReplying () {
|
|
|
|
this.replying = !this.replying
|
2017-02-04 23:53:28 +11:00
|
|
|
},
|
|
|
|
toggleExpanded () {
|
|
|
|
this.$emit('toggleExpanded')
|
2016-11-04 02:59:27 +11:00
|
|
|
}
|
2016-10-29 03:08:03 +11:00
|
|
|
}
|
2016-10-29 00:19:42 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Status
|