2019-10-24 20:53:36 +00:00
|
|
|
import { find } from 'lodash'
|
|
|
|
|
|
|
|
const StatusPopover = {
|
|
|
|
name: 'StatusPopover',
|
|
|
|
props: [
|
|
|
|
'statusId'
|
|
|
|
],
|
2019-10-25 02:14:53 +00:00
|
|
|
computed: {
|
|
|
|
status () {
|
|
|
|
return find(this.$store.state.statuses.allStatuses, { id: this.statusId })
|
|
|
|
}
|
|
|
|
},
|
2019-10-24 20:53:36 +00:00
|
|
|
components: {
|
2020-02-28 16:39:47 +00:00
|
|
|
Status: () => import('../status/status.vue'),
|
|
|
|
Popover: () => import('../popover/popover.vue')
|
2019-10-24 20:53:36 +00:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
enter () {
|
2019-10-25 02:14:53 +00:00
|
|
|
if (!this.status) {
|
2019-10-25 02:21:33 +00:00
|
|
|
this.$store.dispatch('fetchStatus', this.statusId)
|
2019-10-24 20:53:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default StatusPopover
|