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

41 lines
986 B
JavaScript
Raw Normal View History

2016-10-28 18:08:03 +02:00
import Attachment from '../attachment/attachment.vue'
2016-10-30 16:12:35 +01:00
import FavoriteButton from '../favorite_button/favorite_button.vue'
import RetweetButton from '../retweet_button/retweet_button.vue'
import DeleteButton from '../delete_button/delete_button.vue'
2016-11-03 16:59:27 +01:00
import PostStatusForm from '../post_status_form/post_status_form.vue'
2016-10-28 18:08:03 +02:00
2016-10-28 15:19:42 +02:00
const Status = {
2016-10-28 18:08:03 +02:00
props: [ 'statusoid' ],
2016-11-03 16:59:27 +01:00
data: () => ({
replying: false
}),
2016-10-28 18:08:03 +02: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-06 20:45:26 +01:00
},
loggedIn () {
return !!this.$store.state.users.currentUser
}
2016-10-28 18:08:03 +02:00
},
components: {
2016-10-30 16:12:35 +01:00
Attachment,
2016-11-03 16:59:27 +01:00
FavoriteButton,
RetweetButton,
DeleteButton,
2016-11-03 16:59:27 +01:00
PostStatusForm
},
methods: {
toggleReplying () {
this.replying = !this.replying
}
2016-10-28 18:08:03 +02:00
}
2016-10-28 15:19:42 +02:00
}
export default Status