2021-08-21 14:17:14 +00:00
|
|
|
<template>
|
2021-08-21 14:25:23 +00:00
|
|
|
<div id="content" class="app-upschooling">
|
2021-08-22 16:01:29 +00:00
|
|
|
<AppNavigation />
|
2021-08-21 14:17:14 +00:00
|
|
|
<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>
|
2021-08-21 14:17:14 +00:00
|
|
|
</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-08-21 14:17:14 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'App',
|
|
|
|
components: {
|
2021-08-21 18:04:05 +00:00
|
|
|
Ticket,
|
2021-08-22 16:01:29 +00:00
|
|
|
TicketList,
|
2021-08-21 14:17:14 +00:00
|
|
|
AppContent,
|
|
|
|
AppNavigation,
|
|
|
|
},
|
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,
|
|
|
|
|
|
|
|
testTickets: [
|
2021-08-22 16:01:29 +00:00
|
|
|
{
|
|
|
|
id: 1234,
|
|
|
|
status: 'Offen',
|
|
|
|
title: 'Dies ist ein Ticket-Titel',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 12345,
|
|
|
|
status: 'Offen',
|
|
|
|
title: 'Dies ist ein anderer Ticket-Titel',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 123456,
|
|
|
|
status: 'Behoben',
|
|
|
|
title: 'Sowieso behoben',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
/**
|
|
|
|
* Returns the list of ticket objects the current account has access to.
|
|
|
|
*
|
|
|
|
* @return {Array}
|
|
|
|
*/
|
2021-09-18 12:50:21 +00:00
|
|
|
tickets() {
|
|
|
|
// TODO: ask API (dont forget permission check in API)
|
|
|
|
return this.testTickets
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
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
|
|
|
},
|
|
|
|
},
|
2021-08-21 14:17:14 +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>
|