Nextcloud-App/src/App.vue

99 lines
2 KiB
Vue
Raw Normal View History

<template>
2021-08-21 14:25:23 +00:00
<div id="content" class="app-upschooling">
2021-08-22 16:01:29 +00:00
<AppNavigation />
<AppContent>
2021-08-22 16:01:29 +00:00
<div v-if="currentTicket">
2021-09-18 12:50:21 +00:00
<Ticket :ticket="currentTicket" @save-ticket="saveTicket" @show-ticket-list="deselectTicket" />
2021-08-22 16:01:29 +00:00
</div>
<div v-else>
2021-09-18 12:50:21 +00:00
<TicketList :tickets="tickets" @open-ticket="openTicket" />
2021-08-22 16:01:29 +00:00
</div>
</AppContent>
</div>
</template>
<script>
import AppContent from '@nextcloud/vue/dist/Components/AppContent'
import AppNavigation from '@nextcloud/vue/dist/Components/AppNavigation'
2021-08-22 16:01:29 +00:00
import TicketList from './components/TicketList'
2021-08-21 18:04:05 +00:00
import Ticket from './Ticket'
2021-08-22 16:01:29 +00:00
import '@nextcloud/dialogs/styles/toast.scss'
2021-09-18 19:15:03 +00:00
import axios from '@nextcloud/axios'
export default {
name: 'App',
components: {
2021-08-21 18:04:05 +00:00
Ticket,
2021-08-22 16:01:29 +00:00
TicketList,
AppContent,
AppNavigation,
},
2021-09-18 19:15:03 +00:00
2021-08-22 16:01:29 +00:00
data() {
return {
2021-09-18 12:50:21 +00:00
/**
* Return the currently selected ticket object or null, if none is selected.
*
* @type {object|null|undefined}
*/
currentTicket: undefined,
2021-09-18 19:15:03 +00:00
tickets: [],
2021-08-22 16:01:29 +00:00
}
},
2021-09-18 19:15:03 +00:00
watch: {
$route: 'fetchTickets',
},
created() {
this.fetchTickets()
2021-09-18 12:50:21 +00:00
},
methods: {
2021-09-18 19:15:03 +00:00
fetchTickets() {
axios.get(
'api/v1/tickets',
{ headers: { Accept: 'application/json' } }
).then((response) => {
if (Array.isArray(response.data)) {
if (response.data.length !== 0) {
this.tickets.push(response.data)
} else {
console.warn('Empty ticket list :(')
}
} else {
console.error('API did not return array: ', response)
}
}).catch(console.error)
},
2021-09-18 12:50:21 +00:00
saveTicket(ticketId, data) {
// TODO send to API (dont forget permission check in API)
console.debug('upschooling', 'saveTicket', ticketId, data)
},
openTicket(ticketId) {
this.currentTicket = this.tickets.find((obj) => obj.id === ticketId)
},
deselectTicket() {
this.currentTicket = null
2021-08-22 16:01:29 +00:00
},
},
}
</script>
<style scoped>
#app-content > div {
width: 100%;
height: 100%;
padding: 20px;
display: flex;
flex-direction: column;
flex-grow: 1;
}
input[type='text'] {
width: 100%;
}
textarea {
flex-grow: 1;
width: 100%;
}
</style>