mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-06 23:32:47 +01:00
62 lines
1.8 KiB
Vue
62 lines
1.8 KiB
Vue
<script setup lang="ts">
|
|
import ColumnHeader from '@/components/layout/ColumnHeader.vue'
|
|
import { Button } from '@/components/ui/button'
|
|
import { Input } from '@/components/ui/input'
|
|
|
|
import { Check, Repeat } from 'lucide-vue-next'
|
|
|
|
import { useMutation, useQueryClient } from '@tanstack/vue-query'
|
|
import { ref } from 'vue'
|
|
import { useRouter } from 'vue-router'
|
|
|
|
import { pb } from '@/lib/pocketbase'
|
|
import type { Ticket } from '@/lib/types'
|
|
import { handleError } from '@/lib/utils'
|
|
|
|
const queryClient = useQueryClient()
|
|
const router = useRouter()
|
|
|
|
const props = defineProps<{
|
|
ticket: Ticket
|
|
}>()
|
|
|
|
const resolution = ref(props.ticket.resolution)
|
|
|
|
const closeTicketMutation = useMutation({
|
|
mutationFn: (): Promise<Ticket> =>
|
|
pb.collection('tickets').update(props.ticket.id, {
|
|
open: !props.ticket.open,
|
|
resolution: resolution.value
|
|
}),
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ['tickets'] })
|
|
router.push({ name: 'tickets', params: { type: props.ticket.expand.type.id } })
|
|
},
|
|
onError: handleError
|
|
})
|
|
|
|
const closeButtonDisabled = false // computed(() => !props.ticket.open || message.value == '')
|
|
</script>
|
|
|
|
<template>
|
|
<ColumnHeader nowrap hideSeparator>
|
|
<Input v-if="ticket.open" v-model="resolution" placeholder="Closing reason" />
|
|
<div v-else class="flex-1">
|
|
<p class="ml-2 text-gray-500">Closed: {{ ticket.resolution }}</p>
|
|
</div>
|
|
<Button
|
|
@click="closeTicketMutation.mutate"
|
|
:disabled="closeButtonDisabled"
|
|
:variant="closeButtonDisabled ? 'secondary' : 'default'"
|
|
>
|
|
<Check v-if="ticket.open" class="mr-2 h-4 w-4" />
|
|
<Repeat v-else class="mr-2 h-4 w-4" />
|
|
{{
|
|
ticket?.open
|
|
? 'Close ' + props.ticket.expand.type.singular
|
|
: 'Reopen ' + props.ticket.expand.type.singular
|
|
}}
|
|
</Button>
|
|
</ColumnHeader>
|
|
</template>
|