c3lf-system-3/web/src/views/Tickets.vue

91 lines
3.6 KiB
Vue
Raw Normal View History

2024-01-07 20:32:42 +00:00
<template>
<div class="container-fluid px-xl-5 mt-3">
<div class="row">
<div class="col-xl-8 offset-xl-2">
2024-01-22 18:20:27 +00:00
<SlotTable
:columns="['id', 'name', 'state', 'last_activity', 'assigned_to', 'actions', 'actions2']"
:items="tickets.map(formatTicket)"
2024-01-07 20:32:42 +00:00
:keyName="'id'"
v-if="layout === 'table'"
2024-01-07 20:32:42 +00:00
>
2024-01-22 18:20:27 +00:00
<template v-slot:actions="{item}">
<div class="btn-group">
2024-01-06 17:59:44 +00:00
<a class="btn btn-primary" :href="'/'+ getEventSlug + '/ticket/' + item.id" title="view"
@click.prevent="gotoDetail(item)">
<font-awesome-icon icon="eye"/>
View
</a>
</div>
</template>
2024-01-22 18:20:27 +00:00
</SlotTable>
2024-01-07 20:32:42 +00:00
</div>
</div>
<CollapsableCards v-if="layout === 'tasks'" :items="tickets"
:columns="['id', 'name', 'last_activity', 'assigned_to']"
:keyName="'state'" :sections="['pending_new', 'pending_open','pending_shipping',
2024-01-19 20:13:04 +00:00
'pending_physical_confirmation','pending_return','pending_postponed'].map(stateInfo)">
<template #section_header="{index, section, count}">
{{ section.text }} <span class="badge badge-light ml-1">{{ count }}</span>
</template>
<template #section_body="{item}">
<tr>
<td>{{ item.id }}</td>
<td>{{ item.name }}</td>
<td>{{ item.last_activity }}</td>
<td>{{ item.assigned_to }}</td>
<td>
<div class="btn-group">
<a class="btn btn-primary" :href="'/'+ getEventSlug + '/ticket/' + item.id" title="view"
@click.prevent="gotoDetail(item)">
<font-awesome-icon icon="eye"/>
View
</a>
</div>
</td>
</tr>
</template>
</CollapsableCards>
2024-01-07 20:32:42 +00:00
</div>
</template>
<script>
import Cards from '@/components/Cards';
import Modal from '@/components/Modal';
import EditItem from '@/components/EditItem';
2024-01-06 17:59:44 +00:00
import {mapActions, mapGetters, mapState} from 'vuex';
2024-01-07 20:32:42 +00:00
import Lightbox from '../components/Lightbox';
2024-01-22 18:20:27 +00:00
import SlotTable from "@/components/SlotTable.vue";
import CollapsableCards from "@/components/CollapsableCards.vue";
2024-01-07 20:32:42 +00:00
export default {
name: 'Tickets',
2024-01-22 18:20:27 +00:00
components: {Lightbox, SlotTable, Cards, Modal, EditItem, CollapsableCards},
2024-01-06 17:59:44 +00:00
computed: {
...mapState(['tickets']),
...mapGetters(['stateInfo', 'getEventSlug', 'layout']),
2024-01-06 17:59:44 +00:00
},
2024-01-07 20:32:42 +00:00
methods: {
2024-06-22 23:04:32 +00:00
...mapActions(['loadTickets', 'fetchTicketStates', 'scheduleAfterInit']),
2024-01-07 20:32:42 +00:00
gotoDetail(ticket) {
this.$router.push({name: 'ticket', params: {id: ticket.id}});
},
formatTicket(ticket) {
return {
id: ticket.id,
name: ticket.name,
state: this.stateInfo(ticket.state).text,
stateColor: this.stateInfo(ticket.state).color,
last_activity: ticket.last_activity,
assigned_to: ticket.assigned_to
};
2024-01-07 20:32:42 +00:00
}
},
2024-06-22 23:04:32 +00:00
mounted() {
this.scheduleAfterInit(() => [this.fetchTicketStates(), this.loadTickets()]);
2024-01-07 20:32:42 +00:00
}
};
</script>
<style scoped>
</style>