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

27 lines
519 B
JavaScript
Raw Normal View History

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 })
}
},
components: {
2020-02-28 16:39:47 +00:00
Status: () => import('../status/status.vue'),
Popover: () => import('../popover/popover.vue')
},
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)
}
}
}
}
export default StatusPopover