aboutsummaryrefslogtreecommitdiff
path: root/src/components/status/status.js
blob: 6ee8f0dd95494d660f4580c5f7898a828100642b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import Attachment from '../attachment/attachment.vue'

const Status = {
  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
  }
}

export default Status