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

24 lines
528 B
JavaScript
Raw Normal View History

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-10-28 16:08:03 +00:00
2016-10-28 13:19:42 +00:00
const Status = {
2016-10-28 16:08:03 +00:00
props: [ 'statusoid' ],
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
}
}
},
components: {
2016-10-30 15:12:35 +00:00
Attachment,
FavoriteButton
2016-10-28 16:08:03 +00:00
}
2016-10-28 13:19:42 +00:00
}
export default Status