2016-10-29 03:08:03 +11:00
|
|
|
import Attachment from '../attachment/attachment.vue'
|
|
|
|
|
2016-10-29 00:19:42 +11:00
|
|
|
const Status = {
|
2016-10-29 03:08:03 +11: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: {
|
|
|
|
Attachment
|
|
|
|
}
|
2016-10-29 00:19:42 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Status
|
|
|
|
|