aboutsummaryrefslogtreecommitdiff
path: root/src/components/conversation/conversation.js
blob: 3b9cdbf73720462ee15d3a9690c7b829df895c6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import { find, filter, sortBy, toInteger } from 'lodash'
import Status from '../status/status.vue'

const conversation = {
  computed: {
    status () {
      const id = toInteger(this.$route.params.id)
      const statuses = this.$store.state.statuses.allStatuses
      const status = find(statuses, {id})

      return status
    },
    conversation () {
      if (!this.status) {
        return false
      }

      const conversationId = this.status.statusnet_conversation_id
      const statuses = this.$store.state.statuses.allStatuses
      const conversation = filter(statuses, { statusnet_conversation_id: conversationId })
      return sortBy(conversation, 'id')
    }
  },
  components: {
    Status
  },
  created () {
    this.fetchConversation()
  },
  watch: {
    '$route': 'fetchConversation'
  },
  methods: {
    fetchConversation () {
      if (this.status) {
        const conversationId = this.status.statusnet_conversation_id
        this.$store.state.api.backendInteractor.fetchConversation({id: conversationId})
          .then((statuses) => this.$store.dispatch('addNewStatuses', { statuses }))
          .then(() => this.$store.commit('updateTimestamps'))
      } else {
        const id = this.$route.params.id
        this.$store.state.api.backendInteractor.fetchStatus({id})
          .then((status) => this.$store.dispatch('addNewStatuses', { statuses: [status] }))
          .then(() => this.fetchConversation())
      }
    }
  }
}

export default conversation